mirror of
https://github.com/oxen-io/session-android.git
synced 2023-12-14 02:53:01 +01:00
87e6aa48bb
Should help solve most of our pressing targetSdk=26 migration issues.
111 lines
3.7 KiB
Java
111 lines
3.7 KiB
Java
package org.thoughtcrime.securesms.jobs;
|
|
|
|
|
|
import android.Manifest;
|
|
import android.content.Context;
|
|
import android.support.annotation.NonNull;
|
|
|
|
import org.thoughtcrime.securesms.jobmanager.SafeData;
|
|
import org.thoughtcrime.securesms.logging.Log;
|
|
|
|
import org.thoughtcrime.securesms.R;
|
|
import org.thoughtcrime.securesms.backup.FullBackupExporter;
|
|
import org.thoughtcrime.securesms.crypto.AttachmentSecretProvider;
|
|
import org.thoughtcrime.securesms.database.DatabaseFactory;
|
|
import org.thoughtcrime.securesms.database.NoExternalStorageException;
|
|
import org.thoughtcrime.securesms.jobmanager.JobParameters;
|
|
import org.thoughtcrime.securesms.notifications.NotificationChannels;
|
|
import org.thoughtcrime.securesms.permissions.Permissions;
|
|
import org.thoughtcrime.securesms.service.GenericForegroundService;
|
|
import org.thoughtcrime.securesms.util.BackupUtil;
|
|
import org.thoughtcrime.securesms.util.StorageUtil;
|
|
import org.thoughtcrime.securesms.util.TextSecurePreferences;
|
|
|
|
import java.io.File;
|
|
import java.io.IOException;
|
|
import java.text.SimpleDateFormat;
|
|
import java.util.Date;
|
|
import java.util.Locale;
|
|
|
|
import androidx.work.Data;
|
|
|
|
public class LocalBackupJob extends ContextJob {
|
|
|
|
private static final String TAG = LocalBackupJob.class.getSimpleName();
|
|
|
|
public LocalBackupJob() {
|
|
super(null, null);
|
|
}
|
|
|
|
public LocalBackupJob(@NonNull Context context) {
|
|
super(context, JobParameters.newBuilder()
|
|
.withGroupId("__LOCAL_BACKUP__")
|
|
.withDuplicatesIgnored(true)
|
|
.create());
|
|
}
|
|
|
|
@Override
|
|
protected void initialize(@NonNull SafeData data) {
|
|
}
|
|
|
|
@Override
|
|
protected @NonNull Data serialize(@NonNull Data.Builder dataBuilder) {
|
|
return dataBuilder.build();
|
|
}
|
|
|
|
@Override
|
|
public void onRun() throws NoExternalStorageException, IOException {
|
|
Log.i(TAG, "Executing backup job...");
|
|
|
|
if (!Permissions.hasAll(context, Manifest.permission.WRITE_EXTERNAL_STORAGE)) {
|
|
throw new IOException("No external storage permission!");
|
|
}
|
|
|
|
GenericForegroundService.startForegroundTask(context,
|
|
context.getString(R.string.LocalBackupJob_creating_backup),
|
|
NotificationChannels.BACKUPS);
|
|
|
|
try {
|
|
String backupPassword = TextSecurePreferences.getBackupPassphrase(context);
|
|
File backupDirectory = StorageUtil.getBackupDirectory();
|
|
String timestamp = new SimpleDateFormat("yyyy-MM-dd-HH-mm-ss", Locale.US).format(new Date());
|
|
String fileName = String.format("signal-%s.backup", timestamp);
|
|
File backupFile = new File(backupDirectory, fileName);
|
|
|
|
if (backupFile.exists()) {
|
|
throw new IOException("Backup file already exists?");
|
|
}
|
|
|
|
if (backupPassword == null) {
|
|
throw new IOException("Backup password is null");
|
|
}
|
|
|
|
File tempFile = File.createTempFile("backup", "tmp", StorageUtil.getBackupCacheDirectory(context));
|
|
|
|
FullBackupExporter.export(context,
|
|
AttachmentSecretProvider.getInstance(context).getOrCreateAttachmentSecret(),
|
|
DatabaseFactory.getBackupDatabase(context),
|
|
tempFile,
|
|
backupPassword);
|
|
|
|
if (!tempFile.renameTo(backupFile)) {
|
|
tempFile.delete();
|
|
throw new IOException("Renaming temporary backup file failed!");
|
|
}
|
|
|
|
BackupUtil.deleteOldBackups();
|
|
} finally {
|
|
GenericForegroundService.stopForegroundTask(context);
|
|
}
|
|
}
|
|
|
|
@Override
|
|
public boolean onShouldRetry(Exception e) {
|
|
return false;
|
|
}
|
|
|
|
@Override
|
|
public void onCanceled() {
|
|
|
|
}
|
|
}
|