Move message and conversation storage to IndexedDB
Getting up and running with IndexedDB was pretty easy, thanks to backbone. The tricky part was making reads and writes asynchronous. In that process I did some refactoring on Whisper.Threads, which has been renamed Conversations for consistency with the view names. This change also adds the unlimitedStorage permission.
This commit is contained in:
parent
5638b20046
commit
ced295a630
24 changed files with 1663 additions and 324 deletions
187
js/models/conversations.js
Normal file
187
js/models/conversations.js
Normal file
|
@ -0,0 +1,187 @@
|
|||
/* vim: ts=4:sw=4:expandtab
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU Lesser General Public License as published by
|
||||
* the Free Software Foundation, either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU Lesser General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU Lesser General Public License
|
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
(function () {
|
||||
'use strict';
|
||||
|
||||
window.Whisper = window.Whisper || {};
|
||||
|
||||
function encodeAttachments (attachments) {
|
||||
return Promise.all(attachments.map(function(a) {
|
||||
return new Promise(function(resolve, reject) {
|
||||
var dataView = new DataView(a.data);
|
||||
var blob = new Blob([dataView], { type: a.contentType });
|
||||
var FR = new FileReader();
|
||||
FR.onload = function(e) {
|
||||
resolve(e.target.result);
|
||||
};
|
||||
FR.onerror = reject;
|
||||
FR.readAsDataURL(blob);
|
||||
});
|
||||
}));
|
||||
};
|
||||
|
||||
var Conversation = Whisper.Conversation = Backbone.Model.extend({
|
||||
database: Whisper.Database,
|
||||
storeName: 'conversations',
|
||||
defaults: function() {
|
||||
return {
|
||||
name: 'New Conversation',
|
||||
image: '/images/default.png',
|
||||
unreadCount: 0,
|
||||
timestamp: new Date().getTime(),
|
||||
active: true
|
||||
};
|
||||
},
|
||||
|
||||
initialize: function() {
|
||||
this.messageCollection = new Whisper.MessageCollection();
|
||||
},
|
||||
|
||||
validate: function(attributes, options) {
|
||||
var required = ['type', 'timestamp', 'image', 'name'];
|
||||
var missing = _.filter(required, function(attr) { return !attributes[attr]; });
|
||||
if (missing.length) { return "Conversation must have " + missing; }
|
||||
},
|
||||
|
||||
sendMessage: function(message, attachments) {
|
||||
return encodeAttachments(attachments).then(function(base64_attachments) {
|
||||
var timestamp = Date.now();
|
||||
this.messages().add({ body: message,
|
||||
timestamp: timestamp,
|
||||
conversationId: this.id,
|
||||
conversationType: this.get('type'),
|
||||
type: 'outgoing',
|
||||
attachments: base64_attachments
|
||||
}).save();
|
||||
|
||||
this.save({ timestamp: timestamp,
|
||||
unreadCount: 0,
|
||||
active: true});
|
||||
|
||||
if (this.get('type') == 'private') {
|
||||
return textsecure.messaging.sendMessageToNumber(this.get('id'), message, attachments);
|
||||
}
|
||||
else {
|
||||
return textsecure.messaging.sendMessageToGroup(this.get('groupId'), message, attachments);
|
||||
}
|
||||
}.bind(this)).then(function(result) {
|
||||
console.log(result);
|
||||
}).catch(function(error) {
|
||||
console.log(error);
|
||||
});
|
||||
},
|
||||
|
||||
receiveMessage: function(decrypted) {
|
||||
var conversation = this;
|
||||
encodeAttachments(decrypted.message.attachments).then(function(base64_attachments) {
|
||||
var timestamp = decrypted.pushMessage.timestamp.toNumber();
|
||||
var m = this.messages().add({
|
||||
body: decrypted.message.body,
|
||||
timestamp: timestamp,
|
||||
conversationId: this.id,
|
||||
conversationType: this.get('type'),
|
||||
attachments: base64_attachments,
|
||||
type: 'incoming',
|
||||
sender: decrypted.pushMessage.source
|
||||
});
|
||||
m.save();
|
||||
|
||||
if (timestamp > this.get('timestamp')) {
|
||||
this.set('timestamp', timestamp);
|
||||
}
|
||||
this.save({unreadCount: this.get('unreadCount') + 1, active: true});
|
||||
return m;
|
||||
}.bind(this));
|
||||
},
|
||||
|
||||
fetch: function() {
|
||||
return this.messageCollection.fetch({conditions: {conversationId: this.id }});
|
||||
},
|
||||
|
||||
messages: function() {
|
||||
return this.messageCollection;
|
||||
},
|
||||
});
|
||||
|
||||
Whisper.ConversationCollection = Backbone.Collection.extend({
|
||||
database: Whisper.Database,
|
||||
storeName: 'conversations',
|
||||
model: Conversation,
|
||||
|
||||
comparator: function(m) {
|
||||
return -m.get('timestamp');
|
||||
},
|
||||
|
||||
createGroup: function(recipients, name) {
|
||||
var attributes = {};
|
||||
attributes = {
|
||||
name : name,
|
||||
numbers : recipients,
|
||||
type : 'group',
|
||||
};
|
||||
var conversation = this.add(attributes, {merge: true});
|
||||
return textsecure.messaging.createGroup(recipients, name).then(function(groupId) {
|
||||
conversation.save({
|
||||
id : getString(groupId),
|
||||
groupId : getString(groupId)
|
||||
});
|
||||
return conversation;
|
||||
});
|
||||
},
|
||||
|
||||
findOrCreateForRecipient: function(recipient) {
|
||||
var attributes = {};
|
||||
attributes = {
|
||||
id : recipient,
|
||||
name : recipient,
|
||||
type : 'private',
|
||||
};
|
||||
var conversation = this.add(attributes, {merge: true});
|
||||
conversation.save();
|
||||
return conversation;
|
||||
},
|
||||
|
||||
addIncomingMessage: function(decrypted) {
|
||||
var attributes = {};
|
||||
if (decrypted.message.group) {
|
||||
attributes = {
|
||||
id : decrypted.message.group.id,
|
||||
groupId : decrypted.message.group.id,
|
||||
name : decrypted.message.group.name || 'New group',
|
||||
type : 'group',
|
||||
};
|
||||
} else {
|
||||
attributes = {
|
||||
id : decrypted.pushMessage.source,
|
||||
name : decrypted.pushMessage.source,
|
||||
type : 'private'
|
||||
};
|
||||
}
|
||||
var conversation = this.add(attributes, {merge: true});
|
||||
conversation.receiveMessage(decrypted);
|
||||
},
|
||||
|
||||
destroyAll: function () {
|
||||
return Promise.all(this.models.map(function(m) {
|
||||
return new Promise(function(resolve, reject) {
|
||||
m.destroy().then(resolve).fail(reject);
|
||||
});
|
||||
}));
|
||||
}
|
||||
});
|
||||
|
||||
Whisper.Conversations = new Whisper.ConversationCollection();
|
||||
})();
|
Loading…
Add table
Add a link
Reference in a new issue