mirror of
https://github.com/oxen-io/session-android.git
synced 2024-11-28 12:35:17 +00:00
53 lines
1.6 KiB
Java
53 lines
1.6 KiB
Java
|
package org.thoughtcrime.securesms.jobs;
|
||
|
|
||
|
import android.content.Context;
|
||
|
import android.util.Log;
|
||
|
|
||
|
import org.thoughtcrime.securesms.dependencies.InjectableType;
|
||
|
import org.whispersystems.jobqueue.JobParameters;
|
||
|
import org.whispersystems.jobqueue.requirements.NetworkRequirement;
|
||
|
import org.whispersystems.textsecure.api.TextSecureMessageReceiver;
|
||
|
import org.whispersystems.textsecure.api.messages.TextSecureEnvelope;
|
||
|
import org.whispersystems.textsecure.api.push.exceptions.PushNetworkException;
|
||
|
|
||
|
import java.io.IOException;
|
||
|
import java.util.concurrent.TimeUnit;
|
||
|
|
||
|
import javax.inject.Inject;
|
||
|
|
||
|
public class PushNotificationReceiveJob extends PushReceivedJob implements InjectableType {
|
||
|
|
||
|
private static final String TAG = PushNotificationReceiveJob.class.getSimpleName();
|
||
|
|
||
|
@Inject transient TextSecureMessageReceiver receiver;
|
||
|
|
||
|
public PushNotificationReceiveJob(Context context) {
|
||
|
super(context, JobParameters.newBuilder()
|
||
|
.withRequirement(new NetworkRequirement(context))
|
||
|
.withWakeLock(true, 30, TimeUnit.SECONDS).create());
|
||
|
}
|
||
|
|
||
|
@Override
|
||
|
public void onAdded() {}
|
||
|
|
||
|
@Override
|
||
|
public void onRun() throws IOException {
|
||
|
receiver.retrieveMessages(new TextSecureMessageReceiver.MessageReceivedCallback() {
|
||
|
@Override
|
||
|
public void onMessage(TextSecureEnvelope envelope) {
|
||
|
handle(envelope, false);
|
||
|
}
|
||
|
});
|
||
|
}
|
||
|
|
||
|
@Override
|
||
|
public boolean onShouldRetry(Exception e) {
|
||
|
return e instanceof PushNetworkException;
|
||
|
}
|
||
|
|
||
|
@Override
|
||
|
public void onCanceled() {
|
||
|
Log.w(TAG, "***** Failed to download pending message!");
|
||
|
}
|
||
|
}
|