Spaces:
Paused
Paused
File size: 9,704 Bytes
4c34106 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 | /*
* This file is part of WPPConnect.
*
* WPPConnect is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* WPPConnect is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with WPPConnect. If not, see <https://www.gnu.org/licenses/>.
*/
import axios from 'axios';
import { Page } from 'puppeteer';
import { CreateConfig } from '../config/create-config';
import { useragentOverride } from '../config/WAuserAgente';
import { evaluateAndReturn } from './helpers';
import { magix, makeOptions, newMagix, timeout } from './helpers/decrypt';
import { BusinessLayer } from './layers/business.layer';
import { GetMessagesParam, Message } from './model';
import * as fs from 'fs';
import { sleep } from '../utils/sleep';
export class Whatsapp extends BusinessLayer {
private connected: boolean | null = null;
constructor(public page: Page, session?: string, options?: CreateConfig) {
super(page, session, options);
let interval: any = null;
if (this.page) {
this.page.on('close', async () => {
clearInterval(interval);
});
}
interval = setInterval(async () => {
const newConnected = await page
.evaluate(() => WPP.conn.isRegistered())
.catch(() => null);
if (newConnected === null || newConnected === this.connected) {
return;
}
this.connected = newConnected;
if (!newConnected) {
this.log('info', 'Session Unpaired', { type: 'session' });
setTimeout(async () => {
if (this.statusFind) {
try {
this.statusFind('disconnectedMobile', session);
} catch (error) {}
}
}, 1000);
}
}, 1000);
}
protected async afterPageScriptInjected() {
await super.afterPageScriptInjected();
this.page
.evaluate(() => WPP.conn.isRegistered())
.then((isAuthenticated) => {
this.connected = isAuthenticated;
})
.catch(() => null);
}
/**
* Decrypts message file
* @param data Message object
* @returns Decrypted file buffer (null otherwise)
*/
public async downloadFile(data: string) {
return await evaluateAndReturn(
this.page,
(data) => WAPI.downloadFile(data),
data
);
}
/**
* Download and returns the media content in base64 format
* @param messageId Message or id
* @returns Base64 of media
*/
public async downloadMedia(messageId: string | Message): Promise<string> {
if (typeof messageId !== 'string') {
messageId = messageId.id;
}
return await evaluateAndReturn(
this.page,
async (messageId) =>
WPP.util.blobToBase64(await WPP.chat.downloadMedia(messageId)),
messageId
);
}
/**
* Get the puppeteer page instance
* @returns The Whatsapp page
*/
get waPage(): Page {
return this.page;
}
/**
* Get the puppeteer page screenshot
* @returns The Whatsapp page screenshot as a PNG encoded in base64 (not the full data URI, just the base64 section)
*/
public async takeScreenshot() {
if (this.page) {
return await this.page.screenshot({ encoding: 'base64' });
}
}
/**
* Clicks on 'use here' button (When it gets unlaunched)
* This method tracks the class of the button
* WhatsApp Web might change this class name over time
* Don't rely on this method
*/
public async useHere() {
return await evaluateAndReturn(this.page, () => WAPI.takeOver());
}
/**
* Log out of WhatsApp
* @returns boolean
*/
public async logout() {
return await evaluateAndReturn(this.page, () => WPP.conn.logout());
}
/**
* Closes page and browser
* @internal
*/
public async close() {
const browser = this.page.browser();
if (!this.page.isClosed()) {
await this.page.close().catch(() => null);
await browser.close().catch(() => null);
/*
Code was removed as it is not necessary.
try {
const process = browser.process();
if (process) {
treekill(process.pid, 'SIGKILL');
}
} catch (error) {}
*/
}
return true;
}
/**
* Return PID process
* @internal
*/
public getPID() {
const browser = this.page.browser();
const process = browser.process();
return process.pid;
}
/**
* Get a message by its ID
* @param messageId string
* @returns Message object
*/
public async getMessageById(messageId: string) {
return (await evaluateAndReturn(
this.page,
(messageId: any) => WAPI.getMessageById(messageId),
messageId
)) as Message;
}
/**
* Returns a list of messages from a chat
* @param chatId string ID of the conversation or group
* @param params GetMessagesParam Result filtering options (count, id, direction) see {@link GetMessagesParam}.
* @returns Message object
*/
public async getMessages(chatId: string, params: GetMessagesParam = {}) {
return await evaluateAndReturn(
this.page,
({ chatId, params }) => WAPI.getMessages(chatId, params),
{ chatId, params: params as any }
);
}
/**
* Decrypts message file
* @param message Message object
* @returns Decrypted file buffer (`null` otherwise)
*/
public async decryptFile(message: Message) {
const mediaUrl = message.clientUrl || message.deprecatedMms3Url;
const options = makeOptions(useragentOverride);
if (!mediaUrl)
throw new Error(
'message is missing critical data (`mediaUrl`) needed to download the file.'
);
let haventGottenImageYet = true;
let res: any;
try {
while (haventGottenImageYet) {
res = await axios.get<any>(mediaUrl.trim(), options);
if (res.status == 200) {
haventGottenImageYet = false;
} else {
await timeout(2000);
}
}
} catch (error) {
throw new Error('Error trying to download the file.');
}
const buff = Buffer.from(res.data, 'binary');
return magix(buff, message.mediaKey, message.type, message.size);
}
public async decryptAndSaveFile(
message: Message,
savePath: string
): Promise<void> {
const mediaUrl = message.clientUrl || message.deprecatedMms3Url;
if (!mediaUrl) {
throw new Error(
'Message is missing critical data needed to download the file.'
);
}
try {
const tempSavePath: string = savePath + '.encrypted';
await this.downloadEncryptedFile(mediaUrl.trim(), tempSavePath);
const inputReadStream = fs.createReadStream(tempSavePath);
const outputWriteStream = fs.createWriteStream(savePath);
const decryptedStream = newMagix(
message.mediaKey,
message.type,
message.size
);
inputReadStream.pipe(decryptedStream).pipe(outputWriteStream);
await new Promise<void>((resolve, reject) => {
outputWriteStream.on('finish', () => {
console.log(
`Deciphering complete. Deleting the encrypted file: ${tempSavePath}`
);
fs.unlink(tempSavePath, (error) => {
if (error) {
console.error(
`Error deleting the input file: ${tempSavePath}`,
error
);
reject(error);
} else {
console.log('Encrypted file deleted successfully');
resolve();
}
});
});
outputWriteStream.on('error', (error) => {
console.error(`Error during writing file: ${savePath}`, error);
reject(error);
});
decryptedStream.on('error', (error) => {
console.error('An error occurred while decrypting the file', error);
reject(error);
});
});
} catch (error) {
throw error;
}
}
downloadEncryptedFile = async (
url: string,
outputPath: string,
retries: number = 3
) => {
for (let attempt = 1; attempt <= retries; attempt++) {
try {
const response = await axios.get(
url,
makeOptions(useragentOverride, 'stream')
);
await new Promise<void>((resolve, reject) => {
const writer = fs.createWriteStream(outputPath);
response.data.pipe(writer);
writer.on('finish', resolve);
writer.on('error', reject);
});
console.log(`Encrypted file downloaded at ${outputPath}`);
return;
} catch (error) {
console.error(`Attempt ${attempt} failed: `, error.message);
if (attempt === retries) {
console.error(
`${outputPath} - All attempt failed to download the file: ${url}`
);
throw error;
}
console.log(
`${outputPath} - Retrying to download the file: ${url} in 5 seconds...`
);
await sleep(5000);
}
}
};
/**
* Rejects a call received via WhatsApp
* @param callId string Call ID, if not passed, all calls will be rejected
* @returns Number of rejected calls
*/
public async rejectCall(callId?: string) {
return await evaluateAndReturn(
this.page,
({ callId }) => WPP.call.rejectCall(callId),
{
callId,
}
);
}
}
|