70 lines
2.3 KiB
Java
70 lines
2.3 KiB
Java
package org.thoughtcrime.securesms.jobs;
|
|
|
|
import android.content.Context;
|
|
import android.os.PowerManager;
|
|
import android.support.annotation.NonNull;
|
|
import android.support.annotation.Nullable;
|
|
import org.thoughtcrime.securesms.logging.Log;
|
|
|
|
import org.thoughtcrime.securesms.jobmanager.JobParameters;
|
|
import org.thoughtcrime.securesms.jobmanager.requirements.NetworkRequirement;
|
|
import org.thoughtcrime.securesms.recipients.Recipient;
|
|
import org.thoughtcrime.securesms.util.DirectoryHelper;
|
|
import org.whispersystems.signalservice.api.push.exceptions.PushNetworkException;
|
|
|
|
import java.io.IOException;
|
|
|
|
public class DirectoryRefreshJob extends ContextJob {
|
|
|
|
private static final String TAG = DirectoryRefreshJob.class.getSimpleName();
|
|
|
|
@Nullable private transient Recipient recipient;
|
|
private transient boolean notifyOfNewUsers;
|
|
|
|
public DirectoryRefreshJob(@NonNull Context context, boolean notifyOfNewUsers) {
|
|
this(context, null, notifyOfNewUsers);
|
|
}
|
|
|
|
public DirectoryRefreshJob(@NonNull Context context,
|
|
@Nullable Recipient recipient,
|
|
boolean notifyOfNewUsers)
|
|
{
|
|
super(context, JobParameters.newBuilder()
|
|
.withGroupId(DirectoryRefreshJob.class.getSimpleName())
|
|
.withRequirement(new NetworkRequirement(context))
|
|
.create());
|
|
|
|
this.recipient = recipient;
|
|
this.notifyOfNewUsers = notifyOfNewUsers;
|
|
}
|
|
|
|
@Override
|
|
public void onAdded() {}
|
|
|
|
@Override
|
|
public void onRun() throws IOException {
|
|
Log.i(TAG, "DirectoryRefreshJob.onRun()");
|
|
PowerManager powerManager = (PowerManager) context.getSystemService(Context.POWER_SERVICE);
|
|
PowerManager.WakeLock wakeLock = powerManager.newWakeLock(PowerManager.PARTIAL_WAKE_LOCK, "Directory Refresh");
|
|
|
|
try {
|
|
wakeLock.acquire();
|
|
if (recipient == null) {
|
|
DirectoryHelper.refreshDirectory(context, notifyOfNewUsers);
|
|
} else {
|
|
DirectoryHelper.refreshDirectoryFor(context, recipient);
|
|
}
|
|
} finally {
|
|
if (wakeLock.isHeld()) wakeLock.release();
|
|
}
|
|
}
|
|
|
|
@Override
|
|
public boolean onShouldRetry(Exception exception) {
|
|
if (exception instanceof PushNetworkException) return true;
|
|
return false;
|
|
}
|
|
|
|
@Override
|
|
public void onCanceled() {}
|
|
}
|