2017-04-16 12:34:37 +02:00
|
|
|
/* Copyright (C) 2016-2017 Andreas Shimokawa, Daniele Gobbetti
|
|
|
|
|
|
|
|
This file is part of Gadgetbridge.
|
|
|
|
|
|
|
|
Gadgetbridge is free software: you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU Affero General Public License as published
|
|
|
|
by the Free Software Foundation, either version 3 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
Gadgetbridge is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU Affero General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU Affero General Public License
|
|
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>. */
|
|
|
|
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;
|
2017-04-16 19:37:43 +02:00
|
|
|
import android.widget.Toast;
|
2017-04-16 12:34:37 +02:00
|
|
|
|
|
|
|
import org.slf4j.Logger;
|
|
|
|
import org.slf4j.LoggerFactory;
|
|
|
|
|
|
|
|
import java.util.Calendar;
|
|
|
|
import java.util.Enumeration;
|
|
|
|
import java.util.Hashtable;
|
|
|
|
import java.util.List;
|
|
|
|
|
2017-04-16 19:37:43 +02:00
|
|
|
import de.greenrobot.dao.query.QueryBuilder;
|
2017-04-16 12:34:37 +02:00
|
|
|
import nodomain.freeyourgadget.gadgetbridge.GBApplication;
|
2017-04-16 19:37:43 +02:00
|
|
|
import nodomain.freeyourgadget.gadgetbridge.database.DBHandler;
|
|
|
|
import nodomain.freeyourgadget.gadgetbridge.database.DBHelper;
|
|
|
|
import nodomain.freeyourgadget.gadgetbridge.entities.CalendarSyncState;
|
|
|
|
import nodomain.freeyourgadget.gadgetbridge.entities.CalendarSyncStateDao;
|
|
|
|
import nodomain.freeyourgadget.gadgetbridge.entities.DaoSession;
|
|
|
|
import nodomain.freeyourgadget.gadgetbridge.impl.GBDevice;
|
2017-04-16 12:34:37 +02:00
|
|
|
import nodomain.freeyourgadget.gadgetbridge.model.CalendarEventSpec;
|
|
|
|
import nodomain.freeyourgadget.gadgetbridge.model.CalendarEvents;
|
2017-04-16 19:37:43 +02:00
|
|
|
import nodomain.freeyourgadget.gadgetbridge.util.GB;
|
2017-04-16 12:34:37 +02:00
|
|
|
|
|
|
|
public class CalendarReceiver extends BroadcastReceiver {
|
|
|
|
private static final Logger LOG = LoggerFactory.getLogger(CalendarReceiver.class);
|
2017-04-16 19:37:43 +02:00
|
|
|
private Hashtable<Long, EventSyncState> eventState = new Hashtable<>();
|
|
|
|
|
|
|
|
private GBDevice mGBDevice;
|
2017-04-16 12:34:37 +02:00
|
|
|
|
|
|
|
private class EventSyncState {
|
2017-04-16 19:37:43 +02:00
|
|
|
private int state;
|
2017-04-16 12:34:37 +02:00
|
|
|
private CalendarEvents.CalendarEvent event;
|
|
|
|
|
2017-04-16 19:37:43 +02:00
|
|
|
EventSyncState(CalendarEvents.CalendarEvent event, int state) {
|
2017-04-16 12:34:37 +02:00
|
|
|
this.state = state;
|
|
|
|
this.event = event;
|
|
|
|
}
|
|
|
|
|
2017-04-16 19:37:43 +02:00
|
|
|
public int getState() {
|
2017-04-16 12:34:37 +02:00
|
|
|
return state;
|
|
|
|
}
|
|
|
|
|
2017-04-16 19:37:43 +02:00
|
|
|
public void setState(int state) {
|
2017-04-16 12:34:37 +02:00
|
|
|
this.state = state;
|
|
|
|
}
|
|
|
|
|
|
|
|
public CalendarEvents.CalendarEvent getEvent() {
|
|
|
|
return event;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setEvent(CalendarEvents.CalendarEvent event) {
|
|
|
|
this.event = event;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-04-16 19:37:43 +02:00
|
|
|
private static class EventState {
|
|
|
|
private static final int NOT_SYNCED = 0;
|
|
|
|
private static final int SYNCED = 1;
|
|
|
|
private static final int NEEDS_UPDATE = 2;
|
|
|
|
private static final int NEEDS_DELETE = 3;
|
2017-04-16 12:34:37 +02:00
|
|
|
}
|
|
|
|
|
2017-04-16 19:37:43 +02:00
|
|
|
public CalendarReceiver(GBDevice gbDevice) {
|
2017-04-16 12:34:37 +02:00
|
|
|
LOG.info("Created calendar receiver.");
|
2017-04-16 19:37:43 +02:00
|
|
|
mGBDevice = gbDevice;
|
2017-04-16 12:34:37 +02:00
|
|
|
Context context = GBApplication.getContext();
|
|
|
|
PendingIntent pendingIntent = PendingIntent.getBroadcast(context, 0, new Intent("CALENDAR_SYNC"), 0);
|
|
|
|
AlarmManager am = (AlarmManager) (context.getSystemService(Context.ALARM_SERVICE));
|
|
|
|
|
2017-04-16 19:37:43 +02:00
|
|
|
|
|
|
|
//FIXME: 30 sec interval is only for debugging
|
|
|
|
am.setInexactRepeating(AlarmManager.RTC_WAKEUP, Calendar.getInstance().getTimeInMillis() + 10000, 30000, pendingIntent);
|
|
|
|
|
|
|
|
//am.setInexactRepeating(AlarmManager.RTC_WAKEUP, Calendar.getInstance().getTimeInMillis() + 10000, AlarmManager.INTERVAL_HALF_HOUR, pendingIntent);
|
|
|
|
//syncCalendar(); - does not work here (device not yet initialized)
|
2017-04-16 12:34:37 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onReceive(Context context, Intent intent) {
|
2017-04-16 19:37:43 +02:00
|
|
|
syncCalendar();
|
|
|
|
}
|
|
|
|
|
|
|
|
public void syncCalendar() {
|
2017-04-16 12:34:37 +02:00
|
|
|
LOG.info("Syncing with calendar.");
|
|
|
|
List<CalendarEvents.CalendarEvent> eventList = (new CalendarEvents()).getCalendarEventList(GBApplication.getContext());
|
2017-04-16 19:37:43 +02:00
|
|
|
Hashtable<Long, CalendarEvents.CalendarEvent> eventTable = new Hashtable<>();
|
2017-04-16 12:34:37 +02:00
|
|
|
|
2017-04-16 19:37:43 +02:00
|
|
|
try (DBHandler dbHandler = GBApplication.acquireDB()) {
|
|
|
|
DaoSession session = dbHandler.getDaoSession();
|
|
|
|
Long deviceId = DBHelper.getDevice(mGBDevice, session).getId();
|
2017-04-16 12:34:37 +02:00
|
|
|
|
2017-04-16 19:37:43 +02:00
|
|
|
QueryBuilder<CalendarSyncState> qb = session.getCalendarSyncStateDao().queryBuilder();
|
|
|
|
|
|
|
|
|
|
|
|
for (CalendarEvents.CalendarEvent e : eventList) {
|
|
|
|
eventTable.put(e.getId(), e);
|
|
|
|
if (!eventState.containsKey(e.getId())) {
|
|
|
|
qb = session.getCalendarSyncStateDao().queryBuilder();
|
|
|
|
|
|
|
|
CalendarSyncState calendarSyncState = qb.where(qb.and(CalendarSyncStateDao.Properties.DeviceId.eq(deviceId), CalendarSyncStateDao.Properties.CalendarEntryId.eq(e.getId())))
|
|
|
|
.build().unique();
|
|
|
|
if (calendarSyncState == null) {
|
|
|
|
eventState.put(e.getId(), new EventSyncState(e, EventState.NOT_SYNCED));
|
|
|
|
} else {
|
|
|
|
eventState.put(e.getId(), new EventSyncState(e, calendarSyncState.getSyncState()));
|
2017-04-16 12:34:37 +02:00
|
|
|
}
|
|
|
|
}
|
2017-04-16 19:37:43 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// add all missing calendar ids on the device to sync status (so that they are deleted later)
|
|
|
|
List<CalendarSyncState> CalendarSyncStateList = qb.where(CalendarSyncStateDao.Properties.DeviceId.eq(deviceId)).build().list();
|
|
|
|
for (CalendarSyncState CalendarSyncState : CalendarSyncStateList) {
|
|
|
|
if (!eventState.containsKey(CalendarSyncState.getCalendarEntryId())) {
|
|
|
|
eventState.put(CalendarSyncState.getCalendarEntryId(), new EventSyncState(null, CalendarSyncState.getSyncState()));
|
|
|
|
LOG.info("insert null event for orphanded calendar id=" + CalendarSyncState.getCalendarEntryId() + " for device=" + mGBDevice.getName());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Enumeration<Long> ids = eventState.keys();
|
|
|
|
while (ids.hasMoreElements()) {
|
|
|
|
qb = session.getCalendarSyncStateDao().queryBuilder();
|
|
|
|
Long i = ids.nextElement();
|
|
|
|
EventSyncState es = eventState.get(i);
|
|
|
|
if (eventTable.containsKey(i)) {
|
|
|
|
if (es.getState() == EventState.SYNCED) {
|
|
|
|
if (!es.getEvent().equals(eventTable.get(i))) {
|
|
|
|
eventState.put(i, new EventSyncState(eventTable.get(i), EventState.NEEDS_UPDATE));
|
|
|
|
// update sync status of that Calendar entry in DB for all devices
|
|
|
|
CalendarSyncStateList = qb.where(CalendarSyncStateDao.Properties.CalendarEntryId.eq(i)).build().list();
|
|
|
|
for (CalendarSyncState CalendarSyncState : CalendarSyncStateList) {
|
|
|
|
CalendarSyncState.setSyncState(EventState.NEEDS_UPDATE);
|
|
|
|
CalendarSyncState.update();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2017-04-16 12:34:37 +02:00
|
|
|
} else {
|
2017-04-16 19:37:43 +02:00
|
|
|
if (es.getState() == EventState.NOT_SYNCED) {
|
|
|
|
// delete for current device only
|
|
|
|
qb.where(qb.and(CalendarSyncStateDao.Properties.DeviceId.eq(deviceId), CalendarSyncStateDao.Properties.CalendarEntryId.eq(i)))
|
|
|
|
.buildDelete().executeDeleteWithoutDetachingEntities();
|
|
|
|
eventState.remove(i);
|
|
|
|
} else {
|
|
|
|
es.setState(EventState.NEEDS_DELETE);
|
|
|
|
eventState.put(i, es);
|
|
|
|
}
|
2017-04-16 12:34:37 +02:00
|
|
|
}
|
2017-04-16 19:37:43 +02:00
|
|
|
updateEvents(deviceId, session);
|
2017-04-16 12:34:37 +02:00
|
|
|
}
|
2017-04-16 19:37:43 +02:00
|
|
|
} catch (Exception e) {
|
|
|
|
e.printStackTrace();
|
|
|
|
GB.toast("Datebase Error while syncing Calendar", Toast.LENGTH_SHORT, GB.ERROR);
|
2017-04-16 12:34:37 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2017-04-16 19:37:43 +02:00
|
|
|
private void updateEvents(Long deviceId, DaoSession session) {
|
2017-04-16 12:34:37 +02:00
|
|
|
Enumeration<Long> ids = eventState.keys();
|
|
|
|
while (ids.hasMoreElements()) {
|
|
|
|
Long i = ids.nextElement();
|
|
|
|
EventSyncState es = eventState.get(i);
|
2017-04-16 19:37:43 +02:00
|
|
|
int syncState = es.getState();
|
|
|
|
if (syncState == EventState.NOT_SYNCED || syncState == EventState.NEEDS_UPDATE) {
|
2017-04-16 12:34:37 +02:00
|
|
|
CalendarEventSpec calendarEventSpec = new CalendarEventSpec();
|
|
|
|
calendarEventSpec.title = es.getEvent().getTitle();
|
|
|
|
calendarEventSpec.id = i;
|
|
|
|
calendarEventSpec.timestamp = es.getEvent().getBeginSeconds();
|
|
|
|
calendarEventSpec.description = es.getEvent().getDescription();
|
|
|
|
calendarEventSpec.type = CalendarEventSpec.TYPE_UNKNOWN;
|
2017-04-16 19:37:43 +02:00
|
|
|
if (syncState == EventState.NEEDS_UPDATE) {
|
|
|
|
GBApplication.deviceService().onDeleteCalendarEvent(CalendarEventSpec.TYPE_UNKNOWN, i);
|
|
|
|
}
|
2017-04-16 12:34:37 +02:00
|
|
|
GBApplication.deviceService().onAddCalendarEvent(calendarEventSpec);
|
|
|
|
es.setState(EventState.SYNCED);
|
|
|
|
eventState.put(i, es);
|
2017-04-16 19:37:43 +02:00
|
|
|
// update db
|
|
|
|
session.insertOrReplace(new CalendarSyncState(deviceId, i, EventState.SYNCED));
|
|
|
|
} else if (syncState == EventState.NEEDS_DELETE) {
|
2017-04-16 12:34:37 +02:00
|
|
|
GBApplication.deviceService().onDeleteCalendarEvent(CalendarEventSpec.TYPE_UNKNOWN, i);
|
|
|
|
eventState.remove(i);
|
2017-04-16 19:37:43 +02:00
|
|
|
// delete from db for current device only
|
|
|
|
QueryBuilder<CalendarSyncState> qb = session.getCalendarSyncStateDao().queryBuilder();
|
|
|
|
qb.where(qb.and(CalendarSyncStateDao.Properties.DeviceId.eq(deviceId), CalendarSyncStateDao.Properties.CalendarEntryId.eq(i)))
|
|
|
|
.buildDelete().executeDeleteWithoutDetachingEntities();
|
2017-04-16 12:34:37 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|