2014-01-14 00:26:43 -08:00
|
|
|
package org.thoughtcrime.securesms.database;
|
|
|
|
|
|
|
|
|
|
|
|
import android.content.ContentValues;
|
|
|
|
import android.content.Context;
|
|
|
|
import android.database.Cursor;
|
|
|
|
import android.database.sqlite.SQLiteOpenHelper;
|
|
|
|
import android.graphics.Bitmap;
|
2014-02-02 19:38:06 -08:00
|
|
|
import android.util.Log;
|
2014-01-14 00:26:43 -08:00
|
|
|
|
2014-02-02 19:38:06 -08:00
|
|
|
import org.thoughtcrime.securesms.recipients.Recipient;
|
|
|
|
import org.thoughtcrime.securesms.recipients.RecipientFactory;
|
|
|
|
import org.thoughtcrime.securesms.recipients.RecipientFormattingException;
|
|
|
|
import org.thoughtcrime.securesms.recipients.Recipients;
|
2014-01-14 00:26:43 -08:00
|
|
|
import org.thoughtcrime.securesms.util.BitmapUtil;
|
2014-02-02 19:38:06 -08:00
|
|
|
import org.thoughtcrime.securesms.util.GroupUtil;
|
2014-02-14 15:59:57 -08:00
|
|
|
import org.thoughtcrime.securesms.util.TextSecurePreferences;
|
2014-01-14 00:26:43 -08:00
|
|
|
import org.whispersystems.textsecure.util.Hex;
|
|
|
|
import org.whispersystems.textsecure.util.Util;
|
|
|
|
|
2014-02-02 19:38:06 -08:00
|
|
|
import java.io.IOException;
|
2014-02-13 17:10:20 -08:00
|
|
|
import java.security.NoSuchAlgorithmException;
|
|
|
|
import java.security.SecureRandom;
|
2014-01-14 00:26:43 -08:00
|
|
|
import java.util.LinkedList;
|
|
|
|
import java.util.List;
|
|
|
|
|
|
|
|
import static org.whispersystems.textsecure.push.PushMessageProtos.PushMessageContent.AttachmentPointer;
|
|
|
|
|
|
|
|
public class GroupDatabase extends Database {
|
|
|
|
|
|
|
|
private static final String TABLE_NAME = "groups";
|
|
|
|
private static final String ID = "_id";
|
|
|
|
private static final String GROUP_ID = "group_id";
|
|
|
|
private static final String OWNER = "owner";
|
|
|
|
private static final String TITLE = "title";
|
|
|
|
private static final String MEMBERS = "members";
|
|
|
|
private static final String AVATAR = "avatar";
|
|
|
|
private static final String AVATAR_ID = "avatar_id";
|
|
|
|
private static final String AVATAR_KEY = "avatar_key";
|
|
|
|
private static final String AVATAR_CONTENT_TYPE = "avatar_content_type";
|
2014-02-02 19:38:06 -08:00
|
|
|
private static final String AVATAR_RELAY = "avatar_relay";
|
2014-01-14 00:26:43 -08:00
|
|
|
private static final String TIMESTAMP = "timestamp";
|
|
|
|
|
|
|
|
public static final String CREATE_TABLE =
|
|
|
|
"CREATE TABLE " + TABLE_NAME +
|
|
|
|
" (" + ID + " INTEGER PRIMARY KEY, " +
|
|
|
|
GROUP_ID + " TEXT, " +
|
|
|
|
OWNER + " TEXT, " +
|
|
|
|
TITLE + " TEXT, " +
|
|
|
|
MEMBERS + " TEXT, " +
|
|
|
|
AVATAR + " BLOB, " +
|
|
|
|
AVATAR_ID + " INTEGER, " +
|
|
|
|
AVATAR_KEY + " BLOB, " +
|
|
|
|
AVATAR_CONTENT_TYPE + " TEXT, " +
|
2014-02-02 19:38:06 -08:00
|
|
|
AVATAR_RELAY + " TEXT, " +
|
2014-01-14 00:26:43 -08:00
|
|
|
TIMESTAMP + " INTEGER);";
|
|
|
|
|
|
|
|
public static final String[] CREATE_INDEXS = {
|
|
|
|
"CREATE UNIQUE INDEX IF NOT EXISTS group_id_index ON " + TABLE_NAME + " (" + GROUP_ID + ");",
|
|
|
|
};
|
|
|
|
|
|
|
|
public GroupDatabase(Context context, SQLiteOpenHelper databaseHelper) {
|
|
|
|
super(context, databaseHelper);
|
|
|
|
}
|
|
|
|
|
2014-02-02 19:38:06 -08:00
|
|
|
public Reader getGroup(byte[] groupId) {
|
2014-01-14 00:26:43 -08:00
|
|
|
Cursor cursor = databaseHelper.getReadableDatabase().query(TABLE_NAME, null, GROUP_ID + " = ?",
|
2014-02-02 19:38:06 -08:00
|
|
|
new String[] {GroupUtil.getEncodedId(groupId)},
|
|
|
|
null, null, null);
|
2014-01-14 00:26:43 -08:00
|
|
|
|
|
|
|
return new Reader(cursor);
|
|
|
|
}
|
|
|
|
|
2014-02-02 19:38:06 -08:00
|
|
|
public Recipients getGroupMembers(byte[] groupId) {
|
|
|
|
List<String> members = getCurrentMembers(groupId);
|
|
|
|
List<Recipient> recipients = new LinkedList<Recipient>();
|
|
|
|
|
|
|
|
for (String member : members) {
|
|
|
|
try {
|
|
|
|
recipients.addAll(RecipientFactory.getRecipientsFromString(context, member, true)
|
|
|
|
.getRecipientsList());
|
|
|
|
} catch (RecipientFormattingException e) {
|
|
|
|
Log.w("GroupDatabase", e);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return new Recipients(recipients);
|
|
|
|
}
|
|
|
|
|
2014-01-14 00:26:43 -08:00
|
|
|
public void create(byte[] groupId, String owner, String title,
|
|
|
|
List<String> members, AttachmentPointer avatar,
|
|
|
|
String relay)
|
|
|
|
{
|
2014-02-14 15:59:57 -08:00
|
|
|
List<String> filteredMembers = new LinkedList<String>();
|
|
|
|
String localNumber = TextSecurePreferences.getLocalNumber(context);
|
|
|
|
|
|
|
|
for (String member : members) {
|
|
|
|
if (!member.equals(localNumber)) {
|
|
|
|
filteredMembers.add(member);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-01-14 00:26:43 -08:00
|
|
|
ContentValues contentValues = new ContentValues();
|
2014-02-02 19:38:06 -08:00
|
|
|
contentValues.put(GROUP_ID, GroupUtil.getEncodedId(groupId));
|
2014-01-14 00:26:43 -08:00
|
|
|
contentValues.put(OWNER, owner);
|
|
|
|
contentValues.put(TITLE, title);
|
2014-02-14 15:59:57 -08:00
|
|
|
contentValues.put(MEMBERS, Util.join(filteredMembers, ","));
|
2014-01-14 00:26:43 -08:00
|
|
|
|
|
|
|
if (avatar != null) {
|
|
|
|
contentValues.put(AVATAR_ID, avatar.getId());
|
|
|
|
contentValues.put(AVATAR_KEY, avatar.getKey().toByteArray());
|
|
|
|
contentValues.put(AVATAR_CONTENT_TYPE, avatar.getContentType());
|
|
|
|
}
|
|
|
|
|
2014-02-02 19:38:06 -08:00
|
|
|
contentValues.put(AVATAR_RELAY, relay);
|
2014-01-14 00:26:43 -08:00
|
|
|
contentValues.put(TIMESTAMP, System.currentTimeMillis());
|
|
|
|
|
|
|
|
databaseHelper.getWritableDatabase().insert(TABLE_NAME, null, contentValues);
|
|
|
|
}
|
|
|
|
|
|
|
|
public void update(byte[] groupId, String source, String title, AttachmentPointer avatar) {
|
|
|
|
ContentValues contentValues = new ContentValues();
|
|
|
|
if (title != null) contentValues.put(TITLE, title);
|
|
|
|
|
|
|
|
if (avatar != null) {
|
|
|
|
contentValues.put(AVATAR_ID, avatar.getId());
|
|
|
|
contentValues.put(AVATAR_CONTENT_TYPE, avatar.getContentType());
|
|
|
|
contentValues.put(AVATAR_KEY, avatar.getKey().toByteArray());
|
|
|
|
}
|
|
|
|
|
|
|
|
databaseHelper.getWritableDatabase().update(TABLE_NAME, contentValues,
|
|
|
|
GROUP_ID + " = ? AND " + OWNER + " = ?",
|
2014-02-02 19:38:06 -08:00
|
|
|
new String[] {GroupUtil.getEncodedId(groupId), source});
|
2014-01-14 00:26:43 -08:00
|
|
|
}
|
|
|
|
|
2014-02-02 19:38:06 -08:00
|
|
|
public void updateAvatar(byte[] groupId, Bitmap avatar) {
|
2014-02-13 17:10:20 -08:00
|
|
|
updateAvatar(groupId, BitmapUtil.toByteArray(avatar));
|
|
|
|
}
|
|
|
|
|
|
|
|
public void updateAvatar(byte[] groupId, byte[] avatar) {
|
2014-01-14 00:26:43 -08:00
|
|
|
ContentValues contentValues = new ContentValues();
|
2014-02-13 17:10:20 -08:00
|
|
|
contentValues.put(AVATAR, avatar);
|
2014-01-14 00:26:43 -08:00
|
|
|
|
2014-02-02 19:38:06 -08:00
|
|
|
databaseHelper.getWritableDatabase().update(TABLE_NAME, contentValues, GROUP_ID + " = ?",
|
|
|
|
new String[] {GroupUtil.getEncodedId(groupId)});
|
2014-01-14 00:26:43 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
public void add(byte[] id, String source, List<String> members) {
|
|
|
|
List<String> currentMembers = getCurrentMembers(id);
|
|
|
|
|
|
|
|
for (String currentMember : currentMembers) {
|
|
|
|
if (currentMember.equals(source)) {
|
|
|
|
List<String> concatenatedMembers = new LinkedList<String>(currentMembers);
|
|
|
|
concatenatedMembers.addAll(members);
|
|
|
|
|
|
|
|
ContentValues contents = new ContentValues();
|
|
|
|
contents.put(MEMBERS, Util.join(concatenatedMembers, ","));
|
|
|
|
|
|
|
|
databaseHelper.getWritableDatabase().update(TABLE_NAME, contents, GROUP_ID + " = ?",
|
2014-02-14 15:59:57 -08:00
|
|
|
new String[] {GroupUtil.getEncodedId(id)});
|
2014-01-14 00:26:43 -08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public void remove(byte[] id, String source) {
|
|
|
|
List<String> currentMembers = getCurrentMembers(id);
|
|
|
|
currentMembers.remove(source);
|
|
|
|
|
|
|
|
ContentValues contents = new ContentValues();
|
|
|
|
contents.put(MEMBERS, Util.join(currentMembers, ","));
|
|
|
|
|
|
|
|
databaseHelper.getWritableDatabase().update(TABLE_NAME, contents, GROUP_ID + " = ?",
|
2014-02-14 15:59:57 -08:00
|
|
|
new String[]{GroupUtil.getEncodedId(id)});
|
2014-01-14 00:26:43 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
private List<String> getCurrentMembers(byte[] id) {
|
|
|
|
Cursor cursor = null;
|
|
|
|
|
|
|
|
try {
|
|
|
|
cursor = databaseHelper.getReadableDatabase().query(TABLE_NAME, new String[] {MEMBERS},
|
2014-02-14 15:59:57 -08:00
|
|
|
GROUP_ID + " = ?",
|
|
|
|
new String[] {GroupUtil.getEncodedId(id)},
|
2014-01-14 00:26:43 -08:00
|
|
|
null, null, null);
|
|
|
|
|
|
|
|
if (cursor != null && cursor.moveToFirst()) {
|
|
|
|
return Util.split(cursor.getString(cursor.getColumnIndexOrThrow(MEMBERS)), ",");
|
|
|
|
}
|
|
|
|
|
|
|
|
return new LinkedList<String>();
|
|
|
|
} finally {
|
|
|
|
if (cursor != null)
|
|
|
|
cursor.close();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-02-13 17:10:20 -08:00
|
|
|
public byte[] allocateGroupId() {
|
|
|
|
try {
|
|
|
|
byte[] groupId = new byte[16];
|
|
|
|
SecureRandom.getInstance("SHA1PRNG").nextBytes(groupId);
|
|
|
|
return groupId;
|
|
|
|
} catch (NoSuchAlgorithmException e) {
|
|
|
|
throw new AssertionError(e);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-01-14 00:26:43 -08:00
|
|
|
|
|
|
|
public static class Reader {
|
|
|
|
|
|
|
|
private final Cursor cursor;
|
|
|
|
|
|
|
|
public Reader(Cursor cursor) {
|
|
|
|
this.cursor = cursor;
|
|
|
|
}
|
|
|
|
|
|
|
|
public GroupRecord getNext() {
|
|
|
|
if (cursor == null || !cursor.moveToNext()) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
return new GroupRecord(cursor.getString(cursor.getColumnIndexOrThrow(GROUP_ID)),
|
|
|
|
cursor.getString(cursor.getColumnIndexOrThrow(TITLE)),
|
|
|
|
cursor.getString(cursor.getColumnIndexOrThrow(MEMBERS)),
|
|
|
|
cursor.getBlob(cursor.getColumnIndexOrThrow(AVATAR)),
|
|
|
|
cursor.getLong(cursor.getColumnIndexOrThrow(AVATAR_ID)),
|
|
|
|
cursor.getBlob(cursor.getColumnIndexOrThrow(AVATAR_KEY)),
|
|
|
|
cursor.getString(cursor.getColumnIndexOrThrow(AVATAR_CONTENT_TYPE)),
|
2014-02-02 19:38:06 -08:00
|
|
|
cursor.getString(cursor.getColumnIndexOrThrow(AVATAR_RELAY)));
|
2014-01-14 00:26:43 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
public void close() {
|
|
|
|
if (this.cursor != null)
|
|
|
|
this.cursor.close();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public static class GroupRecord {
|
|
|
|
|
|
|
|
private final String id;
|
|
|
|
private final String title;
|
|
|
|
private final List<String> members;
|
|
|
|
private final byte[] avatar;
|
|
|
|
private final long avatarId;
|
|
|
|
private final byte[] avatarKey;
|
|
|
|
private final String avatarContentType;
|
|
|
|
private final String relay;
|
|
|
|
|
|
|
|
public GroupRecord(String id, String title, String members, byte[] avatar,
|
|
|
|
long avatarId, byte[] avatarKey, String avatarContentType,
|
|
|
|
String relay)
|
|
|
|
{
|
|
|
|
this.id = id;
|
|
|
|
this.title = title;
|
|
|
|
this.members = Util.split(members, ",");
|
|
|
|
this.avatar = avatar;
|
|
|
|
this.avatarId = avatarId;
|
|
|
|
this.avatarKey = avatarKey;
|
|
|
|
this.avatarContentType = avatarContentType;
|
|
|
|
this.relay = relay;
|
|
|
|
}
|
|
|
|
|
2014-02-02 19:38:06 -08:00
|
|
|
public byte[] getId() {
|
|
|
|
try {
|
|
|
|
return GroupUtil.getDecodedId(id);
|
|
|
|
} catch (IOException ioe) {
|
|
|
|
throw new AssertionError(ioe);
|
|
|
|
}
|
2014-01-14 00:26:43 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
public String getTitle() {
|
|
|
|
return title;
|
|
|
|
}
|
|
|
|
|
|
|
|
public List<String> getMembers() {
|
|
|
|
return members;
|
|
|
|
}
|
|
|
|
|
|
|
|
public byte[] getAvatar() {
|
|
|
|
return avatar;
|
|
|
|
}
|
|
|
|
|
|
|
|
public long getAvatarId() {
|
|
|
|
return avatarId;
|
|
|
|
}
|
|
|
|
|
|
|
|
public byte[] getAvatarKey() {
|
|
|
|
return avatarKey;
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getAvatarContentType() {
|
|
|
|
return avatarContentType;
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getRelay() {
|
|
|
|
return relay;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|