2014-10-21 17:39:25 +00:00
|
|
|
package org.thoughtcrime.securesms.jobs;
|
|
|
|
|
|
|
|
import android.content.Context;
|
|
|
|
import android.util.Log;
|
|
|
|
|
|
|
|
import org.thoughtcrime.securesms.crypto.IdentityKeyUtil;
|
2014-11-10 04:35:08 +00:00
|
|
|
import org.thoughtcrime.securesms.crypto.MasterSecret;
|
|
|
|
import org.thoughtcrime.securesms.crypto.PreKeyUtil;
|
2014-11-12 03:57:53 +00:00
|
|
|
import org.thoughtcrime.securesms.dependencies.InjectableType;
|
2015-07-07 00:36:49 +00:00
|
|
|
import org.thoughtcrime.securesms.jobs.requirements.MasterSecretRequirement;
|
2014-10-21 17:39:25 +00:00
|
|
|
import org.thoughtcrime.securesms.util.TextSecurePreferences;
|
|
|
|
import org.whispersystems.jobqueue.JobParameters;
|
|
|
|
import org.whispersystems.jobqueue.requirements.NetworkRequirement;
|
|
|
|
import org.whispersystems.libaxolotl.IdentityKeyPair;
|
|
|
|
import org.whispersystems.libaxolotl.state.SignedPreKeyRecord;
|
2014-11-10 04:35:08 +00:00
|
|
|
import org.whispersystems.textsecure.api.TextSecureAccountManager;
|
2014-11-12 19:35:54 +00:00
|
|
|
import org.whispersystems.textsecure.api.push.exceptions.PushNetworkException;
|
2014-10-21 17:39:25 +00:00
|
|
|
|
|
|
|
import java.io.IOException;
|
|
|
|
|
2014-11-12 03:57:53 +00:00
|
|
|
import javax.inject.Inject;
|
|
|
|
|
2015-07-07 00:36:49 +00:00
|
|
|
public class CreateSignedPreKeyJob extends MasterSecretJob implements InjectableType {
|
|
|
|
|
|
|
|
private static final long serialVersionUID = 1L;
|
2014-10-21 17:39:25 +00:00
|
|
|
|
|
|
|
private static final String TAG = CreateSignedPreKeyJob.class.getSimpleName();
|
|
|
|
|
2014-11-12 03:57:53 +00:00
|
|
|
@Inject transient TextSecureAccountManager accountManager;
|
|
|
|
|
2015-07-07 00:36:49 +00:00
|
|
|
public CreateSignedPreKeyJob(Context context) {
|
2014-10-21 17:39:25 +00:00
|
|
|
super(context, JobParameters.newBuilder()
|
|
|
|
.withPersistence()
|
|
|
|
.withRequirement(new NetworkRequirement(context))
|
2015-07-07 00:36:49 +00:00
|
|
|
.withRequirement(new MasterSecretRequirement(context))
|
2014-10-21 17:39:25 +00:00
|
|
|
.withGroupId(CreateSignedPreKeyJob.class.getSimpleName())
|
|
|
|
.create());
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onAdded() {}
|
|
|
|
|
|
|
|
@Override
|
2015-07-07 00:36:49 +00:00
|
|
|
public void onRun(MasterSecret masterSecret) throws IOException {
|
2014-10-21 17:39:25 +00:00
|
|
|
if (TextSecurePreferences.isSignedPreKeyRegistered(context)) {
|
|
|
|
Log.w(TAG, "Signed prekey already registered...");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2015-07-07 00:36:49 +00:00
|
|
|
IdentityKeyPair identityKeyPair = IdentityKeyUtil.getIdentityKeyPair(context);
|
|
|
|
SignedPreKeyRecord signedPreKeyRecord = PreKeyUtil.generateSignedPreKey(context, identityKeyPair);
|
2014-10-21 17:39:25 +00:00
|
|
|
|
2014-11-10 04:35:08 +00:00
|
|
|
accountManager.setSignedPreKey(signedPreKeyRecord);
|
2014-10-21 17:39:25 +00:00
|
|
|
TextSecurePreferences.setSignedPreKeyRegistered(context, true);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onCanceled() {}
|
|
|
|
|
|
|
|
@Override
|
2015-07-07 00:36:49 +00:00
|
|
|
public boolean onShouldRetryThrowable(Exception exception) {
|
2014-11-12 05:11:57 +00:00
|
|
|
if (exception instanceof PushNetworkException) return true;
|
2014-10-21 17:39:25 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|