2015-04-20 22:39:35 +02:00
|
|
|
package nodomain.freeyourgadget.gadgetbridge.externalevents;
|
2015-01-26 18:52:19 +01:00
|
|
|
|
|
|
|
import android.content.BroadcastReceiver;
|
|
|
|
import android.content.Context;
|
|
|
|
import android.content.Intent;
|
2015-03-06 14:00:56 +01:00
|
|
|
import android.content.SharedPreferences;
|
2015-01-26 18:52:19 +01:00
|
|
|
import android.database.Cursor;
|
|
|
|
import android.net.Uri;
|
2015-03-04 23:47:47 +01:00
|
|
|
import android.os.PowerManager;
|
2015-03-06 14:00:56 +01:00
|
|
|
import android.preference.PreferenceManager;
|
2015-01-26 18:52:19 +01:00
|
|
|
|
2015-05-12 06:28:11 +02:00
|
|
|
import org.slf4j.Logger;
|
|
|
|
import org.slf4j.LoggerFactory;
|
|
|
|
|
2015-08-04 01:01:14 +02:00
|
|
|
import nodomain.freeyourgadget.gadgetbridge.service.DeviceCommunicationService;
|
2015-04-20 22:39:35 +02:00
|
|
|
|
2015-01-26 18:52:19 +01:00
|
|
|
public class K9Receiver extends BroadcastReceiver {
|
|
|
|
|
2015-05-12 06:28:11 +02:00
|
|
|
private static final Logger LOG = LoggerFactory.getLogger(K9Receiver.class);
|
2015-01-26 18:52:19 +01:00
|
|
|
private final Uri k9Uri = Uri.parse("content://com.fsck.k9.messageprovider/inbox_messages");
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onReceive(Context context, Intent intent) {
|
2015-03-04 23:47:47 +01:00
|
|
|
|
2015-03-06 14:00:56 +01:00
|
|
|
SharedPreferences sharedPrefs = PreferenceManager.getDefaultSharedPreferences(context);
|
2015-05-04 01:03:56 +02:00
|
|
|
if ("never".equals(sharedPrefs.getString("notification_mode_k9mail", "when_screen_off"))) {
|
2015-03-04 23:47:47 +01:00
|
|
|
return;
|
|
|
|
}
|
2015-05-04 01:03:56 +02:00
|
|
|
if ("when_screen_off".equals(sharedPrefs.getString("notification_mode_k9mail", "when_screen_off"))) {
|
|
|
|
PowerManager powermanager = (PowerManager) context.getSystemService(Context.POWER_SERVICE);
|
2015-03-06 14:00:56 +01:00
|
|
|
if (powermanager.isScreenOn()) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
2015-03-04 23:47:47 +01:00
|
|
|
|
2015-03-16 16:18:11 +01:00
|
|
|
String uriWanted = intent.getData().toString();
|
2015-01-26 18:52:19 +01:00
|
|
|
|
|
|
|
String[] messagesProjection = {
|
2015-03-16 16:18:11 +01:00
|
|
|
"senderAddress",
|
|
|
|
"subject",
|
|
|
|
"preview",
|
|
|
|
"uri"
|
2015-01-26 18:52:19 +01:00
|
|
|
};
|
|
|
|
|
2015-03-16 16:18:11 +01:00
|
|
|
String sender = "";
|
|
|
|
String subject = "";
|
|
|
|
String preview = "";
|
|
|
|
|
|
|
|
/*
|
|
|
|
* there seems to be no way to specify the the uri in the where clause.
|
|
|
|
* If we do so, we just get the newest message, not the one requested.
|
|
|
|
* So, we will just search our message and match the uri manually.
|
|
|
|
* It should be the first one returned by the query in most cases,
|
|
|
|
*/
|
|
|
|
Cursor c = context.getContentResolver().query(k9Uri, messagesProjection, null, null, null);
|
2015-01-26 18:52:19 +01:00
|
|
|
c.moveToFirst();
|
2015-03-16 16:18:11 +01:00
|
|
|
do {
|
|
|
|
String uri = c.getString(c.getColumnIndex("uri"));
|
|
|
|
if (uri.equals(uriWanted)) {
|
|
|
|
sender = c.getString(c.getColumnIndex("senderAddress"));
|
|
|
|
subject = c.getString(c.getColumnIndex("subject"));
|
|
|
|
preview = c.getString(c.getColumnIndex("preview"));
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
} while (c.moveToNext());
|
2015-01-26 18:52:19 +01:00
|
|
|
c.close();
|
|
|
|
|
2015-08-04 01:01:14 +02:00
|
|
|
Intent startIntent = new Intent(context, DeviceCommunicationService.class);
|
|
|
|
startIntent.setAction(DeviceCommunicationService.ACTION_NOTIFICATION_EMAIL);
|
2015-01-26 18:52:19 +01:00
|
|
|
startIntent.putExtra("notification_sender", sender);
|
|
|
|
startIntent.putExtra("notification_subject", subject);
|
|
|
|
startIntent.putExtra("notification_body", preview);
|
|
|
|
|
|
|
|
context.startService(startIntent);
|
|
|
|
}
|
|
|
|
}
|