mirror of
https://github.com/oxen-io/session-android.git
synced 2024-11-25 02:55:23 +00:00
103 lines
3.3 KiB
Java
103 lines
3.3 KiB
Java
|
package org.thoughtcrime.securesms.database;
|
||
|
|
||
|
import android.content.ContentValues;
|
||
|
import android.content.Context;
|
||
|
import android.database.Cursor;
|
||
|
import android.database.sqlite.SQLiteDatabase;
|
||
|
import android.database.sqlite.SQLiteOpenHelper;
|
||
|
import android.util.Log;
|
||
|
|
||
|
import org.thoughtcrime.securesms.crypto.MasterCipher;
|
||
|
import org.thoughtcrime.securesms.util.InvalidMessageException;
|
||
|
|
||
|
import java.util.LinkedList;
|
||
|
import java.util.List;
|
||
|
|
||
|
public class DraftDatabase extends Database {
|
||
|
|
||
|
private static final String TABLE_NAME = "drafts";
|
||
|
public static final String ID = "_id";
|
||
|
public static final String THREAD_ID = "thread_id";
|
||
|
public static final String DRAFT_TYPE = "type";
|
||
|
public static final String DRAFT_VALUE = "value";
|
||
|
|
||
|
public static final String CREATE_TABLE = "CREATE TABLE " + TABLE_NAME + " (" + ID + " INTEGER PRIMARY KEY, " +
|
||
|
THREAD_ID + " INTEGER, " + DRAFT_TYPE + " TEXT, " + DRAFT_VALUE + " TEXT);";
|
||
|
|
||
|
public static final String[] CREATE_INDEXS = {
|
||
|
"CREATE INDEX IF NOT EXISTS draft_thread_index ON " + TABLE_NAME + " (" + THREAD_ID + ");",
|
||
|
};
|
||
|
|
||
|
public DraftDatabase(Context context, SQLiteOpenHelper databaseHelper) {
|
||
|
super(context, databaseHelper);
|
||
|
}
|
||
|
|
||
|
public void insertDrafts(MasterCipher masterCipher, long threadId, List<Draft> drafts) {
|
||
|
SQLiteDatabase db = databaseHelper.getWritableDatabase();
|
||
|
|
||
|
for (Draft draft : drafts) {
|
||
|
ContentValues values = new ContentValues(3);
|
||
|
values.put(THREAD_ID, threadId);
|
||
|
values.put(DRAFT_TYPE, masterCipher.encryptBody(draft.getType()));
|
||
|
values.put(DRAFT_VALUE, masterCipher.encryptBody(draft.getValue()));
|
||
|
|
||
|
db.insert(TABLE_NAME, null, values);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
public void clearDrafts(long threadId) {
|
||
|
SQLiteDatabase db = databaseHelper.getWritableDatabase();
|
||
|
db.delete(TABLE_NAME, THREAD_ID + " = ?", new String[] {threadId+""});
|
||
|
}
|
||
|
|
||
|
public List<Draft> getDrafts(MasterCipher masterCipher, long threadId) {
|
||
|
SQLiteDatabase db = databaseHelper.getReadableDatabase();
|
||
|
List<Draft> results = new LinkedList<Draft>();
|
||
|
Cursor cursor = null;
|
||
|
|
||
|
try {
|
||
|
cursor = db.query(TABLE_NAME, null, THREAD_ID + " = ?", new String[] {threadId+""}, null, null, null);
|
||
|
|
||
|
while (cursor != null && cursor.moveToNext()) {
|
||
|
try {
|
||
|
String encryptedType = cursor.getString(cursor.getColumnIndexOrThrow(DRAFT_TYPE));
|
||
|
String encryptedValue = cursor.getString(cursor.getColumnIndexOrThrow(DRAFT_VALUE));
|
||
|
|
||
|
results.add(new Draft(masterCipher.decryptBody(encryptedType),
|
||
|
masterCipher.decryptBody(encryptedValue)));
|
||
|
} catch (InvalidMessageException ime) {
|
||
|
Log.w("DraftDatabase", ime);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
return results;
|
||
|
} finally {
|
||
|
if (cursor != null)
|
||
|
cursor.close();
|
||
|
}
|
||
|
}
|
||
|
|
||
|
public static class Draft {
|
||
|
public static final String TEXT = "text";
|
||
|
public static final String IMAGE = "image";
|
||
|
public static final String VIDEO = "video";
|
||
|
public static final String AUDIO = "audio";
|
||
|
|
||
|
private final String type;
|
||
|
private final String value;
|
||
|
|
||
|
public Draft(String type, String value) {
|
||
|
this.type = type;
|
||
|
this.value = value;
|
||
|
}
|
||
|
|
||
|
public String getType() {
|
||
|
return type;
|
||
|
}
|
||
|
|
||
|
public String getValue() {
|
||
|
return value;
|
||
|
}
|
||
|
}
|
||
|
}
|