Refactor axolotl database recreation
This commit is contained in:
		
							parent
							
								
									30403a70f2
								
							
						
					
					
						commit
						7cdf2a9946
					
				| 
						 | 
				
			
			@ -283,14 +283,7 @@ public class DatabaseBackend extends SQLiteOpenHelper {
 | 
			
		|||
			cursor.close();
 | 
			
		||||
		}
 | 
			
		||||
		if (oldVersion < 15  && newVersion >= 15) {
 | 
			
		||||
			db.execSQL("DROP TABLE IF EXISTS " + AxolotlService.SQLiteAxolotlStore.SESSION_TABLENAME);
 | 
			
		||||
			db.execSQL(CREATE_SESSIONS_STATEMENT);
 | 
			
		||||
			db.execSQL("DROP TABLE IF EXISTS " + AxolotlService.SQLiteAxolotlStore.PREKEY_TABLENAME);
 | 
			
		||||
			db.execSQL(CREATE_PREKEYS_STATEMENT);
 | 
			
		||||
			db.execSQL("DROP TABLE IF EXISTS " + AxolotlService.SQLiteAxolotlStore.SIGNED_PREKEY_TABLENAME);
 | 
			
		||||
			db.execSQL(CREATE_SIGNED_PREKEYS_STATEMENT);
 | 
			
		||||
			db.execSQL("DROP TABLE IF EXISTS " + AxolotlService.SQLiteAxolotlStore.IDENTITIES_TABLENAME);
 | 
			
		||||
			db.execSQL(CREATE_IDENTITIES_STATEMENT);
 | 
			
		||||
			recreateAxolotlDb();
 | 
			
		||||
		}
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
| 
						 | 
				
			
			@ -868,4 +861,17 @@ public class DatabaseBackend extends SQLiteOpenHelper {
 | 
			
		|||
	public void storeOwnIdentityKeyPair(Account account, String name, IdentityKeyPair identityKeyPair) {
 | 
			
		||||
		storeIdentityKey(account, name, true, Base64.encodeToString(identityKeyPair.serialize(),Base64.DEFAULT));
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	public void recreateAxolotlDb() {
 | 
			
		||||
		Log.d(Config.LOGTAG, ">>> (RE)CREATING AXOLOTL DATABASE <<<");
 | 
			
		||||
		SQLiteDatabase db = this.getWritableDatabase();
 | 
			
		||||
		db.execSQL("DROP TABLE IF EXISTS " + AxolotlService.SQLiteAxolotlStore.SESSION_TABLENAME);
 | 
			
		||||
		db.execSQL(CREATE_SESSIONS_STATEMENT);
 | 
			
		||||
		db.execSQL("DROP TABLE IF EXISTS " + AxolotlService.SQLiteAxolotlStore.PREKEY_TABLENAME);
 | 
			
		||||
		db.execSQL(CREATE_PREKEYS_STATEMENT);
 | 
			
		||||
		db.execSQL("DROP TABLE IF EXISTS " + AxolotlService.SQLiteAxolotlStore.SIGNED_PREKEY_TABLENAME);
 | 
			
		||||
		db.execSQL(CREATE_SIGNED_PREKEYS_STATEMENT);
 | 
			
		||||
		db.execSQL("DROP TABLE IF EXISTS " + AxolotlService.SQLiteAxolotlStore.IDENTITIES_TABLENAME);
 | 
			
		||||
		db.execSQL(CREATE_IDENTITIES_STATEMENT);
 | 
			
		||||
	}
 | 
			
		||||
}
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
		Reference in New Issue