2017-06-07 01:03:09 +00:00
|
|
|
package org.thoughtcrime.securesms.jobs;
|
|
|
|
|
|
|
|
|
|
|
|
import android.content.Context;
|
2018-08-09 14:15:43 +00:00
|
|
|
import android.support.annotation.NonNull;
|
|
|
|
|
|
|
|
import org.thoughtcrime.securesms.jobmanager.SafeData;
|
2018-08-01 15:09:24 +00:00
|
|
|
import org.thoughtcrime.securesms.logging.Log;
|
2017-06-07 01:03:09 +00:00
|
|
|
|
2018-05-22 09:13:10 +00:00
|
|
|
import org.thoughtcrime.securesms.crypto.UnidentifiedAccessUtil;
|
2017-07-26 16:59:15 +00:00
|
|
|
import org.thoughtcrime.securesms.database.Address;
|
2017-06-07 01:03:09 +00:00
|
|
|
import org.thoughtcrime.securesms.database.IdentityDatabase.VerifiedStatus;
|
|
|
|
import org.thoughtcrime.securesms.dependencies.InjectableType;
|
2018-06-18 19:27:04 +00:00
|
|
|
import org.thoughtcrime.securesms.jobmanager.JobParameters;
|
2018-08-09 14:15:43 +00:00
|
|
|
import org.thoughtcrime.securesms.util.Base64;
|
2018-05-22 09:13:10 +00:00
|
|
|
import org.thoughtcrime.securesms.jobmanager.requirements.NetworkRequirement;
|
|
|
|
import org.thoughtcrime.securesms.recipients.Recipient;
|
2017-06-07 01:03:09 +00:00
|
|
|
import org.thoughtcrime.securesms.util.TextSecurePreferences;
|
|
|
|
import org.whispersystems.libsignal.IdentityKey;
|
|
|
|
import org.whispersystems.libsignal.InvalidKeyException;
|
|
|
|
import org.whispersystems.signalservice.api.SignalServiceMessageSender;
|
|
|
|
import org.whispersystems.signalservice.api.crypto.UntrustedIdentityException;
|
|
|
|
import org.whispersystems.signalservice.api.messages.multidevice.SignalServiceSyncMessage;
|
|
|
|
import org.whispersystems.signalservice.api.messages.multidevice.VerifiedMessage;
|
|
|
|
import org.whispersystems.signalservice.api.push.exceptions.PushNetworkException;
|
|
|
|
|
|
|
|
import java.io.IOException;
|
|
|
|
|
|
|
|
import javax.inject.Inject;
|
|
|
|
|
2018-08-09 14:15:43 +00:00
|
|
|
import androidx.work.Data;
|
2018-11-27 20:34:42 +00:00
|
|
|
import androidx.work.WorkerParameters;
|
2018-08-09 14:15:43 +00:00
|
|
|
|
2017-06-07 01:03:09 +00:00
|
|
|
public class MultiDeviceVerifiedUpdateJob extends ContextJob implements InjectableType {
|
|
|
|
|
|
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
|
|
|
|
private static final String TAG = MultiDeviceVerifiedUpdateJob.class.getSimpleName();
|
|
|
|
|
2018-08-09 14:15:43 +00:00
|
|
|
private static final String KEY_DESTINATION = "destination";
|
|
|
|
private static final String KEY_IDENTITY_KEY = "identity_key";
|
|
|
|
private static final String KEY_VERIFIED_STATUS = "verified_status";
|
|
|
|
private static final String KEY_TIMESTAMP = "timestamp";
|
|
|
|
|
2017-06-07 01:03:09 +00:00
|
|
|
@Inject
|
2017-09-16 05:38:53 +00:00
|
|
|
transient SignalServiceMessageSender messageSender;
|
2017-06-07 01:03:09 +00:00
|
|
|
|
2018-08-09 14:15:43 +00:00
|
|
|
private String destination;
|
|
|
|
private byte[] identityKey;
|
|
|
|
private VerifiedStatus verifiedStatus;
|
|
|
|
private long timestamp;
|
|
|
|
|
2018-11-27 20:34:42 +00:00
|
|
|
public MultiDeviceVerifiedUpdateJob(@NonNull Context context, @NonNull WorkerParameters workerParameters) {
|
|
|
|
super(context, workerParameters);
|
2018-08-09 14:15:43 +00:00
|
|
|
}
|
2017-06-07 01:03:09 +00:00
|
|
|
|
2017-07-26 16:59:15 +00:00
|
|
|
public MultiDeviceVerifiedUpdateJob(Context context, Address destination, IdentityKey identityKey, VerifiedStatus verifiedStatus) {
|
2017-06-07 01:03:09 +00:00
|
|
|
super(context, JobParameters.newBuilder()
|
2018-08-09 14:15:43 +00:00
|
|
|
.withNetworkRequirement()
|
2017-06-07 01:03:09 +00:00
|
|
|
.withGroupId("__MULTI_DEVICE_VERIFIED_UPDATE__")
|
|
|
|
.create());
|
|
|
|
|
2017-07-26 16:59:15 +00:00
|
|
|
this.destination = destination.serialize();
|
2017-06-07 01:03:09 +00:00
|
|
|
this.identityKey = identityKey.serialize();
|
|
|
|
this.verifiedStatus = verifiedStatus;
|
2017-06-23 20:57:38 +00:00
|
|
|
this.timestamp = System.currentTimeMillis();
|
2017-06-07 01:03:09 +00:00
|
|
|
}
|
|
|
|
|
2018-08-09 14:15:43 +00:00
|
|
|
@Override
|
|
|
|
protected void initialize(@NonNull SafeData data) {
|
|
|
|
destination = data.getString(KEY_DESTINATION);
|
|
|
|
verifiedStatus = VerifiedStatus.forState(data.getInt(KEY_VERIFIED_STATUS));
|
|
|
|
timestamp = data.getLong(KEY_TIMESTAMP);
|
|
|
|
|
|
|
|
try {
|
|
|
|
identityKey = Base64.decode(data.getString(KEY_IDENTITY_KEY));
|
|
|
|
} catch (IOException e) {
|
|
|
|
throw new AssertionError(e);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
protected @NonNull Data serialize(@NonNull Data.Builder dataBuilder) {
|
|
|
|
return dataBuilder.putString(KEY_DESTINATION, destination)
|
|
|
|
.putString(KEY_IDENTITY_KEY, Base64.encodeBytes(identityKey))
|
|
|
|
.putInt(KEY_VERIFIED_STATUS, verifiedStatus.toInt())
|
|
|
|
.putLong(KEY_TIMESTAMP, timestamp)
|
|
|
|
.build();
|
|
|
|
}
|
|
|
|
|
2017-06-07 01:03:09 +00:00
|
|
|
@Override
|
|
|
|
public void onRun() throws IOException, UntrustedIdentityException {
|
|
|
|
try {
|
2017-06-23 20:57:38 +00:00
|
|
|
if (!TextSecurePreferences.isMultiDevice(context)) {
|
2018-10-11 23:45:22 +00:00
|
|
|
Log.i(TAG, "Not multi device...");
|
2017-06-23 20:57:38 +00:00
|
|
|
return;
|
|
|
|
}
|
2017-06-07 01:03:09 +00:00
|
|
|
|
2017-06-23 20:57:38 +00:00
|
|
|
if (destination == null) {
|
|
|
|
Log.w(TAG, "No destination...");
|
|
|
|
return;
|
2017-06-07 01:03:09 +00:00
|
|
|
}
|
|
|
|
|
2017-07-26 16:59:15 +00:00
|
|
|
Address canonicalDestination = Address.fromSerialized(destination);
|
2017-06-23 20:57:38 +00:00
|
|
|
VerifiedMessage.VerifiedState verifiedState = getVerifiedState(verifiedStatus);
|
2017-07-26 16:59:15 +00:00
|
|
|
VerifiedMessage verifiedMessage = new VerifiedMessage(canonicalDestination.toPhoneString(), new IdentityKey(identityKey, 0), verifiedState, timestamp);
|
2017-06-23 20:57:38 +00:00
|
|
|
|
2018-05-22 09:13:10 +00:00
|
|
|
messageSender.sendMessage(SignalServiceSyncMessage.forVerified(verifiedMessage),
|
|
|
|
UnidentifiedAccessUtil.getAccessFor(context, Recipient.from(context, Address.fromSerialized(destination), false)));
|
2017-07-26 16:59:15 +00:00
|
|
|
} catch (InvalidKeyException e) {
|
2017-06-23 20:57:38 +00:00
|
|
|
throw new IOException(e);
|
2017-06-07 01:03:09 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private VerifiedMessage.VerifiedState getVerifiedState(VerifiedStatus status) {
|
|
|
|
VerifiedMessage.VerifiedState verifiedState;
|
|
|
|
|
|
|
|
switch (status) {
|
2017-06-23 20:57:38 +00:00
|
|
|
case DEFAULT: verifiedState = VerifiedMessage.VerifiedState.DEFAULT; break;
|
|
|
|
case VERIFIED: verifiedState = VerifiedMessage.VerifiedState.VERIFIED; break;
|
2017-06-07 01:03:09 +00:00
|
|
|
case UNVERIFIED: verifiedState = VerifiedMessage.VerifiedState.UNVERIFIED; break;
|
|
|
|
default: throw new AssertionError("Unknown status: " + verifiedStatus);
|
|
|
|
}
|
|
|
|
|
|
|
|
return verifiedState;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public boolean onShouldRetry(Exception exception) {
|
|
|
|
return exception instanceof PushNetworkException;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onCanceled() {
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|