64 lines
1.8 KiB
Java
64 lines
1.8 KiB
Java
|
package org.thoughtcrime.securesms.jobs;
|
||
|
|
||
|
import android.content.Context;
|
||
|
import android.util.Log;
|
||
|
|
||
|
import org.thoughtcrime.securesms.ApplicationContext;
|
||
|
import org.thoughtcrime.securesms.database.DatabaseFactory;
|
||
|
import org.thoughtcrime.securesms.util.TextSecurePreferences;
|
||
|
import org.whispersystems.jobqueue.JobManager;
|
||
|
import org.whispersystems.jobqueue.JobParameters;
|
||
|
import org.whispersystems.libaxolotl.InvalidVersionException;
|
||
|
import org.whispersystems.textsecure.api.messages.TextSecureEnvelope;
|
||
|
import org.thoughtcrime.securesms.database.TextSecureDirectory;
|
||
|
import org.thoughtcrime.securesms.database.NotInDirectoryException;
|
||
|
import org.whispersystems.textsecure.api.push.ContactTokenDetails;
|
||
|
|
||
|
import java.io.IOException;
|
||
|
|
||
|
public class PushContentReceiveJob extends PushReceivedJob {
|
||
|
|
||
|
private static final String TAG = PushContentReceiveJob.class.getSimpleName();
|
||
|
|
||
|
private final String data;
|
||
|
|
||
|
public PushContentReceiveJob(Context context) {
|
||
|
super(context, JobParameters.newBuilder().create());
|
||
|
this.data = null;
|
||
|
}
|
||
|
|
||
|
public PushContentReceiveJob(Context context, String data) {
|
||
|
super(context, JobParameters.newBuilder()
|
||
|
.withPersistence()
|
||
|
.withWakeLock(true)
|
||
|
.create());
|
||
|
|
||
|
this.data = data;
|
||
|
}
|
||
|
|
||
|
@Override
|
||
|
public void onAdded() {}
|
||
|
|
||
|
@Override
|
||
|
public void onRun() {
|
||
|
try {
|
||
|
String sessionKey = TextSecurePreferences.getSignalingKey(context);
|
||
|
TextSecureEnvelope envelope = new TextSecureEnvelope(data, sessionKey);
|
||
|
|
||
|
handle(envelope, true);
|
||
|
} catch (IOException | InvalidVersionException e) {
|
||
|
Log.w(TAG, e);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
@Override
|
||
|
public void onCanceled() {
|
||
|
|
||
|
}
|
||
|
|
||
|
@Override
|
||
|
public boolean onShouldRetry(Exception exception) {
|
||
|
return false;
|
||
|
}
|
||
|
}
|