2016-02-29 21:36:39 +01:00
|
|
|
package nodomain.freeyourgadget.gadgetbridge;
|
|
|
|
|
|
|
|
import android.annotation.TargetApi;
|
|
|
|
import android.app.AlarmManager;
|
|
|
|
import android.app.PendingIntent;
|
|
|
|
import android.appwidget.AppWidgetManager;
|
|
|
|
import android.appwidget.AppWidgetProvider;
|
|
|
|
import android.content.Context;
|
|
|
|
import android.content.Intent;
|
|
|
|
import android.os.Build;
|
|
|
|
import android.widget.RemoteViews;
|
|
|
|
import android.widget.Toast;
|
|
|
|
|
|
|
|
import java.util.Calendar;
|
|
|
|
import java.util.GregorianCalendar;
|
|
|
|
|
|
|
|
import nodomain.freeyourgadget.gadgetbridge.activities.ConfigureAlarms;
|
|
|
|
import nodomain.freeyourgadget.gadgetbridge.impl.GBAlarm;
|
|
|
|
import nodomain.freeyourgadget.gadgetbridge.model.ActivityUser;
|
|
|
|
import nodomain.freeyourgadget.gadgetbridge.model.Alarm;
|
2016-03-02 00:01:41 +01:00
|
|
|
import nodomain.freeyourgadget.gadgetbridge.util.GB;
|
2016-02-29 21:36:39 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Implementation of SleepAlarmWidget functionality. When pressing the widget, an alarm will be set
|
|
|
|
* to trigger after a predefined number of hours. A toast will confirm the user about this. The
|
|
|
|
* value is retrieved using ActivityUser.().getActivityUserSleepDuration().
|
|
|
|
*/
|
|
|
|
public class SleepAlarmWidget extends AppWidgetProvider {
|
|
|
|
|
|
|
|
/**
|
|
|
|
* This is our dedicated action to detect when the widget has been clicked.
|
|
|
|
*/
|
|
|
|
public static final String ACTION =
|
|
|
|
"nodomain.freeyourgadget.gadgetbridge.SLEEP_ALARM_WIDGET_CLICK";
|
|
|
|
|
|
|
|
static void updateAppWidget(Context context, AppWidgetManager appWidgetManager,
|
|
|
|
int appWidgetId) {
|
|
|
|
|
|
|
|
// Construct the RemoteViews object
|
|
|
|
RemoteViews views = new RemoteViews(context.getPackageName(), R.layout.sleep_alarm_widget);
|
|
|
|
|
|
|
|
// Add our own click intent
|
|
|
|
Intent intent = new Intent(ACTION);
|
|
|
|
PendingIntent clickPI = PendingIntent.getBroadcast(
|
|
|
|
context, 0, intent, PendingIntent.FLAG_UPDATE_CURRENT);
|
|
|
|
views.setOnClickPendingIntent(R.id.sleepalarmwidget_text, clickPI);
|
|
|
|
|
|
|
|
// Instruct the widget manager to update the widget
|
|
|
|
appWidgetManager.updateAppWidget(appWidgetId, views);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onUpdate(Context context, AppWidgetManager appWidgetManager, int[] appWidgetIds) {
|
|
|
|
// There may be multiple widgets active, so update all of them
|
|
|
|
for (int appWidgetId : appWidgetIds) {
|
|
|
|
updateAppWidget(context, appWidgetManager, appWidgetId);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onEnabled(Context context) {
|
|
|
|
// Enter relevant functionality for when the first widget is created
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onDisabled(Context context) {
|
|
|
|
// Enter relevant functionality for when the last widget is disabled
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onReceive(Context context, Intent intent) {
|
|
|
|
super.onReceive(context, intent);
|
|
|
|
if (ACTION.equals(intent.getAction())) {
|
|
|
|
int userSleepDuration = new ActivityUser().getActivityUserSleepDuration();
|
|
|
|
// current timestamp
|
|
|
|
GregorianCalendar calendar = new GregorianCalendar();
|
|
|
|
// add preferred sleep duration
|
|
|
|
calendar.add(Calendar.HOUR_OF_DAY, userSleepDuration);
|
|
|
|
|
|
|
|
int hours = calendar.get(calendar.HOUR_OF_DAY);
|
|
|
|
int minutes = calendar.get(calendar.MINUTE);
|
|
|
|
|
|
|
|
// overwrite the first alarm and activate it
|
|
|
|
GBAlarm alarm = new GBAlarm(0, true, true, Alarm.ALARM_ONCE, hours, minutes);
|
|
|
|
alarm.store();
|
|
|
|
|
2016-03-02 00:05:58 +01:00
|
|
|
if (GBApplication.isRunningLollipopOrLater()) {
|
|
|
|
setAlarmViaAlarmManager(context, calendar.getTimeInMillis());
|
|
|
|
}
|
2016-02-29 21:36:39 +01:00
|
|
|
|
2016-03-02 00:01:41 +01:00
|
|
|
GB.toast(context,
|
2016-02-29 21:36:39 +01:00
|
|
|
String.format(context.getString(R.string.appwidget_alarms_set), hours, minutes),
|
2016-03-02 00:01:41 +01:00
|
|
|
Toast.LENGTH_SHORT, GB.INFO);
|
2016-02-29 21:36:39 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Use the Android alarm manager to create the alarm icon in the status bar.
|
|
|
|
*
|
|
|
|
* @param packageContext {@code Context}: A Context of the application package implementing this
|
2016-03-02 00:05:58 +01:00
|
|
|
* class.
|
|
|
|
* @param triggerTime {@code long}: time at which the underlying alarm is triggered in wall time
|
|
|
|
* milliseconds since the epoch
|
2016-02-29 21:36:39 +01:00
|
|
|
*/
|
|
|
|
@TargetApi(Build.VERSION_CODES.LOLLIPOP)
|
|
|
|
private void setAlarmViaAlarmManager(Context packageContext, long triggerTime) {
|
|
|
|
AlarmManager am = (AlarmManager) packageContext.getSystemService(Context.ALARM_SERVICE);
|
|
|
|
// TODO: launch the alarm configuration activity when clicking the alarm in the status bar
|
|
|
|
Intent intent = new Intent(packageContext, ConfigureAlarms.class);
|
|
|
|
PendingIntent pi = PendingIntent.getBroadcast(packageContext, 0, intent,
|
|
|
|
PendingIntent.FLAG_CANCEL_CURRENT);
|
|
|
|
am.setAlarmClock(new AlarmManager.AlarmClockInfo(triggerTime, pi), pi);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|