You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
1.1 KiB
JavaScript
42 lines
1.1 KiB
JavaScript
/* global window, textsecure, log */
|
|
|
|
// eslint-disable-next-line func-names
|
|
(function () {
|
|
window.libloki = window.libloki || {};
|
|
|
|
async function sendFriendRequestAccepted(pubKey) {
|
|
return sendEmptyMessage(pubKey);
|
|
}
|
|
|
|
async function sendEmptyMessage(pubKey) {
|
|
// empty content message
|
|
const content = new textsecure.protobuf.Content();
|
|
|
|
// will be called once the transmission succeeded or failed
|
|
const callback = res => {
|
|
if (res.errors.length > 0) {
|
|
res.errors.forEach(error => log.error(error));
|
|
} else {
|
|
log.info('empty message sent successfully');
|
|
}
|
|
};
|
|
const options = {};
|
|
// send an empty message. The logic in ougoing_message will attach the prekeys.
|
|
const outgoingMessage = new textsecure.OutgoingMessage(
|
|
null, // server
|
|
Date.now(), // timestamp,
|
|
[pubKey], // numbers
|
|
content, // message
|
|
true, // silent
|
|
callback, // callback
|
|
options
|
|
);
|
|
await outgoingMessage.sendToNumber(pubKey);
|
|
}
|
|
|
|
window.libloki.api = {
|
|
sendFriendRequestAccepted,
|
|
sendEmptyMessage,
|
|
};
|
|
})();
|