359b4a15a2
Add async get/put/removeGroup to axolotl store and let libtextsecure use it for group state storage.
165 lines
6.4 KiB
JavaScript
165 lines
6.4 KiB
JavaScript
/* vim: ts=4:sw=4
|
|
*
|
|
* 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/>.
|
|
*/
|
|
|
|
'use strict';
|
|
|
|
;(function() {
|
|
/*********************
|
|
*** Group Storage ***
|
|
*********************/
|
|
window.textsecure = window.textsecure || {};
|
|
window.textsecure.storage = window.textsecure.storage || {};
|
|
|
|
// create a random group id that we haven't seen before.
|
|
function generateNewGroupId() {
|
|
var groupId = getString(textsecure.crypto.getRandomBytes(16));
|
|
return textsecure.storage.axolotl.getGroup(groupId).then(function(group) {
|
|
if (group === undefined) {
|
|
return groupId;
|
|
} else {
|
|
console.warn('group id collision'); // probably a bad sign.
|
|
return generateNewGroupId();
|
|
}
|
|
});
|
|
}
|
|
|
|
window.textsecure.storage.groups = {
|
|
createNewGroup: function(numbers, groupId) {
|
|
var groupId = groupId;
|
|
return new Promise(function(resolve) {
|
|
if (groupId !== undefined) {
|
|
resolve(textsecure.storage.axolotl.getGroup(groupId).then(function(group) {
|
|
if (group !== undefined) {
|
|
throw new Error("Tried to recreate group");
|
|
}
|
|
}));
|
|
} else {
|
|
resolve(generateNewGroupId().then(function(newGroupId) {
|
|
groupId = newGroupId;
|
|
}));
|
|
}
|
|
}).then(function() {
|
|
var me = textsecure.storage.user.getNumber();
|
|
var haveMe = false;
|
|
var finalNumbers = [];
|
|
for (var i in numbers) {
|
|
var number = numbers[i];
|
|
if (!textsecure.utils.isNumberSane(number))
|
|
throw new Error("Invalid number in group");
|
|
if (number == me)
|
|
haveMe = true;
|
|
if (finalNumbers.indexOf(number) < 0)
|
|
finalNumbers.push(number);
|
|
}
|
|
|
|
if (!haveMe)
|
|
finalNumbers.push(me);
|
|
|
|
var groupObject = {numbers: finalNumbers, numberRegistrationIds: {}};
|
|
for (var i in finalNumbers)
|
|
groupObject.numberRegistrationIds[finalNumbers[i]] = {};
|
|
|
|
return textsecure.storage.axolotl.putGroup(groupId, groupObject).then(function() {
|
|
return {id: groupId, numbers: finalNumbers};
|
|
});
|
|
});
|
|
},
|
|
|
|
getNumbers: function(groupId) {
|
|
return textsecure.storage.axolotl.getGroup(groupId).then(function(group) {
|
|
if (group === undefined)
|
|
return undefined;
|
|
|
|
return group.numbers;
|
|
});
|
|
},
|
|
|
|
removeNumber: function(groupId, number) {
|
|
return textsecure.storage.axolotl.getGroup(groupId).then(function(group) {
|
|
if (group === undefined)
|
|
return undefined;
|
|
|
|
var me = textsecure.storage.user.getNumber();
|
|
if (number == me)
|
|
throw new Error("Cannot remove ourselves from a group, leave the group instead");
|
|
|
|
var i = group.numbers.indexOf(number);
|
|
if (i > -1) {
|
|
group.numbers.slice(i, 1);
|
|
delete group.numberRegistrationIds[number];
|
|
return textsecure.storage.axolotl.putGroup(groupId, group).then(function() {
|
|
return group.numbers;
|
|
});
|
|
}
|
|
|
|
return group.numbers;
|
|
});
|
|
},
|
|
|
|
addNumbers: function(groupId, numbers) {
|
|
return textsecure.storage.axolotl.getGroup(groupId).then(function(group) {
|
|
if (group === undefined)
|
|
return undefined;
|
|
|
|
for (var i in numbers) {
|
|
var number = numbers[i];
|
|
if (!textsecure.utils.isNumberSane(number))
|
|
throw new Error("Invalid number in set to add to group");
|
|
if (group.numbers.indexOf(number) < 0) {
|
|
group.numbers.push(number);
|
|
group.numberRegistrationIds[number] = {};
|
|
}
|
|
}
|
|
|
|
return textsecure.storage.axolotl.putGroup(groupId, group).then(function() {
|
|
return group.numbers;
|
|
});
|
|
});
|
|
},
|
|
|
|
deleteGroup: function(groupId) {
|
|
return textsecure.storage.axolotl.removeGroup(groupId);
|
|
},
|
|
|
|
getGroup: function(groupId) {
|
|
return textsecure.storage.axolotl.getGroup(groupId).then(function(group) {
|
|
if (group === undefined)
|
|
return undefined;
|
|
|
|
return { id: groupId, numbers: group.numbers };
|
|
});
|
|
},
|
|
|
|
needUpdateByDeviceRegistrationId: function(groupId, number, encodedNumber, registrationId) {
|
|
return textsecure.storage.axolotl.getGroup(groupId).then(function(group) {
|
|
if (group === undefined)
|
|
throw new Error("Unknown group for device registration id");
|
|
|
|
if (group.numberRegistrationIds[number] === undefined)
|
|
throw new Error("Unknown number in group for device registration id");
|
|
|
|
if (group.numberRegistrationIds[number][encodedNumber] == registrationId)
|
|
return false;
|
|
|
|
var needUpdate = group.numberRegistrationIds[number][encodedNumber] !== undefined;
|
|
group.numberRegistrationIds[number][encodedNumber] = registrationId;
|
|
return textsecure.storage.axolotl.putGroup(groupId, group).then(function() {
|
|
return needUpdate;
|
|
});
|
|
});
|
|
},
|
|
};
|
|
})();
|