2016-05-24 11:19:57 +02:00
|
|
|
package nodomain.freeyourgadget.gadgetbridge.externalevents;
|
|
|
|
|
|
|
|
|
|
|
|
import android.app.AlarmManager;
|
|
|
|
import android.app.PendingIntent;
|
|
|
|
import android.content.BroadcastReceiver;
|
|
|
|
import android.content.Context;
|
|
|
|
import android.content.Intent;
|
|
|
|
|
|
|
|
import net.e175.klaus.solarpositioning.DeltaT;
|
|
|
|
import net.e175.klaus.solarpositioning.SPA;
|
|
|
|
|
|
|
|
import org.slf4j.Logger;
|
|
|
|
import org.slf4j.LoggerFactory;
|
|
|
|
|
|
|
|
import java.util.Calendar;
|
|
|
|
import java.util.GregorianCalendar;
|
|
|
|
|
|
|
|
import nodomain.freeyourgadget.gadgetbridge.BuildConfig;
|
|
|
|
import nodomain.freeyourgadget.gadgetbridge.GBApplication;
|
|
|
|
import nodomain.freeyourgadget.gadgetbridge.model.CalendarEventSpec;
|
|
|
|
import nodomain.freeyourgadget.gadgetbridge.util.Prefs;
|
|
|
|
|
|
|
|
public class AlarmReceiver extends BroadcastReceiver {
|
2016-05-26 14:39:54 +02:00
|
|
|
private static final Logger LOG = LoggerFactory.getLogger(AlarmReceiver.class);
|
2016-05-24 11:19:57 +02:00
|
|
|
|
|
|
|
public AlarmReceiver() {
|
|
|
|
Context context = GBApplication.getContext();
|
|
|
|
Intent intent = new Intent("DAILY_ALARM");
|
|
|
|
intent.setPackage(BuildConfig.APPLICATION_ID);
|
|
|
|
PendingIntent pendingIntent = PendingIntent.getBroadcast(context, 0, new Intent("DAILY_ALARM"), 0);
|
|
|
|
AlarmManager am = (AlarmManager) (context.getSystemService(Context.ALARM_SERVICE));
|
|
|
|
|
|
|
|
am.setInexactRepeating(AlarmManager.RTC_WAKEUP, Calendar.getInstance().getTimeInMillis() + 10000, AlarmManager.INTERVAL_DAY, pendingIntent);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onReceive(Context context, Intent intent) {
|
|
|
|
LOG.info("will resend sunrise and sunset events");
|
|
|
|
|
2016-05-24 14:46:22 +02:00
|
|
|
final GregorianCalendar dateTimeTomorrow = new GregorianCalendar();
|
|
|
|
dateTimeTomorrow.add(GregorianCalendar.DAY_OF_MONTH, 1);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* rotate ids ud reuse the id from two days ago for tomorrow, this way we will have
|
|
|
|
* sunrise /sunset for 3 days while sending only sunrise/sunset per day
|
|
|
|
*/
|
|
|
|
byte id_tomorrow = (byte) ((dateTimeTomorrow.getTimeInMillis() / (1000L * 60L * 60L * 24L)) % 3);
|
|
|
|
|
|
|
|
GBApplication.deviceService().onDeleteCalendarEvent(CalendarEventSpec.TYPE_SUNRISE, id_tomorrow);
|
|
|
|
GBApplication.deviceService().onDeleteCalendarEvent(CalendarEventSpec.TYPE_SUNSET, id_tomorrow);
|
2016-05-24 11:19:57 +02:00
|
|
|
|
|
|
|
Prefs prefs = GBApplication.getPrefs();
|
|
|
|
|
|
|
|
float latitude = prefs.getFloat("location_latitude", 0);
|
|
|
|
float longitude = prefs.getFloat("location_longitude", 0);
|
2016-05-26 14:39:54 +02:00
|
|
|
LOG.info("got longitude/latitude from preferences: " + latitude + "/" + longitude);
|
2016-05-24 14:46:22 +02:00
|
|
|
GregorianCalendar[] sunriseTransitSetTomorrow = SPA.calculateSunriseTransitSet(dateTimeTomorrow, latitude, longitude, DeltaT.estimate(dateTimeTomorrow));
|
2016-05-24 11:19:57 +02:00
|
|
|
|
|
|
|
CalendarEventSpec calendarEventSpec = new CalendarEventSpec();
|
|
|
|
calendarEventSpec.durationInSeconds = 0;
|
|
|
|
calendarEventSpec.description = null;
|
|
|
|
|
|
|
|
calendarEventSpec.type = CalendarEventSpec.TYPE_SUNRISE;
|
|
|
|
calendarEventSpec.title = "Sunrise";
|
|
|
|
if (sunriseTransitSetTomorrow[0] != null) {
|
2016-05-24 14:46:22 +02:00
|
|
|
calendarEventSpec.id = id_tomorrow;
|
2016-05-24 11:19:57 +02:00
|
|
|
calendarEventSpec.timestamp = (int) (sunriseTransitSetTomorrow[0].getTimeInMillis() / 1000);
|
|
|
|
GBApplication.deviceService().onAddCalendarEvent(calendarEventSpec);
|
|
|
|
}
|
|
|
|
|
|
|
|
calendarEventSpec.type = CalendarEventSpec.TYPE_SUNSET;
|
|
|
|
calendarEventSpec.title = "Sunset";
|
|
|
|
if (sunriseTransitSetTomorrow[2] != null) {
|
2016-05-24 14:46:22 +02:00
|
|
|
calendarEventSpec.id = id_tomorrow;
|
2016-05-24 11:19:57 +02:00
|
|
|
calendarEventSpec.timestamp = (int) (sunriseTransitSetTomorrow[2].getTimeInMillis() / 1000);
|
|
|
|
GBApplication.deviceService().onAddCalendarEvent(calendarEventSpec);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|