2015-09-07 21:53:43 +00:00
|
|
|
/*
|
|
|
|
* vim: ts=4:sw=4:expandtab
|
2014-11-13 22:35:37 +00: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 21:27:11 +00:00
|
|
|
window.Whisper.Database.nolog = true;
|
2014-11-13 22:35:37 +00:00
|
|
|
|
|
|
|
Whisper.Database.migrations = [
|
|
|
|
{
|
|
|
|
version: "1.0",
|
|
|
|
migrate: function(transaction, next) {
|
2014-12-12 03:41:40 +00:00
|
|
|
console.log('migration 1.0');
|
2016-02-13 01:18:36 +00:00
|
|
|
console.log('creating object stores');
|
2014-11-13 22:35:37 +00:00
|
|
|
var messages = transaction.db.createObjectStore("messages");
|
2014-12-12 03:41:40 +00:00
|
|
|
messages.createIndex("conversation", ["conversationId", "received_at"], { unique: false });
|
|
|
|
messages.createIndex("receipt", "sent_at", { unique: false });
|
2014-11-13 22:35:37 +00:00
|
|
|
|
|
|
|
var conversations = transaction.db.createObjectStore("conversations");
|
2014-12-12 03:41:40 +00:00
|
|
|
conversations.createIndex("inbox", "active_at", { unique: false });
|
|
|
|
conversations.createIndex("group", "members", { unique: false, multiEntry: true });
|
2015-01-28 12:17:46 +00:00
|
|
|
conversations.createIndex("type", "type", { unique: false });
|
2015-04-01 20:08:09 +00:00
|
|
|
|
2015-05-06 22:09:03 +00:00
|
|
|
var groups = transaction.db.createObjectStore('groups');
|
|
|
|
|
2015-05-05 03:26:26 +00:00
|
|
|
var sessions = transaction.db.createObjectStore('sessions');
|
|
|
|
var identityKeys = transaction.db.createObjectStore('identityKeys');
|
2015-04-21 21:11:29 +00:00
|
|
|
|
2015-04-01 20:08:09 +00:00
|
|
|
var preKeys = transaction.db.createObjectStore("preKeys");
|
|
|
|
var signedPreKeys = transaction.db.createObjectStore("signedPreKeys");
|
|
|
|
|
2015-05-11 22:40:21 +00:00
|
|
|
var items = transaction.db.createObjectStore("items");
|
2014-11-13 22:35:37 +00:00
|
|
|
next();
|
|
|
|
}
|
2015-10-15 19:10:03 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
version: "2.0",
|
|
|
|
migrate: function(transaction, next) {
|
2016-02-03 23:16:38 +00:00
|
|
|
console.log('migration 2.0');
|
2015-10-15 19:10:03 +00:00
|
|
|
var conversations = transaction.objectStore("conversations");
|
|
|
|
conversations.createIndex("search", "tokens", { unique: false, multiEntry: true });
|
|
|
|
|
2016-02-13 01:18:36 +00:00
|
|
|
window.addEventListener('storage_ready', function() {
|
|
|
|
console.log('migrating search tokens');
|
|
|
|
var all = new Whisper.ConversationCollection();
|
|
|
|
all.fetch().then(function() {
|
|
|
|
all.each(function(model) {
|
|
|
|
model.updateTokens();
|
|
|
|
model.save();
|
|
|
|
});
|
2015-10-15 19:10:03 +00:00
|
|
|
});
|
|
|
|
});
|
2016-02-03 23:16:38 +00:00
|
|
|
next();
|
2015-10-15 19:10:03 +00:00
|
|
|
}
|
2015-11-20 01:19:04 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
version: "3.0",
|
|
|
|
migrate: function(transaction, next) {
|
2016-02-03 23:16:38 +00:00
|
|
|
console.log('migration 3.0');
|
2015-11-20 01:19:04 +00:00
|
|
|
var conversations = transaction.objectStore("items");
|
|
|
|
|
2016-02-13 01:18:36 +00:00
|
|
|
window.addEventListener('storage_ready', function() {
|
|
|
|
console.log('migrating unread count');
|
|
|
|
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);
|
|
|
|
});
|
2015-11-20 01:19:04 +00:00
|
|
|
});
|
2016-02-03 23:16:38 +00:00
|
|
|
next();
|
2015-11-20 01:19:04 +00:00
|
|
|
}
|
2015-12-05 01:24:37 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
version: "4.0",
|
|
|
|
migrate: function(transaction, next) {
|
2016-02-03 23:16:38 +00:00
|
|
|
console.log('migration 4.0');
|
2016-02-13 01:18:36 +00:00
|
|
|
window.addEventListener('storage_ready', function() {
|
|
|
|
console.log('migrating search tokens');
|
|
|
|
var all = new Whisper.ConversationCollection();
|
|
|
|
all.fetch().then(function() {
|
|
|
|
all.each(function(c) {
|
|
|
|
c.updateTokens();
|
|
|
|
c.save();
|
|
|
|
});
|
2015-12-05 01:24:37 +00:00
|
|
|
});
|
|
|
|
});
|
2016-02-03 23:16:38 +00:00
|
|
|
next();
|
2015-12-05 01:24:37 +00:00
|
|
|
}
|
2016-01-14 18:38:46 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
version: "5.0",
|
|
|
|
migrate: function(transaction, next) {
|
2016-02-03 23:16:38 +00:00
|
|
|
console.log('migration 5.0');
|
2016-02-13 01:18:36 +00:00
|
|
|
window.addEventListener('storage_ready', function() {
|
|
|
|
console.log('migrating registration flags');
|
|
|
|
if (storage.get("chromiumRegistrationDone") === "") {
|
|
|
|
storage.put("chromiumRegistrationDoneEver", "");
|
|
|
|
}
|
|
|
|
});
|
2016-02-03 23:16:38 +00:00
|
|
|
next();
|
2016-01-14 18:38:46 +00:00
|
|
|
}
|
2016-01-15 09:22:07 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
version: "6.0",
|
|
|
|
migrate: function(transaction, next) {
|
2016-02-03 23:16:38 +00:00
|
|
|
console.log('migration 6.0');
|
2016-02-13 01:18:36 +00:00
|
|
|
window.addEventListener('storage_ready', function() {
|
|
|
|
console.log('migrating registration flags');
|
|
|
|
storage.onready(function() {
|
|
|
|
if (storage.get("chromiumRegistrationDone") === "") {
|
|
|
|
storage.put("chromiumRegistrationDoneEver", "");
|
|
|
|
next();
|
|
|
|
}
|
|
|
|
});
|
2016-01-15 09:22:07 +00:00
|
|
|
});
|
2016-02-03 23:16:38 +00:00
|
|
|
next();
|
2016-01-15 09:22:07 +00:00
|
|
|
}
|
2016-02-03 01:55:27 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
version: "7.0",
|
|
|
|
migrate: function(transaction, next) {
|
2016-02-03 23:16:38 +00:00
|
|
|
console.log('migration 7.0');
|
2016-02-13 01:18:36 +00:00
|
|
|
console.log('creating debug log');
|
2016-02-03 01:55:27 +00:00
|
|
|
transaction.db.createObjectStore("debug");
|
2016-02-03 23:16:38 +00:00
|
|
|
next();
|
2016-02-03 01:55:27 +00:00
|
|
|
}
|
2016-02-22 05:37:47 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
version: "8.0",
|
|
|
|
migrate: function(transaction, next) {
|
|
|
|
console.log('migration 8.0');
|
|
|
|
console.log('creating unread message index');
|
|
|
|
var conversations = transaction.objectStore('messages');
|
|
|
|
conversations.createIndex('unread', ['conversationId', 'unread'], { unique: false });
|
|
|
|
next();
|
|
|
|
}
|
2016-03-18 04:42:03 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
version: "9.0",
|
|
|
|
migrate: function(transaction, next) {
|
|
|
|
console.log('migration 9.0');
|
|
|
|
window.addEventListener('storage_ready', function() {
|
|
|
|
console.log('marking contacts and groups active');
|
|
|
|
var all = new Whisper.ConversationCollection();
|
|
|
|
var myNumber = textsecure.storage.user.getNumber();
|
|
|
|
all.fetch().then(function() {
|
|
|
|
var inactive = all.filter(function(model) {
|
|
|
|
return !model.get('active_at') && model.id !== myNumber;
|
|
|
|
});
|
|
|
|
inactive.sort(function(m1, m2) {
|
|
|
|
var title1 = m1.getTitle().toLowerCase();
|
|
|
|
var title2 = m2.getTitle().toLowerCase();
|
|
|
|
if (title1 === title2) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
if (title1 < title2) {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
if (title1 > title2) {
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
inactive.forEach(function(model) {
|
|
|
|
if (model.isPrivate() || !model.get('left')) {
|
|
|
|
model.save({ active_at: 1 });
|
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
next();
|
|
|
|
}
|
2014-11-13 22:35:37 +00:00
|
|
|
}
|
|
|
|
];
|
|
|
|
}());
|