diff options
author | Christian Schneppe <christian@pix-art.de> | 2016-08-08 22:04:57 +0200 |
---|---|---|
committer | Christian Schneppe <christian@pix-art.de> | 2016-08-09 22:34:03 +0200 |
commit | bb4c255314e0beb1713050cc231f317894997f53 (patch) | |
tree | 97a413d8b0db8759d8876ac2ee0ce9b56dff5f3e /src/main/java/de/pixart/messenger/ui | |
parent | 7dd493bff1ddfb0f12d95a6ed466f42973e09051 (diff) |
reworked backup service
* automatically save database encrypted to local storage at 4 am each day
* run backup import in new thread
Diffstat (limited to 'src/main/java/de/pixart/messenger/ui')
-rw-r--r-- | src/main/java/de/pixart/messenger/ui/UpdaterActivity.java | 45 | ||||
-rw-r--r-- | src/main/java/de/pixart/messenger/ui/WelcomeActivity.java | 184 |
2 files changed, 144 insertions, 85 deletions
diff --git a/src/main/java/de/pixart/messenger/ui/UpdaterActivity.java b/src/main/java/de/pixart/messenger/ui/UpdaterActivity.java index 0a35288d7..fcd4275a4 100644 --- a/src/main/java/de/pixart/messenger/ui/UpdaterActivity.java +++ b/src/main/java/de/pixart/messenger/ui/UpdaterActivity.java @@ -26,15 +26,10 @@ import org.json.JSONException; import org.json.JSONObject; import java.io.File; -import java.io.FileInputStream; -import java.io.FileOutputStream; -import java.io.IOException; -import java.io.InputStream; -import java.io.OutputStream; import de.pixart.messenger.Config; import de.pixart.messenger.R; -import de.pixart.messenger.persistance.DatabaseBackend; +import de.pixart.messenger.services.ExportLogsService; import de.pixart.messenger.services.UpdaterWebService; public class UpdaterActivity extends Activity { @@ -62,7 +57,6 @@ public class UpdaterActivity extends Activity { installIntent.putExtra(Intent.EXTRA_RETURN_RESULT, true); installIntent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK); startActivity(installIntent); - UpdaterActivity.this.finish(); } } @@ -99,36 +93,6 @@ public class UpdaterActivity extends Activity { } } - private void ExportDatabase() throws IOException { - - // Get hold of the db: - InputStream myInput = new FileInputStream(this.getDatabasePath(DatabaseBackend.DATABASE_NAME)); - - // Set the output folder on the SDcard - File directory = new File(Environment.getExternalStorageDirectory().getAbsolutePath() + "/Pix-Art Messenger/.Database/"); - - // Create the folder if it doesn't exist: - if (!directory.exists()) { - directory.mkdirs(); - } - - // Set the output file stream up: - OutputStream myOutput = new FileOutputStream(directory.getPath() + "/Database.bak"); - - // Transfer bytes from the input file to the output file - byte[] buffer = new byte[1024]; - int length; - while ((length = myInput.read(buffer)) > 0) { - myOutput.write(buffer, 0, length); - } - - // Close and clear the streams - myOutput.flush(); - myOutput.close(); - myInput.close(); - } - - @Override public void onDestroy() { //unregister your receivers @@ -230,11 +194,8 @@ public class UpdaterActivity extends Activity { if (success) { if (isStoragePermissionGranted()) { //start backing up database - try { - ExportDatabase(); - } catch (IOException e) { - e.printStackTrace(); - } + final Intent startIntent = new Intent(getBaseContext(), ExportLogsService.class); + getBaseContext().startService(startIntent); } //Overall information about the contents of a package //This corresponds to all of the information collected from AndroidManifest.xml. diff --git a/src/main/java/de/pixart/messenger/ui/WelcomeActivity.java b/src/main/java/de/pixart/messenger/ui/WelcomeActivity.java index c92bb8cd4..b97dcbcfd 100644 --- a/src/main/java/de/pixart/messenger/ui/WelcomeActivity.java +++ b/src/main/java/de/pixart/messenger/ui/WelcomeActivity.java @@ -3,6 +3,7 @@ package de.pixart.messenger.ui; import android.Manifest; import android.app.Activity; import android.app.AlertDialog; +import android.app.ProgressDialog; import android.content.DialogInterface; import android.content.Intent; import android.content.pm.ApplicationInfo; @@ -12,29 +13,33 @@ import android.database.sqlite.SQLiteException; import android.net.Uri; import android.os.Build; import android.os.Bundle; -import android.os.Environment; import android.util.Log; +import android.view.LayoutInflater; import android.view.View; import android.widget.Button; +import android.widget.EditText; import android.widget.TextView; +import android.widget.Toast; import java.io.File; import java.io.FileInputStream; import java.io.FileOutputStream; import java.io.IOException; -import java.io.InputStream; -import java.io.OutputStream; +import java.security.InvalidKeyException; +import java.security.NoSuchAlgorithmException; import java.util.List; +import javax.crypto.NoSuchPaddingException; + import de.pixart.messenger.Config; import de.pixart.messenger.R; import de.pixart.messenger.persistance.DatabaseBackend; +import de.pixart.messenger.persistance.FileBackend; +import de.pixart.messenger.utils.EncryptDecryptFile; public class WelcomeActivity extends Activity { private static final int REQUEST_READ_EXTERNAL_STORAGE = 0XD737; - boolean dbExist = false; - boolean backup_existing = false; @Override protected void onCreate(final Bundle savedInstanceState) { @@ -43,18 +48,14 @@ public class WelcomeActivity extends Activity { //check if there is a backed up database -- if (hasStoragePermission(REQUEST_READ_EXTERNAL_STORAGE)) { - dbExist = checkDatabase(); - } - - if (dbExist) { - backup_existing = true; + BackupAvailable(); } final Button ImportDatabase = (Button) findViewById(R.id.import_database); final TextView ImportText = (TextView) findViewById(R.id.import_text); - if (backup_existing) { + if (BackupAvailable()) { ImportDatabase.setVisibility(View.VISIBLE); ImportText.setVisibility(View.VISIBLE); } @@ -62,11 +63,7 @@ public class WelcomeActivity extends Activity { ImportDatabase.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { - try { - ImportDatabase(); - } catch (IOException e) { - e.printStackTrace(); - } + enterPasswordDialog(); } }); @@ -89,16 +86,109 @@ public class WelcomeActivity extends Activity { } - private boolean checkDatabase() { + public void enterPasswordDialog() { + LayoutInflater li = LayoutInflater.from(WelcomeActivity.this); + View promptsView = li.inflate(R.layout.password, null); + final AlertDialog.Builder alertDialogBuilder = new AlertDialog.Builder(WelcomeActivity.this); + alertDialogBuilder.setView(promptsView); + final EditText userInput = (EditText) promptsView + .findViewById(R.id.password); + alertDialogBuilder.setTitle(R.string.enter_password); + alertDialogBuilder.setMessage(R.string.enter_account_password); + alertDialogBuilder + .setCancelable(false) + .setPositiveButton(R.string.ok, + new DialogInterface.OnClickListener() { + public void onClick(DialogInterface dialog,int id) { + final String password = userInput.getText().toString(); + final ProgressDialog pd = ProgressDialog.show(WelcomeActivity.this, getString(R.string.please_wait), getString(R.string.databaseimport_started), true); + if (!password.isEmpty()) { + new Thread(new Runnable() { + @Override + public void run() { + try { + checkDatabase(password); + } catch (IOException e) { + e.printStackTrace(); + } + pd.dismiss(); + } + }).start(); + } else { + AlertDialog.Builder builder = new AlertDialog.Builder(WelcomeActivity.this); + builder.setTitle(R.string.error); + builder.setMessage(R.string.password_should_not_be_empty); + builder.setNegativeButton(R.string.cancel, null); + builder.setPositiveButton(R.string.try_again, new DialogInterface.OnClickListener() { + @Override + public void onClick(DialogInterface dialog, int id) { + enterPasswordDialog(); + } + }); + builder.create().show(); + } + } + }) + .setNegativeButton(R.string.cancel, + new DialogInterface.OnClickListener() { + public void onClick(DialogInterface dialog,int id) { + Toast.makeText(WelcomeActivity.this, R.string.import_canceled, Toast.LENGTH_LONG).show(); + dialog.dismiss(); + } + } + ); + // create alert dialog + AlertDialog alertDialog = alertDialogBuilder.create(); + + // show it + alertDialog.show(); + } + + private boolean BackupAvailable() { + // Set the folder on the SDcard + File filePath = new File(FileBackend.getConversationsDirectory() + "/database/database.db.crypt"); + Log.d(Config.LOGTAG,"DB Path: " + filePath.toString()); + if(filePath.exists()) { + Log.d(Config.LOGTAG,"DB Path existing"); + return true; + } else { + Log.d(Config.LOGTAG,"DB Path not existing"); + return false; + } + } + + private void checkDatabase(String DecryptionKey) throws IOException { + // Set the folder on the SDcard + File directory = new File(FileBackend.getConversationsDirectory() + "/database/"); + // Set the input file stream up: + FileInputStream InputFile = new FileInputStream(directory.getPath() + "/database.db.crypt"); + // Temp output for DB checks + File TempFile = new File(directory.getPath() + "/database.bak"); + FileOutputStream OutputTemp = new FileOutputStream(TempFile); + + try { + Log.d(Config.LOGTAG,"Try decryption to temp with password: " + DecryptionKey); + EncryptDecryptFile.decrypt(InputFile, OutputTemp, DecryptionKey); + } catch (NoSuchAlgorithmException e) { + Log.d(Config.LOGTAG,"Database importer: decryption failed with " + e); + e.printStackTrace(); + } catch (NoSuchPaddingException e) { + Log.d(Config.LOGTAG,"Database importer: decryption failed with " + e); + e.printStackTrace(); + } catch (InvalidKeyException e) { + Log.d(Config.LOGTAG,"Database importer: decryption failed (invalid key) with " + e); + e.printStackTrace(); + } catch (IOException e) { + Log.d(Config.LOGTAG,"Database importer: decryption failed (IO) with " + e); + e.printStackTrace(); + } SQLiteDatabase checkDB = null; - String DB_PATH = Environment.getExternalStorageDirectory().getAbsolutePath() + "/Pix-Art Messenger/.Database/"; - String DB_NAME = "Database.bak"; int DB_Version = DatabaseBackend.DATABASE_VERSION; int Backup_DB_Version = 0; try { - String dbPath = DB_PATH + DB_NAME; + String dbPath = TempFile.toString(); checkDB = SQLiteDatabase.openDatabase(dbPath, null, SQLiteDatabase.OPEN_READONLY); Backup_DB_Version = checkDB.getVersion(); Log.d(Config.LOGTAG, "Backup found: " + checkDB + " Version: " + checkDB.getVersion()); @@ -111,36 +201,45 @@ public class WelcomeActivity extends Activity { if (checkDB != null) { checkDB.close(); } - if (checkDB != null && Backup_DB_Version <= DB_Version) { - return true; + Log.d(Config.LOGTAG, "checkDB = " + checkDB.toString() + ", Backup DB = " + Backup_DB_Version + ", DB = " + DB_Version); + if (checkDB != null && Backup_DB_Version != 0 && Backup_DB_Version <= DB_Version) { + Log.d(Config.LOGTAG,"Try decryption with password: " + DecryptionKey); + if (TempFile.exists()) { + Log.d(Config.LOGTAG, "Delete temp file from " + TempFile.toString()); + TempFile.delete(); + } + ImportDatabase(DecryptionKey); + } else if (checkDB != null && Backup_DB_Version == 0) { + Toast.makeText(WelcomeActivity.this, R.string.Password_wrong, Toast.LENGTH_LONG).show(); + enterPasswordDialog(); } else { - return false; + Toast.makeText(WelcomeActivity.this, R.string.Import_failed, Toast.LENGTH_LONG).show(); } } - private void ImportDatabase() throws IOException { - + private void ImportDatabase(final String DecryptionKey) throws IOException { // Set location for the db: - OutputStream myOutput = new FileOutputStream(this.getDatabasePath(DatabaseBackend.DATABASE_NAME)); - + final FileOutputStream OutputFile = new FileOutputStream(this.getDatabasePath(DatabaseBackend.DATABASE_NAME)); // Set the folder on the SDcard - File directory = new File(Environment.getExternalStorageDirectory().getAbsolutePath() + "/Pix-Art Messenger/.Database/"); - + File directory = new File(FileBackend.getConversationsDirectory() + "/database/"); // Set the input file stream up: - InputStream myInput = new FileInputStream(directory.getPath() + "/Database.bak"); - - // Transfer bytes from the input file to the output file - byte[] buffer = new byte[1024]; - int length; - while ((length = myInput.read(buffer)) > 0) { - myOutput.write(buffer, 0, length); + final FileInputStream InputFile = new FileInputStream(directory.getPath() + "/database.db.crypt"); + Log.d(Config.LOGTAG,"Starting decryption and import of backup with password: " + DecryptionKey); + try { + EncryptDecryptFile.decrypt(InputFile, OutputFile, DecryptionKey); + } catch (NoSuchAlgorithmException e) { + Log.d(Config.LOGTAG, "Database importer: decryption failed with " + e); + e.printStackTrace(); + } catch (NoSuchPaddingException e) { + Log.d(Config.LOGTAG, "Database importer: decryption failed with " + e); + e.printStackTrace(); + } catch (InvalidKeyException e) { + Log.d(Config.LOGTAG, "Database importer: decryption failed (invalid key) with " + e); + e.printStackTrace(); + } catch (IOException e) { + Log.d(Config.LOGTAG, "Database importer: decryption failed (IO) with " + e); + e.printStackTrace(); } - Log.d(Config.LOGTAG,"Starting import of backup"); - - // Close and clear the streams - myOutput.flush(); - myOutput.close(); - myInput.close(); Log.d(Config.LOGTAG, "New Features - Uninstall old version of Pix-Art Messenger"); if (isPackageInstalled("eu.siacs.conversations")) { @@ -168,7 +267,6 @@ public class WelcomeActivity extends Activity { } else { restart(); } - } private void restart() { |