2018-02-26 17:58:18 +00:00
|
|
|
package org.thoughtcrime.securesms.jobs;
|
|
|
|
|
|
|
|
|
|
|
|
import android.Manifest;
|
|
|
|
import android.support.annotation.NonNull;
|
2018-08-09 14:15:43 +00:00
|
|
|
|
2019-02-07 17:47:06 +00:00
|
|
|
import org.thoughtcrime.securesms.backup.BackupPassphrase;
|
2019-03-28 15:56:35 +00:00
|
|
|
import org.thoughtcrime.securesms.jobmanager.Data;
|
|
|
|
import org.thoughtcrime.securesms.jobmanager.Job;
|
2018-08-01 15:09:24 +00:00
|
|
|
import org.thoughtcrime.securesms.logging.Log;
|
2018-02-26 17:58:18 +00:00
|
|
|
|
2019-07-24 02:30:23 +00:00
|
|
|
import network.loki.messenger.R;
|
2018-02-26 17:58:18 +00:00
|
|
|
import org.thoughtcrime.securesms.backup.FullBackupExporter;
|
|
|
|
import org.thoughtcrime.securesms.crypto.AttachmentSecretProvider;
|
|
|
|
import org.thoughtcrime.securesms.database.DatabaseFactory;
|
|
|
|
import org.thoughtcrime.securesms.database.NoExternalStorageException;
|
2018-08-06 16:20:24 +00:00
|
|
|
import org.thoughtcrime.securesms.notifications.NotificationChannels;
|
2018-02-26 17:58:18 +00:00
|
|
|
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 java.io.File;
|
|
|
|
import java.io.IOException;
|
|
|
|
import java.text.SimpleDateFormat;
|
|
|
|
import java.util.Date;
|
|
|
|
import java.util.Locale;
|
2018-08-09 14:15:43 +00:00
|
|
|
|
2019-03-28 15:56:35 +00:00
|
|
|
public class LocalBackupJob extends BaseJob {
|
2018-02-26 17:58:18 +00:00
|
|
|
|
2019-03-28 15:56:35 +00:00
|
|
|
public static final String KEY = "LocalBackupJob";
|
2018-02-26 17:58:18 +00:00
|
|
|
|
|
|
|
private static final String TAG = LocalBackupJob.class.getSimpleName();
|
|
|
|
|
2019-03-28 15:56:35 +00:00
|
|
|
public LocalBackupJob() {
|
|
|
|
this(new Job.Parameters.Builder()
|
|
|
|
.setQueue("__LOCAL_BACKUP__")
|
|
|
|
.setMaxInstances(1)
|
|
|
|
.setMaxAttempts(3)
|
|
|
|
.build());
|
2018-08-09 14:15:43 +00:00
|
|
|
}
|
|
|
|
|
2019-03-28 15:56:35 +00:00
|
|
|
private LocalBackupJob(@NonNull Job.Parameters parameters) {
|
|
|
|
super(parameters);
|
2018-02-26 17:58:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2019-03-28 15:56:35 +00:00
|
|
|
public @NonNull Data serialize() {
|
|
|
|
return Data.EMPTY;
|
2018-08-09 14:15:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2019-03-28 15:56:35 +00:00
|
|
|
public @NonNull String getFactoryKey() {
|
|
|
|
return KEY;
|
2018-08-09 14:15:43 +00:00
|
|
|
}
|
2018-02-26 17:58:18 +00:00
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onRun() throws NoExternalStorageException, IOException {
|
2018-08-02 13:25:33 +00:00
|
|
|
Log.i(TAG, "Executing backup job...");
|
2018-02-26 17:58:18 +00:00
|
|
|
|
|
|
|
if (!Permissions.hasAll(context, Manifest.permission.WRITE_EXTERNAL_STORAGE)) {
|
|
|
|
throw new IOException("No external storage permission!");
|
|
|
|
}
|
|
|
|
|
2018-04-06 17:13:53 +00:00
|
|
|
GenericForegroundService.startForegroundTask(context,
|
2018-08-06 16:20:24 +00:00
|
|
|
context.getString(R.string.LocalBackupJob_creating_backup),
|
2018-10-28 06:34:18 +00:00
|
|
|
NotificationChannels.BACKUPS,
|
|
|
|
R.drawable.ic_signal_backup);
|
2018-02-26 17:58:18 +00:00
|
|
|
|
|
|
|
try {
|
2019-02-07 17:47:06 +00:00
|
|
|
String backupPassword = BackupPassphrase.get(context);
|
2018-06-29 00:38:59 +00:00
|
|
|
File backupDirectory = StorageUtil.getBackupDirectory();
|
2018-02-26 17:58:18 +00:00
|
|
|
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");
|
|
|
|
}
|
|
|
|
|
2018-05-24 16:57:16 +00:00
|
|
|
File tempFile = File.createTempFile("backup", "tmp", StorageUtil.getBackupCacheDirectory(context));
|
2018-02-26 17:58:18 +00:00
|
|
|
|
|
|
|
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!");
|
|
|
|
}
|
|
|
|
|
2018-06-29 00:38:59 +00:00
|
|
|
BackupUtil.deleteOldBackups();
|
2018-02-26 17:58:18 +00:00
|
|
|
} finally {
|
|
|
|
GenericForegroundService.stopForegroundTask(context);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2019-05-22 16:51:56 +00:00
|
|
|
public boolean onShouldRetry(@NonNull Exception e) {
|
2018-02-26 17:58:18 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onCanceled() {
|
2019-03-28 15:56:35 +00:00
|
|
|
}
|
2018-02-26 17:58:18 +00:00
|
|
|
|
2019-03-28 15:56:35 +00:00
|
|
|
public static class Factory implements Job.Factory<LocalBackupJob> {
|
|
|
|
@Override
|
|
|
|
public @NonNull LocalBackupJob create(@NonNull Parameters parameters, @NonNull Data data) {
|
|
|
|
return new LocalBackupJob(parameters);
|
|
|
|
}
|
2018-02-26 17:58:18 +00:00
|
|
|
}
|
|
|
|
}
|