2014-10-22 12:38:44 -04:00
|
|
|
package eu.siacs.conversations.services;
|
|
|
|
|
|
|
|
import android.content.BroadcastReceiver;
|
|
|
|
import android.content.Context;
|
|
|
|
import android.content.Intent;
|
|
|
|
|
2015-07-20 08:26:29 -04:00
|
|
|
import eu.siacs.conversations.persistance.DatabaseBackend;
|
|
|
|
|
2014-10-22 12:38:44 -04: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");
|
|
|
|
}
|
|
|
|
if (intent.getAction().equals("ui")
|
|
|
|
|| DatabaseBackend.getInstance(context).hasEnabledAccounts()) {
|
|
|
|
context.startService(mIntentForService);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|