2014-10-22 16:38:44 +00:00
|
|
|
package eu.siacs.conversations.services;
|
|
|
|
|
|
|
|
import android.content.BroadcastReceiver;
|
|
|
|
import android.content.Context;
|
|
|
|
import android.content.Intent;
|
2016-08-09 17:21:54 +00:00
|
|
|
import android.net.ConnectivityManager;
|
2014-10-22 16:38:44 +00:00
|
|
|
|
2016-08-09 17:21:54 +00:00
|
|
|
import eu.siacs.conversations.Config;
|
2015-07-20 12:26:29 +00:00
|
|
|
import eu.siacs.conversations.persistance.DatabaseBackend;
|
|
|
|
|
2014-10-22 16:38:44 +00:00
|
|
|
public class EventReceiver extends BroadcastReceiver {
|
|
|
|
@Override
|
|
|
|
public void onReceive(Context context, Intent intent) {
|
|
|
|
Intent mIntentForService = new Intent(context,
|
|
|
|
XmppConnectionService.class);
|
|
|
|
if (intent.getAction() != null) {
|
|
|
|
mIntentForService.setAction(intent.getAction());
|
|
|
|
} else {
|
|
|
|
mIntentForService.setAction("other");
|
|
|
|
}
|
2016-08-09 17:21:54 +00:00
|
|
|
final String action = intent.getAction();
|
|
|
|
if (action.equals(ConnectivityManager.CONNECTIVITY_ACTION) && Config.PUSH_MODE) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (action.equals("ui") || DatabaseBackend.getInstance(context).hasEnabledAccounts()) {
|
2014-10-22 16:38:44 +00:00
|
|
|
context.startService(mIntentForService);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|