2017-08-15 01:11:13 +00:00
|
|
|
package org.thoughtcrime.securesms.jobs;
|
|
|
|
|
|
|
|
|
|
|
|
import android.content.Context;
|
|
|
|
import android.text.TextUtils;
|
|
|
|
import android.util.Log;
|
|
|
|
|
|
|
|
import org.thoughtcrime.securesms.database.DatabaseFactory;
|
2017-08-22 01:37:39 +00:00
|
|
|
import org.thoughtcrime.securesms.database.RecipientDatabase;
|
2017-08-15 01:11:13 +00:00
|
|
|
import org.thoughtcrime.securesms.dependencies.InjectableType;
|
2018-06-18 19:27:04 +00:00
|
|
|
import org.thoughtcrime.securesms.jobmanager.JobParameters;
|
|
|
|
import org.thoughtcrime.securesms.jobmanager.requirements.NetworkRequirement;
|
2017-08-16 04:03:31 +00:00
|
|
|
import org.thoughtcrime.securesms.profiles.AvatarHelper;
|
2017-08-15 01:11:13 +00:00
|
|
|
import org.thoughtcrime.securesms.recipients.Recipient;
|
|
|
|
import org.thoughtcrime.securesms.util.Util;
|
|
|
|
import org.whispersystems.signalservice.api.SignalServiceMessageReceiver;
|
|
|
|
import org.whispersystems.signalservice.api.push.exceptions.PushNetworkException;
|
|
|
|
|
|
|
|
import java.io.File;
|
|
|
|
import java.io.FileOutputStream;
|
|
|
|
import java.io.IOException;
|
|
|
|
import java.io.InputStream;
|
|
|
|
|
|
|
|
import javax.inject.Inject;
|
|
|
|
|
|
|
|
public class RetrieveProfileAvatarJob extends ContextJob implements InjectableType {
|
|
|
|
|
|
|
|
private static final String TAG = RetrieveProfileAvatarJob.class.getSimpleName();
|
|
|
|
|
|
|
|
private static final int MAX_PROFILE_SIZE_BYTES = 20 * 1024 * 1024;
|
|
|
|
|
|
|
|
@Inject SignalServiceMessageReceiver receiver;
|
|
|
|
|
|
|
|
private final String profileAvatar;
|
|
|
|
private final Recipient recipient;
|
|
|
|
|
|
|
|
public RetrieveProfileAvatarJob(Context context, Recipient recipient, String profileAvatar) {
|
|
|
|
super(context, JobParameters.newBuilder()
|
|
|
|
.withGroupId(RetrieveProfileAvatarJob.class.getSimpleName() + recipient.getAddress().serialize())
|
|
|
|
.withRequirement(new NetworkRequirement(context))
|
|
|
|
.create());
|
|
|
|
|
|
|
|
this.recipient = recipient;
|
|
|
|
this.profileAvatar = profileAvatar;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onAdded() {}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onRun() throws IOException {
|
2017-08-22 17:44:04 +00:00
|
|
|
RecipientDatabase database = DatabaseFactory.getRecipientDatabase(context);
|
|
|
|
byte[] profileKey = recipient.resolve().getProfileKey();
|
2017-08-15 01:11:13 +00:00
|
|
|
|
2017-08-22 17:44:04 +00:00
|
|
|
if (profileKey == null) {
|
2017-08-15 01:11:13 +00:00
|
|
|
Log.w(TAG, "Recipient profile key is gone!");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2017-08-22 17:44:04 +00:00
|
|
|
if (Util.equals(profileAvatar, recipient.resolve().getProfileAvatar())) {
|
2017-08-15 01:11:13 +00:00
|
|
|
Log.w(TAG, "Already retrieved profile avatar: " + profileAvatar);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (TextUtils.isEmpty(profileAvatar)) {
|
|
|
|
Log.w(TAG, "Removing profile avatar for: " + recipient.getAddress().serialize());
|
2017-08-16 04:03:31 +00:00
|
|
|
AvatarHelper.delete(context, recipient.getAddress());
|
2017-08-22 17:44:04 +00:00
|
|
|
database.setProfileAvatar(recipient, profileAvatar);
|
2017-08-15 01:11:13 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
File downloadDestination = File.createTempFile("avatar", "jpg", context.getCacheDir());
|
|
|
|
|
|
|
|
try {
|
2017-08-22 17:44:04 +00:00
|
|
|
InputStream avatarStream = receiver.retrieveProfileAvatar(profileAvatar, downloadDestination, profileKey, MAX_PROFILE_SIZE_BYTES);
|
2017-08-15 01:11:13 +00:00
|
|
|
File decryptDestination = File.createTempFile("avatar", "jpg", context.getCacheDir());
|
|
|
|
|
|
|
|
Util.copy(avatarStream, new FileOutputStream(decryptDestination));
|
2017-08-16 04:03:31 +00:00
|
|
|
decryptDestination.renameTo(AvatarHelper.getAvatarFile(context, recipient.getAddress()));
|
2017-08-15 01:11:13 +00:00
|
|
|
} finally {
|
|
|
|
if (downloadDestination != null) downloadDestination.delete();
|
|
|
|
}
|
|
|
|
|
2017-08-22 17:44:04 +00:00
|
|
|
database.setProfileAvatar(recipient, profileAvatar);
|
2017-08-15 01:11:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public boolean onShouldRetry(Exception e) {
|
|
|
|
Log.w(TAG, e);
|
|
|
|
if (e instanceof PushNetworkException) return true;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onCanceled() {
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|