mirror of
https://github.com/cheveguerra/whatsapp-web.js.git
synced 2026-04-18 03:29:14 +00:00
* 🚑 Added ready selector for multi-device * SendMessage fix * File management system and some fixes * cleanup * cleanup again * eslint * critical fix for reloading the same session * Checking for valid folder name (regex) * ESLint hotfix (regex escapes) * Typings cleanup * cleanup listener * Multi-device Branch merge (#888) * Duplicate * qr fix and allow non-beta users to connect * urgent: selector fix * urgent: qr timeout fix * fix * Updated type so no TS error when sending list/buttons * Update index.d.ts * fix QueryExist for Multidevice (#928) * creates isRegisteredUserBeta * fix QueryExist * fix Error: GROUP_JID: invalid jid type: Not an instance of WID issue (#926) * fix Error: GROUP_JID: invalid jid type: Not an instance of WID issue * clean code * Cleanup * Fix for update chrome error * ESLint fix * :red_light: fix for RMDIR * Update README.md * Update README.md * fix: getProfilePicUrl fix by victormga (#941) * fix: MD presence available/unavailable (#942) * delete session when appropriate & fix for SW * ignore QR timeout errors * Presence and ChatState updates working for MD+Non-MD * shell uses new session storage * lint fix * support session.json-based auth for non-md * md fix * md fix * fix shell clientId * remove exclusive mocha test * make linkPreview default to false * remove ignored errors on getQuotedMessage * fix: dont modify existing this.options.puppeteer object * tests work with new dir auth * remove exclusive test * fixes and tests for group creation and participant functions * remove unused function * wip fix group settings functions * isRegisteredUser && getNumberId hotFix (#955) * isRegisteredUser && getNumberId hotFix A fix for client.isRegisteredUser and client.getNumberId. Use for reference or if you are stuck with MD and NEEDS this function. Problably Whatsapp will break this in a couple weeks * fix for non-md Co-authored-by: Rajeh Taher <rajeh@reforward.dev> * Fix WA 2.2146.9 MD + victormga branch (#991) * qrcode now uses observers instead of timeout * automatic auth/qrcode detection * Fix WA 2.2146.9 MD Got from github:victormga/whatsapp-web.js#multidevice maybe it's behind pedro branch Co-authored-by: victormga <victor_mga@hotmail.com> * fix * fix* * getnumberid to multidevice (#1027) * getNumberId to main isRegisteredUser && getNumberId hotFix #955 To main * Update Client.js Co-authored-by: tuyuribr <45042245+tuyuribr@users.noreply.github.com> * Update Client.js * Message.raw() (#1005) * Message.raw() * i just noticed * Update index.d.ts * Update index.d.ts * Update Message.js * Get rid of sharp now!!!!!!!! (#1045) * commit 1 * finally, gotten rid of sharp * pckg.json * service worker fix & disableMessage option * typings * Update example.js * clear session system * Update Client.js * Update Client.js * Fix accepting group private invite (#1094) Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com> * [MD] Add getCommonGroups with specific user. (#1097) * Add getCommonGroups with specific user. * Fix * Fix * Fix Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com> * Fix getCommonGroups. (#1122) * Fix of Unexpected identifier async destroy() (#1123) * Fix of Unexpected identifier async destroy() * Fix made in #1107 * Temporary fix for "Sticker" module * some really quick changes * Update Injected.js * Update Injected.js * Update index.d.ts * fix: getNumberId Solved (#1142) * getNumberId Solved * isRegisteredUser Solved * formmated * Apply suggestions from code review * Update src/util/Injected.js Co-authored-by: Rajeh Taher <rajeh@reforward.dev> * Fix: "Chrome user data dir was not found ..." fixes the error caused by puppeteer. * Update Client.js (#1154) * fix: getNumberId and isRegisteredUser (#1159) * fix: getNumberId and isRegisteredUser * Apply suggestions from code review Co-authored-by: Rajeh Taher <rajeh@reforward.dev> * Update client.js * Update Injected.js * Update Client.js * Update index.d.ts * Update Client.js * Update Client.js * fix lint indentation * fix auth_failure event for non-md, tests * fix setting group subject * fix finding Label module * set remember-me after clearing localStorage * fix: send messages to groups correctly on MD, use new ID format * fix setting / getting contact status * fix msg.getInfo, add message tests * fix group settings functions * fix set group description, handle errors in setSubject * fix group invite functions * fix leaving group * bring back phone info for non-md users * remove unused option, update typings * add back jsdoc for qr event * fix setting sticker metadata, clean up sticker functions * rawData is a get only property * fix and simplify getNumberId/isRegisteredUser * fix getInviteInfo * setDisplayName returns bool, not yet implemented for md * fix: stream module (#1241) * linkPreview has no effect on MD, return default to true * fix: del linkPreview option on md * cleanup, types and docs updates * update readmes / test notes * remove DS_Store * DS_Store in gitignore * test stability (timeouts/sleeps) Co-authored-by: Rajeh Taher <rajeh@reforward.tk> Co-authored-by: Gustavo B <52040719+Gugabit@users.noreply.github.com> Co-authored-by: Maikel Ortega Hernández <maikeloh@gmail.com> Co-authored-by: victormga <victor_mga@hotmail.com> Co-authored-by: Pedro Lopez <pedroslopez@me.com> Co-authored-by: tuyuribr <45042245+tuyuribr@users.noreply.github.com> Co-authored-by: gon <68490103+nekiak@users.noreply.github.com> Co-authored-by: Alon Schwartzblat <63599777+Schwartzblat@users.noreply.github.com> Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com> Co-authored-by: Šebestíček <44745014+SebestikCZ@users.noreply.github.com> Co-authored-by: Emmanuel Anaya Luna <38712443+KeruMx@users.noreply.github.com> Co-authored-by: L337C0D3R <51872799+L337C0D3R@users.noreply.github.com> Co-authored-by: Reni Delonzek <renidelonzek@gmail.com>
234 lines
8.4 KiB
JavaScript
234 lines
8.4 KiB
JavaScript
'use strict';
|
|
|
|
const Chat = require('./Chat');
|
|
|
|
/**
|
|
* Group participant information
|
|
* @typedef {Object} GroupParticipant
|
|
* @property {ContactId} id
|
|
* @property {boolean} isAdmin
|
|
* @property {boolean} isSuperAdmin
|
|
*/
|
|
|
|
/**
|
|
* Represents a Group Chat on WhatsApp
|
|
* @extends {Chat}
|
|
*/
|
|
class GroupChat extends Chat {
|
|
_patch(data) {
|
|
this.groupMetadata = data.groupMetadata;
|
|
|
|
return super._patch(data);
|
|
}
|
|
|
|
/**
|
|
* Gets the group owner
|
|
* @type {ContactId}
|
|
*/
|
|
get owner() {
|
|
return this.groupMetadata.owner;
|
|
}
|
|
|
|
/**
|
|
* Gets the date at which the group was created
|
|
* @type {date}
|
|
*/
|
|
get createdAt() {
|
|
return new Date(this.groupMetadata.creation * 1000);
|
|
}
|
|
|
|
/**
|
|
* Gets the group description
|
|
* @type {string}
|
|
*/
|
|
get description() {
|
|
return this.groupMetadata.desc;
|
|
}
|
|
|
|
/**
|
|
* Gets the group participants
|
|
* @type {Array<GroupParticipant>}
|
|
*/
|
|
get participants() {
|
|
return this.groupMetadata.participants;
|
|
}
|
|
|
|
/**
|
|
* Adds a list of participants by ID to the group
|
|
* @param {Array<string>} participantIds
|
|
* @returns {Promise<Object>}
|
|
*/
|
|
async addParticipants(participantIds) {
|
|
return await this.client.pupPage.evaluate((chatId, participantIds) => {
|
|
const chatWid = window.Store.WidFactory.createWid(chatId);
|
|
const participantWids = participantIds.map(p => window.Store.WidFactory.createWid(p));
|
|
return window.Store.GroupParticipants.sendAddParticipants(chatWid, participantWids);
|
|
}, this.id._serialized, participantIds);
|
|
}
|
|
|
|
/**
|
|
* Removes a list of participants by ID to the group
|
|
* @param {Array<string>} participantIds
|
|
* @returns {Promise<Object>}
|
|
*/
|
|
async removeParticipants(participantIds) {
|
|
return await this.client.pupPage.evaluate((chatId, participantIds) => {
|
|
const chatWid = window.Store.WidFactory.createWid(chatId);
|
|
const participantWids = participantIds.map(p => window.Store.WidFactory.createWid(p));
|
|
return window.Store.GroupParticipants.sendRemoveParticipants(chatWid, participantWids);
|
|
}, this.id._serialized, participantIds);
|
|
}
|
|
|
|
/**
|
|
* Promotes participants by IDs to admins
|
|
* @param {Array<string>} participantIds
|
|
* @returns {Promise<{ status: number }>} Object with status code indicating if the operation was successful
|
|
*/
|
|
async promoteParticipants(participantIds) {
|
|
return await this.client.pupPage.evaluate((chatId, participantIds) => {
|
|
const chatWid = window.Store.WidFactory.createWid(chatId);
|
|
const participantWids = participantIds.map(p => window.Store.WidFactory.createWid(p));
|
|
return window.Store.GroupParticipants.sendPromoteParticipants(chatWid, participantWids);
|
|
}, this.id._serialized, participantIds);
|
|
}
|
|
|
|
/**
|
|
* Demotes participants by IDs to regular users
|
|
* @param {Array<string>} participantIds
|
|
* @returns {Promise<{ status: number }>} Object with status code indicating if the operation was successful
|
|
*/
|
|
async demoteParticipants(participantIds) {
|
|
return await this.client.pupPage.evaluate((chatId, participantIds) => {
|
|
const chatWid = window.Store.WidFactory.createWid(chatId);
|
|
const participantWids = participantIds.map(p => window.Store.WidFactory.createWid(p));
|
|
return window.Store.GroupParticipants.sendDemoteParticipants(chatWid, participantWids);
|
|
}, this.id._serialized, participantIds);
|
|
}
|
|
|
|
/**
|
|
* Updates the group subject
|
|
* @param {string} subject
|
|
* @returns {Promise<boolean>} Returns true if the subject was properly updated. This can return false if the user does not have the necessary permissions.
|
|
*/
|
|
async setSubject(subject) {
|
|
const success = await this.client.pupPage.evaluate(async (chatId, subject) => {
|
|
const chatWid = window.Store.WidFactory.createWid(chatId);
|
|
try {
|
|
return await window.Store.GroupUtils.sendSetGroupSubject(chatWid, subject);
|
|
} catch (err) {
|
|
if(err.name === 'ServerStatusCodeError') return false;
|
|
throw err;
|
|
}
|
|
}, this.id._serialized, subject);
|
|
|
|
if(!success) return false;
|
|
this.name = subject;
|
|
return true;
|
|
}
|
|
|
|
/**
|
|
* Updates the group description
|
|
* @param {string} description
|
|
* @returns {Promise<boolean>} Returns true if the description was properly updated. This can return false if the user does not have the necessary permissions.
|
|
*/
|
|
async setDescription(description) {
|
|
const success = await this.client.pupPage.evaluate(async (chatId, description) => {
|
|
const chatWid = window.Store.WidFactory.createWid(chatId);
|
|
let descId = window.Store.GroupMetadata.get(chatWid).descId;
|
|
try {
|
|
return await window.Store.GroupUtils.sendSetGroupDescription(chatWid, description, window.Store.genId(), descId);
|
|
} catch (err) {
|
|
if(err.name === 'ServerStatusCodeError') return false;
|
|
throw err;
|
|
}
|
|
}, this.id._serialized, description);
|
|
|
|
if(!success) return false;
|
|
this.groupMetadata.desc = description;
|
|
return true;
|
|
}
|
|
|
|
/**
|
|
* Updates the group settings to only allow admins to send messages.
|
|
* @param {boolean} [adminsOnly=true] Enable or disable this option
|
|
* @returns {Promise<boolean>} Returns true if the setting was properly updated. This can return false if the user does not have the necessary permissions.
|
|
*/
|
|
async setMessagesAdminsOnly(adminsOnly=true) {
|
|
const success = await this.client.pupPage.evaluate(async (chatId, adminsOnly) => {
|
|
const chatWid = window.Store.WidFactory.createWid(chatId);
|
|
try {
|
|
return await window.Store.GroupUtils.sendSetGroupProperty(chatWid, 'announcement', adminsOnly ? 1 : 0);
|
|
} catch (err) {
|
|
if(err.name === 'ServerStatusCodeError') return false;
|
|
throw err;
|
|
}
|
|
}, this.id._serialized, adminsOnly);
|
|
|
|
if(!success) return false;
|
|
|
|
this.groupMetadata.announce = adminsOnly;
|
|
return true;
|
|
}
|
|
|
|
/**
|
|
* Updates the group settings to only allow admins to edit group info (title, description, photo).
|
|
* @param {boolean} [adminsOnly=true] Enable or disable this option
|
|
* @returns {Promise<boolean>} Returns true if the setting was properly updated. This can return false if the user does not have the necessary permissions.
|
|
*/
|
|
async setInfoAdminsOnly(adminsOnly=true) {
|
|
const success = await this.client.pupPage.evaluate(async (chatId, adminsOnly) => {
|
|
const chatWid = window.Store.WidFactory.createWid(chatId);
|
|
try {
|
|
return await window.Store.GroupUtils.sendSetGroupProperty(chatWid, 'restrict', adminsOnly ? 1 : 0);
|
|
} catch (err) {
|
|
if(err.name === 'ServerStatusCodeError') return false;
|
|
throw err;
|
|
}
|
|
}, this.id._serialized, adminsOnly);
|
|
|
|
if(!success) return false;
|
|
|
|
this.groupMetadata.restrict = adminsOnly;
|
|
return true;
|
|
}
|
|
|
|
/**
|
|
* Gets the invite code for a specific group
|
|
* @returns {Promise<string>} Group's invite code
|
|
*/
|
|
async getInviteCode() {
|
|
const code = await this.client.pupPage.evaluate(async chatId => {
|
|
const chatWid = window.Store.WidFactory.createWid(chatId);
|
|
return window.Store.Invite.sendQueryGroupInviteCode(chatWid);
|
|
}, this.id._serialized);
|
|
|
|
return code;
|
|
}
|
|
|
|
/**
|
|
* Invalidates the current group invite code and generates a new one
|
|
* @returns {Promise<string>} New invite code
|
|
*/
|
|
async revokeInvite() {
|
|
const code = await this.client.pupPage.evaluate(chatId => {
|
|
const chatWid = window.Store.WidFactory.createWid(chatId);
|
|
return window.Store.Invite.sendRevokeGroupInviteCode(chatWid);
|
|
}, this.id._serialized);
|
|
|
|
return code;
|
|
}
|
|
|
|
/**
|
|
* Makes the bot leave the group
|
|
* @returns {Promise}
|
|
*/
|
|
async leave() {
|
|
await this.client.pupPage.evaluate(chatId => {
|
|
const chatWid = window.Store.WidFactory.createWid(chatId);
|
|
return window.Store.GroupUtils.sendExitGroup(chatWid);
|
|
}, this.id._serialized);
|
|
}
|
|
|
|
}
|
|
|
|
module.exports = GroupChat; |