mirror of
https://github.com/oxen-io/session-android.git
synced 2024-11-24 10:35:19 +00:00
c4339813e6
closes #3222
246 lines
8.9 KiB
Java
246 lines
8.9 KiB
Java
package org.thoughtcrime.securesms;
|
|
|
|
import android.app.ProgressDialog;
|
|
import android.content.Context;
|
|
import android.content.DialogInterface;
|
|
import android.content.Intent;
|
|
import android.os.AsyncTask;
|
|
import android.os.Bundle;
|
|
import android.support.v4.app.Fragment;
|
|
import android.support.v7.app.AlertDialog;
|
|
import android.util.Log;
|
|
import android.view.LayoutInflater;
|
|
import android.view.View;
|
|
import android.view.ViewGroup;
|
|
import android.widget.Toast;
|
|
|
|
import org.thoughtcrime.securesms.crypto.MasterSecret;
|
|
import org.thoughtcrime.securesms.database.DatabaseFactory;
|
|
import org.thoughtcrime.securesms.database.EncryptedBackupExporter;
|
|
import org.thoughtcrime.securesms.database.NoExternalStorageException;
|
|
import org.thoughtcrime.securesms.database.PlaintextBackupImporter;
|
|
import org.thoughtcrime.securesms.service.ApplicationMigrationService;
|
|
import org.thoughtcrime.securesms.service.KeyCachingService;
|
|
|
|
import java.io.IOException;
|
|
|
|
|
|
public class ImportFragment extends Fragment {
|
|
|
|
private static final int SUCCESS = 0;
|
|
private static final int NO_SD_CARD = 1;
|
|
private static final int ERROR_IO = 2;
|
|
|
|
private MasterSecret masterSecret;
|
|
private ProgressDialog progressDialog;
|
|
|
|
public void setMasterSecret(MasterSecret masterSecret) {
|
|
this.masterSecret = masterSecret;
|
|
}
|
|
|
|
@Override
|
|
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle bundle) {
|
|
View layout = inflater.inflate(R.layout.import_fragment, container, false);
|
|
View importSmsView = layout.findViewById(R.id.import_sms );
|
|
View importEncryptedView = layout.findViewById(R.id.import_encrypted_backup);
|
|
View importPlaintextView = layout.findViewById(R.id.import_plaintext_backup);
|
|
|
|
importSmsView.setOnClickListener(new View.OnClickListener() {
|
|
@Override
|
|
public void onClick(View v) {
|
|
handleImportSms();
|
|
}
|
|
});
|
|
|
|
importEncryptedView.setOnClickListener(new View.OnClickListener() {
|
|
@Override
|
|
public void onClick(View v) {
|
|
handleImportEncryptedBackup();
|
|
}
|
|
});
|
|
|
|
importPlaintextView.setOnClickListener(new View.OnClickListener() {
|
|
@Override
|
|
public void onClick(View v) {
|
|
handleImportPlaintextBackup();
|
|
}
|
|
});
|
|
|
|
return layout;
|
|
}
|
|
|
|
@Override
|
|
public void onDestroy() {
|
|
super.onDestroy();
|
|
|
|
if (progressDialog != null && progressDialog.isShowing()) {
|
|
progressDialog.dismiss();
|
|
progressDialog = null;
|
|
}
|
|
}
|
|
|
|
private void handleImportSms() {
|
|
AlertDialog.Builder builder = new AlertDialog.Builder(getActivity());
|
|
builder.setIconAttribute(R.attr.dialog_info_icon);
|
|
builder.setTitle(getActivity().getString(R.string.ImportFragment_import_system_sms_database));
|
|
builder.setMessage(getActivity().getString(R.string.ImportFragment_this_will_import_messages_from_the_system));
|
|
builder.setPositiveButton(getActivity().getString(R.string.ImportFragment_import), new AlertDialog.OnClickListener() {
|
|
@Override
|
|
public void onClick(DialogInterface dialog, int which) {
|
|
Intent intent = new Intent(getActivity(), ApplicationMigrationService.class);
|
|
intent.setAction(ApplicationMigrationService.MIGRATE_DATABASE);
|
|
intent.putExtra("master_secret", masterSecret);
|
|
getActivity().startService(intent);
|
|
|
|
Intent nextIntent = new Intent(getActivity(), ConversationListActivity.class);
|
|
|
|
Intent activityIntent = new Intent(getActivity(), DatabaseMigrationActivity.class);
|
|
activityIntent.putExtra("next_intent", nextIntent);
|
|
getActivity().startActivity(activityIntent);
|
|
}
|
|
});
|
|
builder.setNegativeButton(getActivity().getString(R.string.ImportFragment_cancel), null);
|
|
builder.show();
|
|
}
|
|
|
|
private void handleImportEncryptedBackup() {
|
|
AlertDialog.Builder builder = new AlertDialog.Builder(getActivity());
|
|
builder.setIconAttribute(R.attr.dialog_alert_icon);
|
|
builder.setTitle(getActivity().getString(R.string.ImportFragment_restore_encrypted_backup));
|
|
builder.setMessage(getActivity().getString(R.string.ImportFragment_restoring_an_encrypted_backup_will_completely_replace_your_existing_keys));
|
|
builder.setPositiveButton(getActivity().getString(R.string.ImportFragment_restore), new AlertDialog.OnClickListener() {
|
|
@Override
|
|
public void onClick(DialogInterface dialog, int which) {
|
|
new ImportEncryptedBackupTask().execute();
|
|
}
|
|
});
|
|
builder.setNegativeButton(getActivity().getString(R.string.ImportFragment_cancel), null);
|
|
builder.show();
|
|
}
|
|
|
|
private void handleImportPlaintextBackup() {
|
|
AlertDialog.Builder builder = new AlertDialog.Builder(getActivity());
|
|
builder.setIconAttribute(R.attr.dialog_alert_icon);
|
|
builder.setTitle(getActivity().getString(R.string.ImportFragment_import_plaintext_backup));
|
|
builder.setMessage(getActivity().getString(R.string.ImportFragment_this_will_import_messages_from_a_plaintext_backup));
|
|
builder.setPositiveButton(getActivity().getString(R.string.ImportFragment_import), new AlertDialog.OnClickListener() {
|
|
@Override
|
|
public void onClick(DialogInterface dialog, int which) {
|
|
new ImportPlaintextBackupTask().execute();
|
|
}
|
|
});
|
|
builder.setNegativeButton(getActivity().getString(R.string.ImportFragment_cancel), null);
|
|
builder.show();
|
|
}
|
|
|
|
private class ImportPlaintextBackupTask extends AsyncTask<Void, Void, Integer> {
|
|
|
|
@Override
|
|
protected void onPreExecute() {
|
|
progressDialog = ProgressDialog.show(getActivity(),
|
|
getActivity().getString(R.string.ImportFragment_importing),
|
|
getActivity().getString(R.string.ImportFragment_import_plaintext_backup_elipse),
|
|
true, false);
|
|
}
|
|
|
|
protected void onPostExecute(Integer result) {
|
|
Context context = getActivity();
|
|
|
|
if (progressDialog != null)
|
|
progressDialog.dismiss();
|
|
|
|
if (context == null)
|
|
return;
|
|
|
|
switch (result) {
|
|
case NO_SD_CARD:
|
|
Toast.makeText(context,
|
|
context.getString(R.string.ImportFragment_no_plaintext_backup_found),
|
|
Toast.LENGTH_LONG).show();
|
|
break;
|
|
case ERROR_IO:
|
|
Toast.makeText(context,
|
|
context.getString(R.string.ImportFragment_error_importing_backup),
|
|
Toast.LENGTH_LONG).show();
|
|
break;
|
|
case SUCCESS:
|
|
Toast.makeText(context,
|
|
context.getString(R.string.ImportFragment_import_complete),
|
|
Toast.LENGTH_LONG).show();
|
|
break;
|
|
}
|
|
}
|
|
|
|
@Override
|
|
protected Integer doInBackground(Void... params) {
|
|
try {
|
|
PlaintextBackupImporter.importPlaintextFromSd(getActivity(), masterSecret);
|
|
return SUCCESS;
|
|
} catch (NoExternalStorageException e) {
|
|
Log.w("ImportFragment", e);
|
|
return NO_SD_CARD;
|
|
} catch (IOException e) {
|
|
Log.w("ImportFragment", e);
|
|
return ERROR_IO;
|
|
}
|
|
}
|
|
}
|
|
|
|
private class ImportEncryptedBackupTask extends AsyncTask<Void, Void, Integer> {
|
|
|
|
@Override
|
|
protected void onPreExecute() {
|
|
progressDialog = ProgressDialog.show(getActivity(),
|
|
getActivity().getString(R.string.ImportFragment_restoring),
|
|
getActivity().getString(R.string.ImportFragment_restoring_encrypted_backup),
|
|
true, false);
|
|
}
|
|
|
|
protected void onPostExecute(Integer result) {
|
|
Context context = getActivity();
|
|
|
|
if (progressDialog != null)
|
|
progressDialog.dismiss();
|
|
|
|
if (context == null)
|
|
return;
|
|
|
|
switch (result) {
|
|
case NO_SD_CARD:
|
|
Toast.makeText(context,
|
|
context.getString(R.string.ImportFragment_no_encrypted_backup_found),
|
|
Toast.LENGTH_LONG).show();
|
|
break;
|
|
case ERROR_IO:
|
|
Toast.makeText(context,
|
|
context.getString(R.string.ImportFragment_error_importing_backup),
|
|
Toast.LENGTH_LONG).show();
|
|
break;
|
|
case SUCCESS:
|
|
DatabaseFactory.getInstance(context).reset(context);
|
|
Intent intent = new Intent(context, KeyCachingService.class);
|
|
intent.setAction(KeyCachingService.CLEAR_KEY_ACTION);
|
|
context.startService(intent);
|
|
|
|
Toast.makeText(context,
|
|
context.getString(R.string.ImportFragment_restore_complete),
|
|
Toast.LENGTH_LONG).show();
|
|
}
|
|
}
|
|
|
|
@Override
|
|
protected Integer doInBackground(Void... params) {
|
|
try {
|
|
EncryptedBackupExporter.importFromSd(getActivity());
|
|
return SUCCESS;
|
|
} catch (NoExternalStorageException e) {
|
|
Log.w("ImportFragment", e);
|
|
return NO_SD_CARD;
|
|
} catch (IOException e) {
|
|
Log.w("ImportFragment", e);
|
|
return ERROR_IO;
|
|
}
|
|
}
|
|
}
|
|
|
|
} |