2015-09-07 23:53:43 +02:00
|
|
|
/*
|
|
|
|
* vim: ts=4:sw=4:expandtab
|
2014-11-13 23:35:37 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
(function () {
|
|
|
|
'use strict';
|
|
|
|
window.Whisper = window.Whisper || {};
|
|
|
|
window.Whisper.Database = window.Whisper.Database || {};
|
|
|
|
window.Whisper.Database.id = window.Whisper.Database.id || 'signal';
|
2015-07-15 23:27:11 +02:00
|
|
|
window.Whisper.Database.nolog = true;
|
2014-11-13 23:35:37 +01:00
|
|
|
|
|
|
|
Whisper.Database.migrations = [
|
|
|
|
{
|
|
|
|
version: "1.0",
|
|
|
|
migrate: function(transaction, next) {
|
2014-12-12 04:41:40 +01:00
|
|
|
console.log('migration 1.0');
|
2014-11-13 23:35:37 +01:00
|
|
|
var messages = transaction.db.createObjectStore("messages");
|
2014-12-12 04:41:40 +01:00
|
|
|
messages.createIndex("conversation", ["conversationId", "received_at"], { unique: false });
|
|
|
|
messages.createIndex("receipt", "sent_at", { unique: false });
|
2014-11-13 23:35:37 +01:00
|
|
|
|
|
|
|
var conversations = transaction.db.createObjectStore("conversations");
|
2014-12-12 04:41:40 +01:00
|
|
|
conversations.createIndex("inbox", "active_at", { unique: false });
|
|
|
|
conversations.createIndex("group", "members", { unique: false, multiEntry: true });
|
2015-01-28 13:17:46 +01:00
|
|
|
conversations.createIndex("type", "type", { unique: false });
|
2015-04-01 22:08:09 +02:00
|
|
|
|
2015-05-07 00:09:03 +02:00
|
|
|
var groups = transaction.db.createObjectStore('groups');
|
|
|
|
|
2015-05-05 05:26:26 +02:00
|
|
|
var sessions = transaction.db.createObjectStore('sessions');
|
|
|
|
var identityKeys = transaction.db.createObjectStore('identityKeys');
|
2015-04-21 23:11:29 +02:00
|
|
|
|
2015-04-01 22:08:09 +02:00
|
|
|
var preKeys = transaction.db.createObjectStore("preKeys");
|
|
|
|
var signedPreKeys = transaction.db.createObjectStore("signedPreKeys");
|
|
|
|
|
2015-05-12 00:40:21 +02:00
|
|
|
var items = transaction.db.createObjectStore("items");
|
2014-11-13 23:35:37 +01:00
|
|
|
next();
|
|
|
|
}
|
2015-10-15 21:10:03 +02:00
|
|
|
},
|
|
|
|
{
|
|
|
|
version: "2.0",
|
|
|
|
migrate: function(transaction, next) {
|
|
|
|
var conversations = transaction.objectStore("conversations");
|
|
|
|
conversations.createIndex("search", "tokens", { unique: false, multiEntry: true });
|
|
|
|
|
|
|
|
var all = new Whisper.ConversationCollection();
|
|
|
|
all.fetch().then(function() {
|
|
|
|
all.each(function(model) {
|
|
|
|
model.updateTokens();
|
|
|
|
model.save();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|
2015-11-20 02:19:04 +01:00
|
|
|
},
|
|
|
|
{
|
|
|
|
version: "3.0",
|
|
|
|
migrate: function(transaction, next) {
|
|
|
|
var conversations = transaction.objectStore("items");
|
|
|
|
|
|
|
|
var all = new Whisper.ConversationCollection();
|
|
|
|
all.fetch().then(function() {
|
|
|
|
var unreadCount = all.reduce(function(total, model) {
|
|
|
|
var count = model.get('unreadCount');
|
|
|
|
if (count === undefined) {
|
|
|
|
count = 0;
|
|
|
|
}
|
|
|
|
return total + count;
|
|
|
|
}, 0);
|
|
|
|
storage.remove('unreadCount');
|
|
|
|
storage.put('unreadCount', unreadCount);
|
|
|
|
});
|
|
|
|
}
|
2014-11-13 23:35:37 +01:00
|
|
|
}
|
|
|
|
];
|
|
|
|
}());
|