mirror of
https://github.com/cheveguerra/whatsapp-web.js.git
synced 2026-04-21 13:09:15 +00:00
feat: Implement Call Rejection + Introduction of Socket API (#1882)
* Initial stage * ESLint * eslint is annoying * fix: distinguish Wap from Socket's Wap
This commit is contained in:
3
index.d.ts
vendored
3
index.d.ts
vendored
@@ -1326,6 +1326,9 @@ declare namespace WAWebJS {
|
|||||||
webClientShouldHandle: boolean,
|
webClientShouldHandle: boolean,
|
||||||
/** Object with participants */
|
/** Object with participants */
|
||||||
participants: object
|
participants: object
|
||||||
|
|
||||||
|
/** Reject the call */
|
||||||
|
reject: () => Promise<void>
|
||||||
}
|
}
|
||||||
|
|
||||||
/** Message type List */
|
/** Message type List */
|
||||||
|
|||||||
@@ -62,7 +62,15 @@ class Call extends Base {
|
|||||||
|
|
||||||
return super._patch(data);
|
return super._patch(data);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Reject the call
|
||||||
|
*/
|
||||||
|
async reject() {
|
||||||
|
return this.client.pupPage.evaluate((peerJid, id) => {
|
||||||
|
return window.WWebJS.rejectCall(peerJid, id);
|
||||||
|
}, this.from, this.id);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
module.exports = Call;
|
module.exports = Call;
|
||||||
@@ -53,6 +53,8 @@ exports.ExposeStore = (moduleRaidStr) => {
|
|||||||
window.Store.ReplyUtils = window.mR.findModule('canReplyMsg').length > 0 && window.mR.findModule('canReplyMsg')[0];
|
window.Store.ReplyUtils = window.mR.findModule('canReplyMsg').length > 0 && window.mR.findModule('canReplyMsg')[0];
|
||||||
window.Store.MsgActionChecks = window.mR.findModule('canSenderRevokeMsg')[0];
|
window.Store.MsgActionChecks = window.mR.findModule('canSenderRevokeMsg')[0];
|
||||||
window.Store.QuotedMsg = window.mR.findModule('getQuotedMsgObj')[0];
|
window.Store.QuotedMsg = window.mR.findModule('getQuotedMsgObj')[0];
|
||||||
|
window.Store.Socket = window.mR.findModule('deprecatedSendIq')[0];
|
||||||
|
window.Store.SocketWap = window.mR.findModule('wap')[0];
|
||||||
window.Store.StickerTools = {
|
window.Store.StickerTools = {
|
||||||
...window.mR.findModule('toWebpSticker')[0],
|
...window.mR.findModule('toWebpSticker')[0],
|
||||||
...window.mR.findModule('addWebpMetadata')[0]
|
...window.mR.findModule('addWebpMetadata')[0]
|
||||||
@@ -602,4 +604,21 @@ exports.LoadUtils = () => {
|
|||||||
|
|
||||||
return undefined;
|
return undefined;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
window.WWebJS.rejectCall = async (peerJid, id) => {
|
||||||
|
peerJid = peerJid.split('@')[0] + '@s.whatsapp.net';
|
||||||
|
let userId = window.Store.User.getMaybeMeUser().user + '@s.whatsapp.net';
|
||||||
|
const stanza = window.Store.SocketWap.wap('call', {
|
||||||
|
id: window.Store.SocketWap.generateId(),
|
||||||
|
from: window.Store.SocketWap.USER_JID(userId),
|
||||||
|
to: window.Store.SocketWap.USER_JID(peerJid),
|
||||||
|
}, [
|
||||||
|
window.Store.SocketWap.wap('reject', {
|
||||||
|
'call-id': id,
|
||||||
|
'call-creator': window.Store.SocketWap.USER_JID(peerJid),
|
||||||
|
count: '0',
|
||||||
|
})
|
||||||
|
]);
|
||||||
|
await window.Store.Socket.deprecatedCastStanza(stanza);
|
||||||
|
};
|
||||||
};
|
};
|
||||||
|
|||||||
Reference in New Issue
Block a user