2016-08-26 23:53:23 +00:00
|
|
|
package org.thoughtcrime.securesms.jobs;
|
|
|
|
|
|
|
|
import android.content.Context;
|
2018-08-09 14:15:43 +00:00
|
|
|
import android.support.annotation.NonNull;
|
2016-08-26 23:53:23 +00:00
|
|
|
|
|
|
|
import org.thoughtcrime.securesms.crypto.MasterSecret;
|
2018-05-22 09:13:10 +00:00
|
|
|
import org.thoughtcrime.securesms.crypto.UnidentifiedAccessUtil;
|
2016-08-26 23:53:23 +00:00
|
|
|
import org.thoughtcrime.securesms.database.DatabaseFactory;
|
2017-08-22 01:37:39 +00:00
|
|
|
import org.thoughtcrime.securesms.database.RecipientDatabase;
|
2018-08-16 16:47:43 +00:00
|
|
|
import org.thoughtcrime.securesms.database.RecipientDatabase.RecipientReader;
|
2016-08-26 23:53:23 +00:00
|
|
|
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.jobmanager.SafeData;
|
2018-11-06 17:22:25 +00:00
|
|
|
import org.thoughtcrime.securesms.logging.Log;
|
2017-08-01 15:56:00 +00:00
|
|
|
import org.thoughtcrime.securesms.recipients.Recipient;
|
2018-09-10 15:40:00 +00:00
|
|
|
import org.thoughtcrime.securesms.util.GroupUtil;
|
2018-10-11 23:45:22 +00:00
|
|
|
import org.thoughtcrime.securesms.util.TextSecurePreferences;
|
2016-08-26 23:53:23 +00:00
|
|
|
import org.whispersystems.signalservice.api.SignalServiceMessageSender;
|
|
|
|
import org.whispersystems.signalservice.api.crypto.UntrustedIdentityException;
|
|
|
|
import org.whispersystems.signalservice.api.messages.multidevice.BlockedListMessage;
|
|
|
|
import org.whispersystems.signalservice.api.messages.multidevice.SignalServiceSyncMessage;
|
|
|
|
import org.whispersystems.signalservice.api.push.exceptions.PushNetworkException;
|
|
|
|
|
|
|
|
import java.io.IOException;
|
|
|
|
import java.util.LinkedList;
|
|
|
|
import java.util.List;
|
|
|
|
|
|
|
|
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
|
|
|
|
2018-11-15 20:05:08 +00:00
|
|
|
public class MultiDeviceBlockedUpdateJob extends ContextJob implements InjectableType {
|
2016-08-26 23:53:23 +00:00
|
|
|
|
|
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
|
2018-05-22 09:13:10 +00:00
|
|
|
@SuppressWarnings("unused")
|
2016-08-26 23:53:23 +00:00
|
|
|
private static final String TAG = MultiDeviceBlockedUpdateJob.class.getSimpleName();
|
|
|
|
|
2017-09-16 05:38:53 +00:00
|
|
|
@Inject transient SignalServiceMessageSender messageSender;
|
2016-08-26 23:53:23 +00:00
|
|
|
|
2018-11-27 20:34:42 +00:00
|
|
|
public MultiDeviceBlockedUpdateJob(@NonNull Context context, @NonNull WorkerParameters workerParameters) {
|
|
|
|
super(context, workerParameters);
|
2018-08-09 14:15:43 +00:00
|
|
|
}
|
|
|
|
|
2016-08-26 23:53:23 +00:00
|
|
|
public MultiDeviceBlockedUpdateJob(Context context) {
|
|
|
|
super(context, JobParameters.newBuilder()
|
2018-08-09 14:15:43 +00:00
|
|
|
.withNetworkRequirement()
|
2016-08-26 23:53:23 +00:00
|
|
|
.withGroupId(MultiDeviceBlockedUpdateJob.class.getSimpleName())
|
|
|
|
.create());
|
|
|
|
}
|
|
|
|
|
2018-08-09 14:15:43 +00:00
|
|
|
@Override
|
|
|
|
protected void initialize(@NonNull SafeData data) {
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
protected @NonNull Data serialize(@NonNull Data.Builder dataBuilder) {
|
|
|
|
return dataBuilder.build();
|
|
|
|
}
|
|
|
|
|
2016-08-26 23:53:23 +00:00
|
|
|
@Override
|
2018-11-15 20:05:08 +00:00
|
|
|
public void onRun()
|
2016-08-26 23:53:23 +00:00
|
|
|
throws IOException, UntrustedIdentityException
|
|
|
|
{
|
2018-10-11 23:45:22 +00:00
|
|
|
if (!TextSecurePreferences.isMultiDevice(context)) {
|
|
|
|
Log.i(TAG, "Not multi device, aborting...");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2017-09-16 05:38:53 +00:00
|
|
|
RecipientDatabase database = DatabaseFactory.getRecipientDatabase(context);
|
2016-08-26 23:53:23 +00:00
|
|
|
|
2018-08-16 16:47:43 +00:00
|
|
|
try (RecipientReader reader = database.readerForBlocked(database.getBlocked())) {
|
2018-09-10 15:40:00 +00:00
|
|
|
List<String> blockedIndividuals = new LinkedList<>();
|
|
|
|
List<byte[]> blockedGroups = new LinkedList<>();
|
2016-08-26 23:53:23 +00:00
|
|
|
|
2018-08-16 16:47:43 +00:00
|
|
|
Recipient recipient;
|
|
|
|
|
|
|
|
while ((recipient = reader.getNext()) != null) {
|
2018-09-10 15:40:00 +00:00
|
|
|
if (recipient.isGroupRecipient()) {
|
|
|
|
blockedGroups.add(GroupUtil.getDecodedId(recipient.getAddress().toGroupString()));
|
|
|
|
} else {
|
|
|
|
blockedIndividuals.add(recipient.getAddress().serialize());
|
2018-08-16 16:47:43 +00:00
|
|
|
}
|
2016-08-26 23:53:23 +00:00
|
|
|
}
|
|
|
|
|
2018-05-22 09:13:10 +00:00
|
|
|
messageSender.sendMessage(SignalServiceSyncMessage.forBlocked(new BlockedListMessage(blockedIndividuals, blockedGroups)),
|
|
|
|
UnidentifiedAccessUtil.getAccessForSync(context));
|
2018-08-16 16:47:43 +00:00
|
|
|
}
|
2016-08-26 23:53:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2018-11-15 20:05:08 +00:00
|
|
|
public boolean onShouldRetry(Exception exception) {
|
2016-08-26 23:53:23 +00:00
|
|
|
if (exception instanceof PushNetworkException) return true;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onCanceled() {
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|