Updated function calls.

pull/125/head
Mikunj 6 years ago
parent 982f10a505
commit 070d18b514

@ -620,7 +620,7 @@
response: 'declined',
direction: 'incoming',
});
await window.libloki.removeContactPreKeyBundle(this.id);
await window.libloki.storage.removeContactPreKeyBundle(this.id);
},
// We have accepted an incoming friend request
async onAcceptFriendRequest() {
@ -630,7 +630,7 @@
response: 'accepted',
direction: 'incoming',
});
window.libloki.sendFriendRequestAccepted(this.id);
window.libloki.api.sendFriendRequestAccepted(this.id);
}
},
// Our outgoing friend request has been accepted
@ -1548,7 +1548,7 @@
await this.setSessionResetStatus(SessionResetEnum.request_received);
// send empty message, this will trigger the new session to propagate
// to the reset initiator.
await window.libloki.sendEmptyMessage(this.id);
await window.libloki.api.sendEmptyMessage(this.id);
},
isSessionResetReceived() {
@ -1582,7 +1582,7 @@
async onNewSessionAdopted() {
if (this.get('sessionResetStatus') === SessionResetEnum.initiated) {
// send empty message to confirm that we have adopted the new session
await window.libloki.sendEmptyMessage(this.id);
await window.libloki.api.sendEmptyMessage(this.id);
}
await this.createAndStoreEndSessionMessage({ type: 'incoming', endSessionType: 'done' });
await this.setSessionResetStatus(SessionResetEnum.none);

@ -1407,7 +1407,7 @@
autoAccept = true;
message.set({ friendStatus: 'accepted' });
await conversation.onFriendRequestAccepted();
window.libloki.sendFriendRequestAccepted(message.get('source'));
window.libloki.api.sendFriendRequestAccepted(message.get('source'));
} else if (!conversation.isFriend()) {
await conversation.onFriendRequestReceived();
}

@ -24,8 +24,10 @@
<script type="text/javascript" src="../../libtextsecure/protobufs.js" data-cover></script>
<script type="text/javascript" src="../../libtextsecure/stringview.js" data-cover></script>
<script type="text/javascript" src="../libloki-protocol.js" data-cover></script>
<script type="text/javascript" src="../api.js" data-cover></script>
<script type="text/javascript" src="../crypto.js" data-cover></script>
<script type="text/javascript" src="../service_nodes.js" data-cover></script>
<script type="text/javascript" src="../storage.js" data-cover></script>
<script type="text/javascript" src="proof-of-work_test.js"></script>
<script type="text/javascript" src="libloki-protocol_test.js"></script>

@ -18,7 +18,7 @@ describe('FallBackSessionCipher', () => {
pubKeyString,
1
);
fallbackCipher = new libloki.FallBackSessionCipher(address);
fallbackCipher = new libloki.crypto.FallBackSessionCipher(address);
});
it('should encrypt fallback cipher messages as friend requests', async () => {
@ -53,7 +53,7 @@ describe('LibLoki Protocol', () => {
const pubKey = libsignal.crypto.getRandomBytes(32);
const pubKeyString = StringView.arrayBufferToHex(pubKey);
const preKeyIdBefore = textsecure.storage.get('maxPreKeyId', 1);
const newBundle = await libloki.getPreKeyBundleForContact(pubKeyString);
const newBundle = await libloki.storage.getPreKeyBundleForContact(pubKeyString);
const preKeyIdAfter = textsecure.storage.get('maxPreKeyId', 1);
assert.strictEqual(preKeyIdAfter, preKeyIdBefore + 1);
@ -74,8 +74,8 @@ describe('LibLoki Protocol', () => {
it('should return the same prekey bundle after creating a contact', async () => {
const pubKey = libsignal.crypto.getRandomBytes(32);
const pubKeyString = StringView.arrayBufferToHex(pubKey);
const bundle1 = await libloki.getPreKeyBundleForContact(pubKeyString);
const bundle2 = await libloki.getPreKeyBundleForContact(pubKeyString);
const bundle1 = await libloki.storage.getPreKeyBundleForContact(pubKeyString);
const bundle2 = await libloki.storage.getPreKeyBundleForContact(pubKeyString);
assert.isDefined(bundle1);
assert.isDefined(bundle2);
assert.deepEqual(bundle1, bundle2);
@ -85,7 +85,7 @@ describe('LibLoki Protocol', () => {
const pubKey = libsignal.crypto.getRandomBytes(32);
const pubKeyString = StringView.arrayBufferToHex(pubKey);
const preKeyIdBefore = textsecure.storage.get('maxPreKeyId', 1);
const newBundle = await libloki.getPreKeyBundleForContact(pubKeyString);
const newBundle = await libloki.storage.getPreKeyBundleForContact(pubKeyString);
const preKeyIdAfter = textsecure.storage.get('maxPreKeyId', 1);
assert.strictEqual(preKeyIdAfter, preKeyIdBefore + 1);

@ -605,7 +605,7 @@ MessageReceiver.prototype.extend({
textsecure.storage.protocol
);
const fallBackSessionCipher = new libloki.FallBackSessionCipher(
const fallBackSessionCipher = new libloki.crypto.FallBackSessionCipher(
address
);
@ -1238,7 +1238,7 @@ MessageReceiver.prototype.extend({
);
}
await libloki.saveContactPreKeyBundle({
await libloki.storage.saveContactPreKeyBundle({
pubKey,
preKeyId,
signedKeyId,

@ -121,7 +121,7 @@ OutgoingMessage.prototype = {
}
return builder.processPreKey(device).then(async () => {
// TODO: only remove the keys that were used above!
await window.libloki.removeContactPreKeyBundle(number);
await window.libloki.storage.removeContactPreKeyBundle(number);
return true;
}
).catch(error => {
@ -288,7 +288,7 @@ OutgoingMessage.prototype = {
const address = new libsignal.SignalProtocolAddress(number, deviceId);
const ourKey = textsecure.storage.user.getNumber();
const options = {};
const fallBackCipher = new libloki.FallBackSessionCipher(address);
const fallBackCipher = new libloki.crypto.FallBackSessionCipher(address);
// Check if we need to attach the preKeys
let sessionCipher;
@ -297,7 +297,7 @@ OutgoingMessage.prototype = {
const isEndSession = flags === textsecure.protobuf.DataMessage.Flags.END_SESSION;
if (isFriendRequest || isEndSession) {
// Encrypt them with the fallback
const pkb = await libloki.getPreKeyBundleForContact(number);
const pkb = await libloki.storage.getPreKeyBundleForContact(number);
const preKeyBundleMessage = new textsecure.protobuf.PreKeyBundleMessage(pkb);
this.message.preKeyBundleMessage = preKeyBundleMessage;
window.log.info('attaching prekeys to outgoing message');

Loading…
Cancel
Save