mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-12-28 11:28:38 +00:00
88 lines
3.4 KiB
Java
88 lines
3.4 KiB
Java
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
package org.mozilla.gecko.fxa.sync;
|
|
|
|
import org.mozilla.gecko.BrowserLocaleManager;
|
|
import org.mozilla.gecko.R;
|
|
import org.mozilla.gecko.background.common.log.Logger;
|
|
import org.mozilla.gecko.fxa.FxAccountConstants;
|
|
import org.mozilla.gecko.fxa.activities.FxAccountStatusActivity;
|
|
import org.mozilla.gecko.fxa.authenticator.AndroidFxAccount;
|
|
import org.mozilla.gecko.fxa.login.State;
|
|
import org.mozilla.gecko.fxa.login.State.Action;
|
|
|
|
import android.app.NotificationManager;
|
|
import android.app.PendingIntent;
|
|
import android.content.Context;
|
|
import android.content.Intent;
|
|
import android.support.v4.app.NotificationCompat;
|
|
import android.support.v4.app.NotificationCompat.Builder;
|
|
|
|
/**
|
|
* Abstraction that manages notifications shown or hidden for a Firefox Account.
|
|
* <p>
|
|
* In future, we anticipate this tracking things like:
|
|
* <ul>
|
|
* <li>new engines to offer to Sync;</li>
|
|
* <li>service interruption updates;</li>
|
|
* <li>messages from other clients.</li>
|
|
* </ul>
|
|
*/
|
|
public class FxAccountNotificationManager {
|
|
private static final String LOG_TAG = FxAccountNotificationManager.class.getSimpleName();
|
|
|
|
protected final int notificationId;
|
|
|
|
// We're lazy about updating our locale info, because most syncs don't notify.
|
|
private volatile boolean localeUpdated;
|
|
|
|
public FxAccountNotificationManager(int notificationId) {
|
|
this.notificationId = notificationId;
|
|
}
|
|
|
|
/**
|
|
* Reflect new Firefox Account state to the notification manager: show or hide
|
|
* notifications reflecting the state of a Firefox Account.
|
|
*
|
|
* @param context
|
|
* Android context.
|
|
* @param fxAccount
|
|
* Firefox Account to reflect to the notification manager.
|
|
*/
|
|
protected void update(Context context, AndroidFxAccount fxAccount) {
|
|
final NotificationManager notificationManager = (NotificationManager) context.getSystemService(Context.NOTIFICATION_SERVICE);
|
|
|
|
final State state = fxAccount.getState();
|
|
final Action action = state.getNeededAction();
|
|
if (action == Action.None) {
|
|
Logger.info(LOG_TAG, "State " + state.getStateLabel() + " needs no action; cancelling any existing notification.");
|
|
notificationManager.cancel(notificationId);
|
|
return;
|
|
}
|
|
|
|
if (!localeUpdated) {
|
|
localeUpdated = true;
|
|
BrowserLocaleManager.getInstance().getAndApplyPersistedLocale(context);
|
|
}
|
|
|
|
final String title = context.getResources().getString(R.string.fxaccount_sync_sign_in_error_notification_title);
|
|
final String text = context.getResources().getString(R.string.fxaccount_sync_sign_in_error_notification_text, state.email);
|
|
Logger.info(LOG_TAG, "State " + state.getStateLabel() + " needs action; offering notification with title: " + title);
|
|
FxAccountConstants.pii(LOG_TAG, "And text: " + text);
|
|
|
|
final Intent notificationIntent = new Intent(context, FxAccountStatusActivity.class);
|
|
final PendingIntent pendingIntent = PendingIntent.getActivity(context, 0, notificationIntent, 0);
|
|
|
|
final Builder builder = new NotificationCompat.Builder(context);
|
|
builder
|
|
.setContentTitle(title)
|
|
.setContentText(text)
|
|
.setSmallIcon(R.drawable.ic_status_logo)
|
|
.setAutoCancel(true)
|
|
.setContentIntent(pendingIntent);
|
|
notificationManager.notify(notificationId, builder.build());
|
|
}
|
|
}
|