2013-02-04 08:13:07 +00:00
|
|
|
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;
|
|
|
|
|
2014-12-12 01:13:01 +00:00
|
|
|
import org.thoughtcrime.securesms.R;
|
2014-04-21 15:40:19 +00:00
|
|
|
import org.whispersystems.libaxolotl.InvalidMessageException;
|
2014-11-03 23:16:04 +00:00
|
|
|
import org.thoughtcrime.securesms.crypto.MasterCipher;
|
2013-02-04 08:13:07 +00:00
|
|
|
|
|
|
|
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;
|
|
|
|
}
|
2014-12-12 01:13:01 +00:00
|
|
|
|
|
|
|
public String getSnippet(Context context) {
|
|
|
|
switch (type) {
|
|
|
|
case TEXT: return value;
|
|
|
|
case IMAGE: return context.getString(R.string.DraftDatabase_Draft_image_snippet);
|
|
|
|
case VIDEO: return context.getString(R.string.DraftDatabase_Draft_video_snippet);
|
|
|
|
case AUDIO: return context.getString(R.string.DraftDatabase_Draft_audio_snippet);
|
|
|
|
default: return null;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public static class Drafts extends LinkedList<Draft> {
|
|
|
|
private Draft getDraftOfType(String type) {
|
|
|
|
for (Draft draft : this) {
|
|
|
|
if (Draft.TEXT.equals(draft.getType())) {
|
|
|
|
return draft;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getSnippet(Context context) {
|
|
|
|
Draft textDraft = getDraftOfType(Draft.TEXT);
|
|
|
|
if (textDraft != null) {
|
|
|
|
return textDraft.getSnippet(context);
|
|
|
|
} else if (size() > 0) {
|
|
|
|
return get(0).getSnippet(context);
|
|
|
|
} else {
|
|
|
|
return "";
|
|
|
|
}
|
|
|
|
}
|
2013-02-04 08:13:07 +00:00
|
|
|
}
|
|
|
|
}
|