Fix sqflite

This commit is contained in:
Christian Pauly 2020-01-02 12:27:02 +01:00
parent b5f2ecd56f
commit 78ddd9ede4
2 changed files with 26 additions and 24 deletions

View File

@ -127,7 +127,7 @@ class MatrixState extends State<Matrix> {
@override @override
void initState() { void initState() {
if (widget.client == null) { if (widget.client == null) {
client = Client(widget.clientName, debug: true); client = Client(widget.clientName, debug: false);
if (!kIsWeb) if (!kIsWeb)
client.store = Store(client); client.store = Store(client);
else else

View File

@ -57,7 +57,7 @@ class Store extends StoreAPI {
print( print(
"[Store] Migrate databse from version $oldVersion to $newVersion"); "[Store] Migrate databse from version $oldVersion to $newVersion");
if (oldVersion != newVersion) { if (oldVersion != newVersion) {
await schemes.forEach((String name, String scheme) async { schemes.forEach((String name, String scheme) async {
if (name != "Clients") await db.execute("DROP TABLE IF EXISTS $name"); if (name != "Clients") await db.execute("DROP TABLE IF EXISTS $name");
}); });
await createTables(db); await createTables(db);
@ -91,7 +91,7 @@ class Store extends StoreAPI {
} }
Future<void> createTables(Database db) async { Future<void> createTables(Database db) async {
await schemes.forEach((String name, String scheme) async { schemes.forEach((String name, String scheme) async {
await db.execute(scheme); await db.execute(scheme);
}); });
} }
@ -123,7 +123,7 @@ class Store extends StoreAPI {
Future<void> clear() async { Future<void> clear() async {
await _db await _db
.rawDelete("DELETE FROM Clients WHERE client=?", [client.clientName]); .rawDelete("DELETE FROM Clients WHERE client=?", [client.clientName]);
await schemes.forEach((String name, String scheme) async { schemes.forEach((String name, String scheme) async {
if (name != "Clients") await _db.rawDelete("DELETE FROM $name"); if (name != "Clients") await _db.rawDelete("DELETE FROM $name");
}); });
return; return;
@ -252,12 +252,12 @@ class Store extends StoreAPI {
if (txn == null) return null; if (txn == null) return null;
Map<String, dynamic> eventContent = eventUpdate.content; Map<String, dynamic> eventContent = eventUpdate.content;
String type = eventUpdate.type; String type = eventUpdate.type;
String chat_id = eventUpdate.roomID; String chatId = eventUpdate.roomID;
// Get the state_key for m.room.member events // Get the state_key for m.room.member events
String state_key = ""; String stateKey = "";
if (eventContent["state_key"] is String) { if (eventContent["state_key"] is String) {
state_key = eventContent["state_key"]; stateKey = eventContent["state_key"];
} }
if (eventUpdate.eventType == "m.room.redaction") { if (eventUpdate.eventType == "m.room.redaction") {
@ -284,7 +284,7 @@ class Store extends StoreAPI {
"INSERT OR REPLACE INTO Events VALUES(?, ?, ?, ?, ?, ?, ?, ?, ?, ?)", "INSERT OR REPLACE INTO Events VALUES(?, ?, ?, ?, ?, ?, ?, ?, ?, ?)",
[ [
eventContent["event_id"], eventContent["event_id"],
chat_id, chatId,
eventContent["origin_server_ts"], eventContent["origin_server_ts"],
eventContent["sender"], eventContent["sender"],
eventContent["type"], eventContent["type"],
@ -312,10 +312,10 @@ class Store extends StoreAPI {
"INSERT OR REPLACE INTO RoomStates VALUES(?, ?, ?, ?, ?, ?, ?, ?, ?)", "INSERT OR REPLACE INTO RoomStates VALUES(?, ?, ?, ?, ?, ?, ?, ?, ?)",
[ [
eventContent["event_id"] ?? now, eventContent["event_id"] ?? now,
chat_id, chatId,
eventContent["origin_server_ts"] ?? now, eventContent["origin_server_ts"] ?? now,
eventContent["sender"], eventContent["sender"],
state_key, stateKey,
json.encode(eventContent["unsigned"] ?? ""), json.encode(eventContent["unsigned"] ?? ""),
json.encode(eventContent["prev_content"] ?? ""), json.encode(eventContent["prev_content"] ?? ""),
eventContent["type"], eventContent["type"],
@ -324,7 +324,7 @@ class Store extends StoreAPI {
} else } else
txn.rawInsert("INSERT OR REPLACE INTO RoomAccountData VALUES(?, ?, ?)", [ txn.rawInsert("INSERT OR REPLACE INTO RoomAccountData VALUES(?, ?, ?)", [
eventContent["type"], eventContent["type"],
chat_id, chatId,
json.encode(eventContent["content"]), json.encode(eventContent["content"]),
]); ]);
@ -461,12 +461,15 @@ class Store extends StoreAPI {
Future<Map<String, Presence>> getPresences() async { Future<Map<String, Presence>> getPresences() async {
Map<String, Presence> newPresences = {}; Map<String, Presence> newPresences = {};
// TODO: Fix the json parsing of presences List<Map<String, dynamic>> rawPresences =
/*List<Map<String, dynamic>> rawPresences =
await _db.rawQuery("SELECT * FROM Presences"); await _db.rawQuery("SELECT * FROM Presences");
for (int i = 0; i < rawPresences.length; i++) for (int i = 0; i < rawPresences.length; i++) {
newPresences[rawPresences[i]["type"]] = Map<String, dynamic> rawPresence = {
Presence.fromJson(rawPresences[i]);*/ "sender": rawPresences[i]["sender"],
"content": json.decode(rawPresences[i]["content"]),
};
newPresences[rawPresences[i]["type"]] = Presence.fromJson(rawPresence);
}
return newPresences; return newPresences;
} }
@ -483,13 +486,12 @@ class Store extends StoreAPI {
return; return;
} }
Future addNotification(String roomID, String event_id, int uniqueID) async { Future addNotification(String roomID, String eventId, int uniqueID) async {
assert(roomID != ""); assert(roomID != "");
assert(event_id != ""); assert(eventId != "");
assert(uniqueID != "");
await _db.rawInsert( await _db.rawInsert(
"INSERT OR REPLACE INTO NotificationsCache(id, chat_id, event_id) VALUES (?, ?, ?)", "INSERT OR REPLACE INTO NotificationsCache(id, chat_id, event_id) VALUES (?, ?, ?)",
[uniqueID, roomID, event_id]); [uniqueID, roomID, eventId]);
// Make sure we got the same unique ID everywhere // Make sure we got the same unique ID everywhere
await _db.rawUpdate("UPDATE NotificationsCache SET id=? WHERE chat_id=?", await _db.rawUpdate("UPDATE NotificationsCache SET id=? WHERE chat_id=?",
[uniqueID, roomID]); [uniqueID, roomID]);
@ -497,10 +499,10 @@ class Store extends StoreAPI {
} }
Future<List<Map<String, dynamic>>> getNotificationByRoom( Future<List<Map<String, dynamic>>> getNotificationByRoom(
String room_id) async { String roomId) async {
assert(room_id != ""); assert(roomId != "");
List<Map<String, dynamic>> res = await _db.rawQuery( List<Map<String, dynamic>> res = await _db
"SELECT * FROM NotificationsCache WHERE chat_id=?", [room_id]); .rawQuery("SELECT * FROM NotificationsCache WHERE chat_id=?", [roomId]);
if (res.length == 0) return null; if (res.length == 0) return null;
return res; return res;
} }