mirror of
https://github.com/cheveguerra/whatsapp-web.js.git
synced 2026-04-17 19:26:20 +00:00
1054 lines
42 KiB
HTML
1054 lines
42 KiB
HTML
<!doctype html>
|
|
<html>
|
|
|
|
<head>
|
|
<meta name="generator" content="JSDoc 3.6.7">
|
|
<meta charset="utf-8">
|
|
<title>whatsapp-web.js 1.15.2 » Source: Client.js</title>
|
|
<link rel="stylesheet" href="https://brick.a.ssl.fastly.net/Karla:400,400i,700,700i" type="text/css">
|
|
<link rel="stylesheet" href="https://brick.a.ssl.fastly.net/Noto+Serif:400,400i,700,700i" type="text/css">
|
|
<link rel="stylesheet" href="https://brick.a.ssl.fastly.net/Inconsolata:500" type="text/css">
|
|
<link href="css/baseline.css" rel="stylesheet">
|
|
</head>
|
|
|
|
<body onload="prettyPrint()">
|
|
<nav id="jsdoc-navbar" role="navigation" class="jsdoc-navbar">
|
|
<div id="jsdoc-navbar-container">
|
|
<div id="jsdoc-navbar-content">
|
|
<a href="index.html" class="jsdoc-navbar-package-name">whatsapp-web.<wbr>js 1.<wbr>15.<wbr>2</a>
|
|
</div>
|
|
</div>
|
|
</nav>
|
|
<div id="jsdoc-body-container">
|
|
<div id="jsdoc-content">
|
|
<div id="jsdoc-content-container">
|
|
<div id="jsdoc-banner" role="banner">
|
|
</div>
|
|
<div id="jsdoc-main" role="main">
|
|
<header class="page-header">
|
|
<h1>Source: Client.js</h1>
|
|
</header>
|
|
<article>
|
|
<pre class="prettyprint linenums"><code>'use strict';
|
|
|
|
const EventEmitter = require('events');
|
|
const puppeteer = require('puppeteer');
|
|
const moduleRaid = require('@pedroslopez/moduleraid/moduleraid');
|
|
const jsQR = require('jsqr');
|
|
|
|
const Util = require('./util/Util');
|
|
const InterfaceController = require('./util/InterfaceController');
|
|
const { WhatsWebURL, DefaultOptions, Events, WAState } = require('./util/Constants');
|
|
const { ExposeStore, LoadUtils } = require('./util/Injected');
|
|
const ChatFactory = require('./factories/ChatFactory');
|
|
const ContactFactory = require('./factories/ContactFactory');
|
|
const { ClientInfo, Message, MessageMedia, Contact, Location, GroupNotification , Label, Call, Buttons, List} = require('./structures');
|
|
/**
|
|
* Starting point for interacting with the WhatsApp Web API
|
|
* @extends {EventEmitter}
|
|
* @param {object} options - Client options
|
|
* @param {number} options.authTimeoutMs - Timeout for authentication selector in puppeteer
|
|
* @param {object} options.puppeteer - Puppeteer launch options. View docs here: https://github.com/puppeteer/puppeteer/
|
|
* @param {number} options.qrRefreshIntervalMs - Refresh interval for qr code (how much time to wait before checking if the qr code has changed)
|
|
* @param {number} options.qrTimeoutMs - Timeout for qr code selector in puppeteer
|
|
* @param {number} options.qrMaxRetries - How many times should the qrcode be refreshed before giving up
|
|
* @param {string} options.restartOnAuthFail - Restart client with a new session (i.e. use null 'session' var) if authentication fails
|
|
* @param {object} options.session - Whatsapp session to restore. If not set, will start a new session
|
|
* @param {string} options.session.WABrowserId
|
|
* @param {string} options.session.WASecretBundle
|
|
* @param {string} options.session.WAToken1
|
|
* @param {string} options.session.WAToken2
|
|
* @param {number} options.takeoverOnConflict - If another whatsapp web session is detected (another browser), take over the session in the current browser
|
|
* @param {number} options.takeoverTimeoutMs - How much time to wait before taking over the session
|
|
* @param {string} options.userAgent - User agent to use in puppeteer
|
|
* @param {string} options.ffmpegPath - Ffmpeg path to use when formating videos to webp while sending stickers
|
|
* @param {boolean} options.bypassCSP - Sets bypassing of page's Content-Security-Policy.
|
|
*
|
|
* @fires Client#qr
|
|
* @fires Client#authenticated
|
|
* @fires Client#auth_failure
|
|
* @fires Client#ready
|
|
* @fires Client#message
|
|
* @fires Client#message_ack
|
|
* @fires Client#message_create
|
|
* @fires Client#message_revoke_me
|
|
* @fires Client#message_revoke_everyone
|
|
* @fires Client#media_uploaded
|
|
* @fires Client#group_join
|
|
* @fires Client#group_leave
|
|
* @fires Client#group_update
|
|
* @fires Client#disconnected
|
|
* @fires Client#change_state
|
|
* @fires Client#change_battery
|
|
*/
|
|
class Client extends EventEmitter {
|
|
constructor(options = {}) {
|
|
super();
|
|
|
|
this.options = Util.mergeDefault(DefaultOptions, options);
|
|
|
|
this.pupBrowser = null;
|
|
this.pupPage = null;
|
|
|
|
Util.setFfmpegPath(this.options.ffmpegPath);
|
|
}
|
|
|
|
/**
|
|
* Sets up events and requirements, kicks off authentication request
|
|
*/
|
|
async initialize() {
|
|
let [browser, page] = [null, null];
|
|
|
|
if(this.options.puppeteer &amp;&amp; this.options.puppeteer.browserWSEndpoint) {
|
|
browser = await puppeteer.connect(this.options.puppeteer);
|
|
page = await browser.newPage();
|
|
} else {
|
|
browser = await puppeteer.launch(this.options.puppeteer);
|
|
page = (await browser.pages())[0];
|
|
}
|
|
|
|
page.setUserAgent(this.options.userAgent);
|
|
|
|
this.pupBrowser = browser;
|
|
this.pupPage = page;
|
|
|
|
if (this.options.session) {
|
|
await page.evaluateOnNewDocument(
|
|
session => {
|
|
localStorage.clear();
|
|
localStorage.setItem('WABrowserId', session.WABrowserId);
|
|
localStorage.setItem('WASecretBundle', session.WASecretBundle);
|
|
localStorage.setItem('WAToken1', session.WAToken1);
|
|
localStorage.setItem('WAToken2', session.WAToken2);
|
|
}, this.options.session);
|
|
}
|
|
|
|
if(this.options.bypassCSP) {
|
|
await page.setBypassCSP(true);
|
|
}
|
|
|
|
await page.goto(WhatsWebURL, {
|
|
waitUntil: 'load',
|
|
timeout: 0,
|
|
});
|
|
|
|
const KEEP_PHONE_CONNECTED_IMG_SELECTOR = '[data-icon="intro-md-beta-logo-dark"], [data-icon="intro-md-beta-logo-light"], [data-asset-intro-image-light="true"], [data-asset-intro-image-dark="true"]';
|
|
|
|
if (this.options.session) {
|
|
// Check if session restore was successfull
|
|
try {
|
|
await page.waitForSelector(KEEP_PHONE_CONNECTED_IMG_SELECTOR, { timeout: this.options.authTimeoutMs });
|
|
} catch (err) {
|
|
if (err.name === 'TimeoutError') {
|
|
/**
|
|
* Emitted when there has been an error while trying to restore an existing session
|
|
* @event Client#auth_failure
|
|
* @param {string} message
|
|
*/
|
|
this.emit(Events.AUTHENTICATION_FAILURE, 'Unable to log in. Are the session details valid?');
|
|
browser.close();
|
|
if (this.options.restartOnAuthFail) {
|
|
// session restore failed so try again but without session to force new authentication
|
|
this.options.session = null;
|
|
this.initialize();
|
|
}
|
|
return;
|
|
}
|
|
|
|
throw err;
|
|
}
|
|
|
|
} else {
|
|
let qrRetries = 0;
|
|
|
|
const getQrCode = async () => {
|
|
// Check if retry button is present
|
|
var QR_RETRY_SELECTOR = 'div[data-ref] > span > button';
|
|
var qrRetry = await page.$(QR_RETRY_SELECTOR);
|
|
if (qrRetry) {
|
|
await qrRetry.click();
|
|
}
|
|
|
|
// Wait for QR Code
|
|
const QR_CANVAS_SELECTOR = 'canvas';
|
|
await page.waitForSelector(QR_CANVAS_SELECTOR, { timeout: this.options.qrTimeoutMs });
|
|
const qrImgData = await page.$eval(QR_CANVAS_SELECTOR, canvas => [].slice.call(canvas.getContext('2d').getImageData(0, 0, 264, 264).data));
|
|
const qr = jsQR(qrImgData, 264, 264).data;
|
|
|
|
/**
|
|
* Emitted when the QR code is received
|
|
* @event Client#qr
|
|
* @param {string} qr QR Code
|
|
*/
|
|
this.emit(Events.QR_RECEIVED, qr);
|
|
|
|
if (this.options.qrMaxRetries > 0) {
|
|
qrRetries++;
|
|
if (qrRetries > this.options.qrMaxRetries) {
|
|
this.emit(Events.DISCONNECTED, 'Max qrcode retries reached');
|
|
await this.destroy();
|
|
}
|
|
}
|
|
};
|
|
getQrCode();
|
|
this._qrRefreshInterval = setInterval(getQrCode, this.options.qrRefreshIntervalMs);
|
|
|
|
// Wait for code scan
|
|
await page.waitForSelector(KEEP_PHONE_CONNECTED_IMG_SELECTOR, { timeout: 0 });
|
|
clearInterval(this._qrRefreshInterval);
|
|
this._qrRefreshInterval = undefined;
|
|
|
|
}
|
|
|
|
await page.evaluate(ExposeStore, moduleRaid.toString());
|
|
|
|
// Get session tokens
|
|
const localStorage = JSON.parse(await page.evaluate(() => {
|
|
return JSON.stringify(window.localStorage);
|
|
}));
|
|
|
|
const session = {
|
|
WABrowserId: localStorage.WABrowserId,
|
|
WASecretBundle: localStorage.WASecretBundle,
|
|
WAToken1: localStorage.WAToken1,
|
|
WAToken2: localStorage.WAToken2
|
|
};
|
|
|
|
/**
|
|
* Emitted when authentication is successful
|
|
* @event Client#authenticated
|
|
* @param {object} session Object containing session information. Can be used to restore the session.
|
|
* @param {string} session.WABrowserId
|
|
* @param {string} session.WASecretBundle
|
|
* @param {string} session.WAToken1
|
|
* @param {string} session.WAToken2
|
|
*/
|
|
this.emit(Events.AUTHENTICATED, session);
|
|
|
|
// Check window.Store Injection
|
|
await page.waitForFunction('window.Store != undefined');
|
|
|
|
const isMD = await page.evaluate(() => {
|
|
return window.Store.Features.features.MD_BACKEND;
|
|
});
|
|
|
|
if(isMD) {
|
|
throw new Error('Multi-device is not yet supported by whatsapp-web.js. Please check out https://github.com/pedroslopez/whatsapp-web.js/pull/889 to follow the progress.');
|
|
}
|
|
|
|
//Load util functions (serializers, helper functions)
|
|
await page.evaluate(LoadUtils);
|
|
|
|
// Expose client info
|
|
/**
|
|
* Current connection information
|
|
* @type {ClientInfo}
|
|
*/
|
|
this.info = new ClientInfo(this, await page.evaluate(() => {
|
|
return window.Store.Conn.serialize();
|
|
}));
|
|
|
|
// Add InterfaceController
|
|
this.interface = new InterfaceController(this);
|
|
|
|
// Register events
|
|
await page.exposeFunction('onAddMessageEvent', msg => {
|
|
if (!msg.isNewMsg) return;
|
|
|
|
if (msg.type === 'gp2') {
|
|
const notification = new GroupNotification(this, msg);
|
|
if (msg.subtype === 'add' || msg.subtype === 'invite') {
|
|
/**
|
|
* Emitted when a user joins the chat via invite link or is added by an admin.
|
|
* @event Client#group_join
|
|
* @param {GroupNotification} notification GroupNotification with more information about the action
|
|
*/
|
|
this.emit(Events.GROUP_JOIN, notification);
|
|
} else if (msg.subtype === 'remove' || msg.subtype === 'leave') {
|
|
/**
|
|
* Emitted when a user leaves the chat or is removed by an admin.
|
|
* @event Client#group_leave
|
|
* @param {GroupNotification} notification GroupNotification with more information about the action
|
|
*/
|
|
this.emit(Events.GROUP_LEAVE, notification);
|
|
} else {
|
|
/**
|
|
* Emitted when group settings are updated, such as subject, description or picture.
|
|
* @event Client#group_update
|
|
* @param {GroupNotification} notification GroupNotification with more information about the action
|
|
*/
|
|
this.emit(Events.GROUP_UPDATE, notification);
|
|
}
|
|
return;
|
|
}
|
|
|
|
const message = new Message(this, msg);
|
|
|
|
/**
|
|
* Emitted when a new message is created, which may include the current user's own messages.
|
|
* @event Client#message_create
|
|
* @param {Message} message The message that was created
|
|
*/
|
|
this.emit(Events.MESSAGE_CREATE, message);
|
|
|
|
if (msg.id.fromMe) return;
|
|
|
|
/**
|
|
* Emitted when a new message is received.
|
|
* @event Client#message
|
|
* @param {Message} message The message that was received
|
|
*/
|
|
this.emit(Events.MESSAGE_RECEIVED, message);
|
|
});
|
|
|
|
let last_message;
|
|
|
|
await page.exposeFunction('onChangeMessageTypeEvent', (msg) => {
|
|
|
|
if (msg.type === 'revoked') {
|
|
const message = new Message(this, msg);
|
|
let revoked_msg;
|
|
if (last_message &amp;&amp; msg.id.id === last_message.id.id) {
|
|
revoked_msg = new Message(this, last_message);
|
|
}
|
|
|
|
/**
|
|
* Emitted when a message is deleted for everyone in the chat.
|
|
* @event Client#message_revoke_everyone
|
|
* @param {Message} message The message that was revoked, in its current state. It will not contain the original message's data.
|
|
* @param {?Message} revoked_msg The message that was revoked, before it was revoked. It will contain the message's original data.
|
|
* Note that due to the way this data is captured, it may be possible that this param will be undefined.
|
|
*/
|
|
this.emit(Events.MESSAGE_REVOKED_EVERYONE, message, revoked_msg);
|
|
}
|
|
|
|
});
|
|
|
|
await page.exposeFunction('onChangeMessageEvent', (msg) => {
|
|
|
|
if (msg.type !== 'revoked') {
|
|
last_message = msg;
|
|
}
|
|
|
|
});
|
|
|
|
await page.exposeFunction('onRemoveMessageEvent', (msg) => {
|
|
|
|
if (!msg.isNewMsg) return;
|
|
|
|
const message = new Message(this, msg);
|
|
|
|
/**
|
|
* Emitted when a message is deleted by the current user.
|
|
* @event Client#message_revoke_me
|
|
* @param {Message} message The message that was revoked
|
|
*/
|
|
this.emit(Events.MESSAGE_REVOKED_ME, message);
|
|
|
|
});
|
|
|
|
await page.exposeFunction('onMessageAckEvent', (msg, ack) => {
|
|
|
|
const message = new Message(this, msg);
|
|
|
|
/**
|
|
* Emitted when an ack event occurrs on message type.
|
|
* @event Client#message_ack
|
|
* @param {Message} message The message that was affected
|
|
* @param {MessageAck} ack The new ACK value
|
|
*/
|
|
this.emit(Events.MESSAGE_ACK, message, ack);
|
|
|
|
});
|
|
|
|
await page.exposeFunction('onMessageMediaUploadedEvent', (msg) => {
|
|
|
|
const message = new Message(this, msg);
|
|
|
|
/**
|
|
* Emitted when media has been uploaded for a message sent by the client.
|
|
* @event Client#media_uploaded
|
|
* @param {Message} message The message with media that was uploaded
|
|
*/
|
|
this.emit(Events.MEDIA_UPLOADED, message);
|
|
});
|
|
|
|
await page.exposeFunction('onAppStateChangedEvent', (state) => {
|
|
|
|
/**
|
|
* Emitted when the connection state changes
|
|
* @event Client#change_state
|
|
* @param {WAState} state the new connection state
|
|
*/
|
|
this.emit(Events.STATE_CHANGED, state);
|
|
|
|
const ACCEPTED_STATES = [WAState.CONNECTED, WAState.OPENING, WAState.PAIRING, WAState.TIMEOUT];
|
|
|
|
if (this.options.takeoverOnConflict) {
|
|
ACCEPTED_STATES.push(WAState.CONFLICT);
|
|
|
|
if (state === WAState.CONFLICT) {
|
|
setTimeout(() => {
|
|
this.pupPage.evaluate(() => window.Store.AppState.takeover());
|
|
}, this.options.takeoverTimeoutMs);
|
|
}
|
|
}
|
|
|
|
if (!ACCEPTED_STATES.includes(state)) {
|
|
/**
|
|
* Emitted when the client has been disconnected
|
|
* @event Client#disconnected
|
|
* @param {WAState|"NAVIGATION"} reason reason that caused the disconnect
|
|
*/
|
|
this.emit(Events.DISCONNECTED, state);
|
|
this.destroy();
|
|
}
|
|
});
|
|
|
|
await page.exposeFunction('onBatteryStateChangedEvent', (state) => {
|
|
const { battery, plugged } = state;
|
|
|
|
if (battery === undefined) return;
|
|
|
|
/**
|
|
* Emitted when the battery percentage for the attached device changes
|
|
* @event Client#change_battery
|
|
* @param {object} batteryInfo
|
|
* @param {number} batteryInfo.battery - The current battery percentage
|
|
* @param {boolean} batteryInfo.plugged - Indicates if the phone is plugged in (true) or not (false)
|
|
*/
|
|
this.emit(Events.BATTERY_CHANGED, { battery, plugged });
|
|
});
|
|
|
|
await page.exposeFunction('onIncomingCall', (call) => {
|
|
/**
|
|
* Emitted when a call is received
|
|
* @event Client#incoming_call
|
|
* @param {object} call
|
|
* @param {number} call.id - Call id
|
|
* @param {string} call.peerJid - Who called
|
|
* @param {boolean} call.isVideo - if is video
|
|
* @param {boolean} call.isGroup - if is group
|
|
* @param {boolean} call.canHandleLocally - if we can handle in waweb
|
|
* @param {boolean} call.outgoing - if is outgoing
|
|
* @param {boolean} call.webClientShouldHandle - If Waweb should handle
|
|
* @param {object} call.participants - Participants
|
|
*/
|
|
const cll = new Call(this,call);
|
|
this.emit(Events.INCOMING_CALL, cll);
|
|
});
|
|
|
|
await page.evaluate(() => {
|
|
window.Store.Msg.on('add', (msg) => { if (msg.isNewMsg) window.onAddMessageEvent(window.WWebJS.getMessageModel(msg)); });
|
|
window.Store.Msg.on('change', (msg) => { window.onChangeMessageEvent(window.WWebJS.getMessageModel(msg)); });
|
|
window.Store.Msg.on('change:type', (msg) => { window.onChangeMessageTypeEvent(window.WWebJS.getMessageModel(msg)); });
|
|
window.Store.Msg.on('change:ack', (msg,ack) => { window.onMessageAckEvent(window.WWebJS.getMessageModel(msg), ack); });
|
|
window.Store.Msg.on('change:isUnsentMedia', (msg, unsent) => { if (msg.id.fromMe &amp;&amp; !unsent) window.onMessageMediaUploadedEvent(window.WWebJS.getMessageModel(msg)); });
|
|
window.Store.Msg.on('remove', (msg) => { if (msg.isNewMsg) window.onRemoveMessageEvent(window.WWebJS.getMessageModel(msg)); });
|
|
window.Store.AppState.on('change:state', (_AppState, state) => { window.onAppStateChangedEvent(state); });
|
|
window.Store.Conn.on('change:battery', (state) => { window.onBatteryStateChangedEvent(state); });
|
|
window.Store.Call.on('add', (call) => { window.onIncomingCall(call); });
|
|
});
|
|
|
|
/**
|
|
* Emitted when the client has initialized and is ready to receive messages.
|
|
* @event Client#ready
|
|
*/
|
|
this.emit(Events.READY);
|
|
|
|
// Disconnect when navigating away
|
|
// Because WhatsApp Web now reloads when logging out from the device, this also covers that case
|
|
this.pupPage.on('framenavigated', async () => {
|
|
this.emit(Events.DISCONNECTED, 'NAVIGATION');
|
|
await this.destroy();
|
|
});
|
|
}
|
|
|
|
/**
|
|
* Closes the client
|
|
*/
|
|
async destroy() {
|
|
if (this._qrRefreshInterval) {
|
|
clearInterval(this._qrRefreshInterval);
|
|
}
|
|
await this.pupBrowser.close();
|
|
}
|
|
|
|
/**
|
|
* Logs out the client, closing the current session
|
|
*/
|
|
async logout() {
|
|
return await this.pupPage.evaluate(() => {
|
|
return window.Store.AppState.logout();
|
|
});
|
|
}
|
|
|
|
/**
|
|
* Returns the version of WhatsApp Web currently being run
|
|
* @returns {Promise&lt;string>}
|
|
*/
|
|
async getWWebVersion() {
|
|
return await this.pupPage.evaluate(() => {
|
|
return window.Debug.VERSION;
|
|
});
|
|
}
|
|
|
|
/**
|
|
* Mark as seen for the Chat
|
|
* @param {string} chatId
|
|
* @returns {Promise&lt;boolean>} result
|
|
*
|
|
*/
|
|
async sendSeen(chatId) {
|
|
const result = await this.pupPage.evaluate(async (chatId) => {
|
|
return window.WWebJS.sendSeen(chatId);
|
|
|
|
}, chatId);
|
|
return result;
|
|
}
|
|
|
|
/**
|
|
* Message options.
|
|
* @typedef {Object} MessageSendOptions
|
|
* @property {boolean} [linkPreview=true] - Show links preview
|
|
* @property {boolean} [sendAudioAsVoice=false] - Send audio as voice message
|
|
* @property {boolean} [sendVideoAsGif=false] - Send video as gif
|
|
* @property {boolean} [sendMediaAsSticker=false] - Send media as a sticker
|
|
* @property {boolean} [sendMediaAsDocument=false] - Send media as a document
|
|
* @property {boolean} [parseVCards=true] - Automatically parse vCards and send them as contacts
|
|
* @property {string} [caption] - Image or video caption
|
|
* @property {string} [quotedMessageId] - Id of the message that is being quoted (or replied to)
|
|
* @property {Contact[]} [mentions] - Contacts that are being mentioned in the message
|
|
* @property {boolean} [sendSeen=true] - Mark the conversation as seen after sending the message
|
|
* @property {string} [stickerAuthor=undefined] - Sets the author of the sticker, (if sendMediaAsSticker is true).
|
|
* @property {string} [stickerName=undefined] - Sets the name of the sticker, (if sendMediaAsSticker is true).
|
|
* @property {string[]} [stickerCategories=undefined] - Sets the categories of the sticker, (if sendMediaAsSticker is true). Provide emoji char array, can be null.
|
|
* @property {MessageMedia} [media] - Media to be sent
|
|
*/
|
|
|
|
/**
|
|
* Send a message to a specific chatId
|
|
* @param {string} chatId
|
|
* @param {string|MessageMedia|Location|Contact|Array&lt;Contact>|Buttons|List} content
|
|
* @param {MessageSendOptions} [options] - Options used when sending the message
|
|
*
|
|
* @returns {Promise&lt;Message>} Message that was just sent
|
|
*/
|
|
async sendMessage(chatId, content, options = {}) {
|
|
let internalOptions = {
|
|
linkPreview: options.linkPreview === false ? undefined : true,
|
|
sendAudioAsVoice: options.sendAudioAsVoice,
|
|
sendVideoAsGif: options.sendVideoAsGif,
|
|
sendMediaAsSticker: options.sendMediaAsSticker,
|
|
sendMediaAsDocument: options.sendMediaAsDocument,
|
|
caption: options.caption,
|
|
quotedMessageId: options.quotedMessageId,
|
|
parseVCards: options.parseVCards === false ? false : true,
|
|
mentionedJidList: Array.isArray(options.mentions) ? options.mentions.map(contact => contact.id._serialized) : [],
|
|
...options.extra
|
|
};
|
|
|
|
const sendSeen = typeof options.sendSeen === 'undefined' ? true : options.sendSeen;
|
|
|
|
if (content instanceof MessageMedia) {
|
|
internalOptions.attachment = content;
|
|
content = '';
|
|
} else if (options.media instanceof MessageMedia) {
|
|
internalOptions.attachment = options.media;
|
|
internalOptions.caption = content;
|
|
content = '';
|
|
} else if (content instanceof Location) {
|
|
internalOptions.location = content;
|
|
content = '';
|
|
} else if(content instanceof Contact) {
|
|
internalOptions.contactCard = content.id._serialized;
|
|
content = '';
|
|
} else if(Array.isArray(content) &amp;&amp; content.length > 0 &amp;&amp; content[0] instanceof Contact) {
|
|
internalOptions.contactCardList = content.map(contact => contact.id._serialized);
|
|
content = '';
|
|
} else if(content instanceof Buttons){
|
|
if(content.type !== 'chat'){internalOptions.attachment = content.body;}
|
|
internalOptions.buttons = content;
|
|
content = '';
|
|
} else if(content instanceof List){
|
|
internalOptions.list = content;
|
|
content = '';
|
|
}
|
|
|
|
if (internalOptions.sendMediaAsSticker &amp;&amp; internalOptions.attachment) {
|
|
internalOptions.attachment =
|
|
await Util.formatToWebpSticker(internalOptions.attachment, {
|
|
name: options.stickerName,
|
|
author: options.stickerAuthor,
|
|
categories: options.stickerCategories
|
|
});
|
|
}
|
|
|
|
const newMessage = await this.pupPage.evaluate(async (chatId, message, options, sendSeen) => {
|
|
const chatWid = window.Store.WidFactory.createWid(chatId);
|
|
const chat = await window.Store.Chat.find(chatWid);
|
|
|
|
if (sendSeen) {
|
|
window.WWebJS.sendSeen(chatId);
|
|
}
|
|
|
|
const msg = await window.WWebJS.sendMessage(chat, message, options, sendSeen);
|
|
return msg.serialize();
|
|
}, chatId, content, internalOptions, sendSeen);
|
|
|
|
return new Message(this, newMessage);
|
|
}
|
|
|
|
/**
|
|
* Searches for messages
|
|
* @param {string} query
|
|
* @param {Object} [options]
|
|
* @param {number} [options.page]
|
|
* @param {number} [options.limit]
|
|
* @param {string} [options.chatId]
|
|
* @returns {Promise&lt;Message[]>}
|
|
*/
|
|
async searchMessages(query, options = {}) {
|
|
const messages = await this.pupPage.evaluate(async (query, page, count, remote) => {
|
|
const { messages } = await window.Store.Msg.search(query, page, count, remote);
|
|
return messages.map(msg => window.WWebJS.getMessageModel(msg));
|
|
}, query, options.page, options.limit, options.chatId);
|
|
|
|
return messages.map(msg => new Message(this, msg));
|
|
}
|
|
|
|
/**
|
|
* Get all current chat instances
|
|
* @returns {Promise&lt;Array&lt;Chat>>}
|
|
*/
|
|
async getChats() {
|
|
let chats = await this.pupPage.evaluate(async () => {
|
|
return await window.WWebJS.getChats();
|
|
});
|
|
|
|
return chats.map(chat => ChatFactory.create(this, chat));
|
|
}
|
|
|
|
/**
|
|
* Get chat instance by ID
|
|
* @param {string} chatId
|
|
* @returns {Promise&lt;Chat>}
|
|
*/
|
|
async getChatById(chatId) {
|
|
let chat = await this.pupPage.evaluate(async chatId => {
|
|
return await window.WWebJS.getChat(chatId);
|
|
}, chatId);
|
|
|
|
return ChatFactory.create(this, chat);
|
|
}
|
|
|
|
/**
|
|
* Get all current contact instances
|
|
* @returns {Promise&lt;Array&lt;Contact>>}
|
|
*/
|
|
async getContacts() {
|
|
let contacts = await this.pupPage.evaluate(() => {
|
|
return window.WWebJS.getContacts();
|
|
});
|
|
|
|
return contacts.map(contact => ContactFactory.create(this, contact));
|
|
}
|
|
|
|
/**
|
|
* Get contact instance by ID
|
|
* @param {string} contactId
|
|
* @returns {Promise&lt;Contact>}
|
|
*/
|
|
async getContactById(contactId) {
|
|
let contact = await this.pupPage.evaluate(contactId => {
|
|
return window.WWebJS.getContact(contactId);
|
|
}, contactId);
|
|
|
|
return ContactFactory.create(this, contact);
|
|
}
|
|
|
|
/**
|
|
* Returns an object with information about the invite code's group
|
|
* @param {string} inviteCode
|
|
* @returns {Promise&lt;object>} Invite information
|
|
*/
|
|
async getInviteInfo(inviteCode) {
|
|
return await this.pupPage.evaluate(inviteCode => {
|
|
return window.Store.Wap.groupInviteInfo(inviteCode);
|
|
}, inviteCode);
|
|
}
|
|
|
|
/**
|
|
* Accepts an invitation to join a group
|
|
* @param {string} inviteCode Invitation code
|
|
* @returns {Promise&lt;string>} Id of the joined Chat
|
|
*/
|
|
async acceptInvite(inviteCode) {
|
|
const chatId = await this.pupPage.evaluate(async inviteCode => {
|
|
return await window.Store.Invite.sendJoinGroupViaInvite(inviteCode);
|
|
}, inviteCode);
|
|
|
|
return chatId._serialized;
|
|
}
|
|
|
|
/**
|
|
* Accepts a private invitation to join a group
|
|
* @param {object} inviteV4 Invite V4 Info
|
|
* @returns {Promise&lt;Object>}
|
|
*/
|
|
async acceptGroupV4Invite(inviteInfo) {
|
|
if(!inviteInfo.inviteCode) throw 'Invalid invite code, try passing the message.inviteV4 object';
|
|
if (inviteInfo.inviteCodeExp == 0) throw 'Expired invite code';
|
|
return await this.pupPage.evaluate(async inviteInfo => {
|
|
let { groupId, fromId, inviteCode, inviteCodeExp, toId } = inviteInfo;
|
|
return await window.Store.Wap.acceptGroupV4Invite(groupId, fromId, inviteCode, String(inviteCodeExp), toId);
|
|
}, inviteInfo);
|
|
}
|
|
|
|
/**
|
|
* Sets the current user's status message
|
|
* @param {string} status New status message
|
|
*/
|
|
async setStatus(status) {
|
|
await this.pupPage.evaluate(async status => {
|
|
return await window.Store.Wap.sendSetStatus(status);
|
|
}, status);
|
|
}
|
|
|
|
/**
|
|
* Sets the current user's display name.
|
|
* This is the name shown to WhatsApp users that have not added you as a contact beside your number in groups and in your profile.
|
|
* @param {string} displayName New display name
|
|
*/
|
|
async setDisplayName(displayName) {
|
|
await this.pupPage.evaluate(async displayName => {
|
|
return await window.Store.Wap.setPushname(displayName);
|
|
}, displayName);
|
|
}
|
|
|
|
/**
|
|
* Gets the current connection state for the client
|
|
* @returns {WAState}
|
|
*/
|
|
async getState() {
|
|
return await this.pupPage.evaluate(() => {
|
|
return window.Store.AppState.state;
|
|
});
|
|
}
|
|
|
|
/**
|
|
* Marks the client as online
|
|
*/
|
|
async sendPresenceAvailable() {
|
|
return await this.pupPage.evaluate(() => {
|
|
return window.Store.Wap.sendPresenceAvailable();
|
|
});
|
|
}
|
|
|
|
/**
|
|
* Enables and returns the archive state of the Chat
|
|
* @returns {boolean}
|
|
*/
|
|
async archiveChat(chatId) {
|
|
return await this.pupPage.evaluate(async chatId => {
|
|
let chat = await window.Store.Chat.get(chatId);
|
|
await window.Store.Cmd.archiveChat(chat, true);
|
|
return chat.archive;
|
|
}, chatId);
|
|
}
|
|
|
|
/**
|
|
* Changes and returns the archive state of the Chat
|
|
* @returns {boolean}
|
|
*/
|
|
async unarchiveChat(chatId) {
|
|
return await this.pupPage.evaluate(async chatId => {
|
|
let chat = await window.Store.Chat.get(chatId);
|
|
await window.Store.Cmd.archiveChat(chat, false);
|
|
return chat.archive;
|
|
}, chatId);
|
|
}
|
|
|
|
/**
|
|
* Pins the Chat
|
|
* @returns {Promise&lt;boolean>} New pin state. Could be false if the max number of pinned chats was reached.
|
|
*/
|
|
async pinChat(chatId) {
|
|
return this.pupPage.evaluate(async chatId => {
|
|
let chat = window.Store.Chat.get(chatId);
|
|
if (chat.pin) {
|
|
return true;
|
|
}
|
|
const MAX_PIN_COUNT = 3;
|
|
if (window.Store.Chat.models.length > MAX_PIN_COUNT) {
|
|
let maxPinned = window.Store.Chat.models[MAX_PIN_COUNT - 1].pin;
|
|
if (maxPinned) {
|
|
return false;
|
|
}
|
|
}
|
|
await window.Store.Cmd.pinChat(chat, true);
|
|
return true;
|
|
}, chatId);
|
|
}
|
|
|
|
/**
|
|
* Unpins the Chat
|
|
* @returns {Promise&lt;boolean>} New pin state
|
|
*/
|
|
async unpinChat(chatId) {
|
|
return this.pupPage.evaluate(async chatId => {
|
|
let chat = window.Store.Chat.get(chatId);
|
|
if (!chat.pin) {
|
|
return false;
|
|
}
|
|
await window.Store.Cmd.pinChat(chat, false);
|
|
return false;
|
|
}, chatId);
|
|
}
|
|
|
|
/**
|
|
* Mutes this chat forever, unless a date is specified
|
|
* @param {string} chatId ID of the chat that will be muted
|
|
* @param {?Date} unmuteDate Date when the chat will be unmuted, leave as is to mute forever
|
|
*/
|
|
async muteChat(chatId, unmuteDate) {
|
|
unmuteDate = unmuteDate ? unmuteDate.getTime() / 1000 : -1;
|
|
await this.pupPage.evaluate(async (chatId, timestamp) => {
|
|
let chat = await window.Store.Chat.get(chatId);
|
|
await chat.mute.mute(timestamp, !0);
|
|
}, chatId, unmuteDate || -1);
|
|
}
|
|
|
|
/**
|
|
* Unmutes the Chat
|
|
* @param {string} chatId ID of the chat that will be unmuted
|
|
*/
|
|
async unmuteChat(chatId) {
|
|
await this.pupPage.evaluate(async chatId => {
|
|
let chat = await window.Store.Chat.get(chatId);
|
|
await window.Store.Cmd.muteChat(chat, false);
|
|
}, chatId);
|
|
}
|
|
|
|
/**
|
|
* Mark the Chat as unread
|
|
* @param {string} chatId ID of the chat that will be marked as unread
|
|
*/
|
|
async markChatUnread(chatId) {
|
|
await this.pupPage.evaluate(async chatId => {
|
|
let chat = await window.Store.Chat.get(chatId);
|
|
await window.Store.Cmd.markChatUnread(chat, true);
|
|
}, chatId);
|
|
}
|
|
|
|
/**
|
|
* Returns the contact ID's profile picture URL, if privacy settings allow it
|
|
* @param {string} contactId the whatsapp user's ID
|
|
* @returns {Promise&lt;string>}
|
|
*/
|
|
async getProfilePicUrl(contactId) {
|
|
const profilePic = await this.pupPage.evaluate((contactId) => {
|
|
return window.Store.Wap.profilePicFind(contactId);
|
|
}, contactId);
|
|
|
|
return profilePic ? profilePic.eurl : undefined;
|
|
}
|
|
|
|
/**
|
|
* Force reset of connection state for the client
|
|
*/
|
|
async resetState() {
|
|
await this.pupPage.evaluate(() => {
|
|
window.Store.AppState.phoneWatchdog.shiftTimer.forceRunNow();
|
|
});
|
|
}
|
|
|
|
/**
|
|
* Check if a given ID is registered in whatsapp
|
|
* @param {string} id the whatsapp user's ID
|
|
* @returns {Promise&lt;Boolean>}
|
|
*/
|
|
async isRegisteredUser(id) {
|
|
return await this.pupPage.evaluate(async (id) => {
|
|
let result = await window.Store.Wap.queryExist(id);
|
|
return result.jid !== undefined;
|
|
}, id);
|
|
}
|
|
|
|
/**
|
|
* Get the registered WhatsApp ID for a number.
|
|
* Will return null if the number is not registered on WhatsApp.
|
|
* @param {string} number Number or ID ("@c.us" will be automatically appended if not specified)
|
|
* @returns {Promise&lt;Object|null>}
|
|
*/
|
|
async getNumberId(number) {
|
|
if (!number.endsWith('@c.us')) number += '@c.us';
|
|
try {
|
|
return await this.pupPage.evaluate(async numberId => {
|
|
return window.WWebJS.getNumberId(numberId);
|
|
}, number);
|
|
} catch(_) {
|
|
return null;
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Get the formatted number of a WhatsApp ID.
|
|
* @param {string} number Number or ID
|
|
* @returns {Promise&lt;string>}
|
|
*/
|
|
async getFormattedNumber(number) {
|
|
if(!number.endsWith('@s.whatsapp.net')) number = number.replace('c.us', 's.whatsapp.net');
|
|
if(!number.includes('@s.whatsapp.net')) number = `${number}@s.whatsapp.net`;
|
|
|
|
return await this.pupPage.evaluate(async numberId => {
|
|
return window.Store.NumberInfo.formattedPhoneNumber(numberId);
|
|
}, number);
|
|
}
|
|
|
|
/**
|
|
* Get the country code of a WhatsApp ID.
|
|
* @param {string} number Number or ID
|
|
* @returns {Promise&lt;string>}
|
|
*/
|
|
async getCountryCode(number) {
|
|
number = number.replace(' ', '').replace('+', '').replace('@c.us', '');
|
|
|
|
return await this.pupPage.evaluate(async numberId => {
|
|
return window.Store.NumberInfo.findCC(numberId);
|
|
}, number);
|
|
}
|
|
|
|
/**
|
|
* Create a new group
|
|
* @param {string} name group title
|
|
* @param {Array&lt;Contact|string>} participants an array of Contacts or contact IDs to add to the group
|
|
* @returns {Object} createRes
|
|
* @returns {string} createRes.gid - ID for the group that was just created
|
|
* @returns {Object.&lt;string,string>} createRes.missingParticipants - participants that were not added to the group. Keys represent the ID for participant that was not added and its value is a status code that represents the reason why participant could not be added. This is usually 403 if the user's privacy settings don't allow you to add them to groups.
|
|
*/
|
|
async createGroup(name, participants) {
|
|
if (!Array.isArray(participants) || participants.length == 0) {
|
|
throw 'You need to add at least one other participant to the group';
|
|
}
|
|
|
|
if (participants.every(c => c instanceof Contact)) {
|
|
participants = participants.map(c => c.id._serialized);
|
|
}
|
|
|
|
const createRes = await this.pupPage.evaluate(async (name, participantIds) => {
|
|
const res = await window.Store.Wap.createGroup(name, participantIds);
|
|
console.log(res);
|
|
if (!res.status === 200) {
|
|
throw 'An error occurred while creating the group!';
|
|
}
|
|
|
|
return res;
|
|
}, name, participants);
|
|
|
|
const missingParticipants = createRes.participants.reduce(((missing, c) => {
|
|
const id = Object.keys(c)[0];
|
|
const statusCode = c[id].code;
|
|
if (statusCode != 200) return Object.assign(missing, { [id]: statusCode });
|
|
return missing;
|
|
}), {});
|
|
|
|
return { gid: createRes.gid, missingParticipants };
|
|
}
|
|
|
|
/**
|
|
* Get all current Labels
|
|
* @returns {Promise&lt;Array&lt;Label>>}
|
|
*/
|
|
async getLabels() {
|
|
const labels = await this.pupPage.evaluate(async () => {
|
|
return window.WWebJS.getLabels();
|
|
});
|
|
|
|
return labels.map(data => new Label(this , data));
|
|
}
|
|
|
|
/**
|
|
* Get Label instance by ID
|
|
* @param {string} labelId
|
|
* @returns {Promise&lt;Label>}
|
|
*/
|
|
async getLabelById(labelId) {
|
|
const label = await this.pupPage.evaluate(async (labelId) => {
|
|
return window.WWebJS.getLabel(labelId);
|
|
}, labelId);
|
|
|
|
return new Label(this, label);
|
|
}
|
|
|
|
/**
|
|
* Get all Labels assigned to a chat
|
|
* @param {string} chatId
|
|
* @returns {Promise&lt;Array&lt;Label>>}
|
|
*/
|
|
async getChatLabels(chatId){
|
|
const labels = await this.pupPage.evaluate(async (chatId) => {
|
|
return window.WWebJS.getChatLabels(chatId);
|
|
}, chatId);
|
|
|
|
return labels.map(data => new Label(this, data));
|
|
}
|
|
|
|
/**
|
|
* Get all Chats for a specific Label
|
|
* @param {string} labelId
|
|
* @returns {Promise&lt;Array&lt;Chat>>}
|
|
*/
|
|
async getChatsByLabelId(labelId){
|
|
const chatIds = await this.pupPage.evaluate(async (labelId) => {
|
|
const label = window.Store.Label.get(labelId);
|
|
const labelItems = label.labelItemCollection.models;
|
|
return labelItems.reduce((result, item) => {
|
|
if(item.parentType === 'Chat'){
|
|
result.push(item.parentId);
|
|
}
|
|
return result;
|
|
},[]);
|
|
}, labelId);
|
|
|
|
return Promise.all(chatIds.map(id => this.getChatById(id)));
|
|
}
|
|
|
|
/**
|
|
* Gets all blocked contacts by host account
|
|
* @returns {Promise&lt;Array&lt;Contact>>}
|
|
*/
|
|
async getBlockedContacts() {
|
|
const blockedContacts = await this.pupPage.evaluate(() => {
|
|
let chatIds = window.Store.Blocklist.models.map(a => a.id._serialized);
|
|
return Promise.all(chatIds.map(id => window.WWebJS.getContact(id)));
|
|
});
|
|
|
|
return blockedContacts.map(contact => ContactFactory.create(this.client, contact));
|
|
}
|
|
}
|
|
|
|
module.exports = Client;
|
|
</code></pre>
|
|
</article>
|
|
</div>
|
|
</div>
|
|
<nav id="jsdoc-toc-nav" role="navigation"></nav>
|
|
</div>
|
|
</div>
|
|
<footer id="jsdoc-footer" class="jsdoc-footer">
|
|
<div id="jsdoc-footer-container">
|
|
<p>
|
|
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc</a> 3.6.7 on November 24, 2021.
|
|
</p>
|
|
</div>
|
|
</footer>
|
|
<script src="scripts/jquery.min.js"></script>
|
|
<script src="scripts/tree.jquery.js"></script>
|
|
<script src="scripts/prettify.js"></script>
|
|
<script src="scripts/jsdoc-toc.js"></script>
|
|
<script src="scripts/linenumber.js"></script>
|
|
<script src="scripts/scrollanchor.js"></script>
|
|
</body>
|
|
|
|
</html> |