-
Notifications
You must be signed in to change notification settings - Fork 271
/
Copy pathsender.layer.ts
410 lines (388 loc) Β· 10.1 KB
/
sender.layer.ts
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
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
import { Page } from 'puppeteer';
import * as sharp from 'sharp';
import { base64MimeType, fileToBase64 } from '../helpers';
import { Chat, Message } from '../model';
import { ChatState } from '../model/enum';
import { ListenerLayer } from './listener.layer';
declare module WAPI {
const sendSeen: (to: string) => void;
const getChat: (contactId: string) => Chat;
const startTyping: (to: string) => void;
const stopTyping: (to: string) => void;
const sendMessage: (to: string, content: string) => string;
const sendImage: (
imgBase64: string,
to: string,
filename: string,
caption: string
) => any;
const sendMessageWithThumb: (
thumb: string,
url: string,
title: string,
description: string,
chatId: string
) => void;
const reply: (
to: string,
content: string,
quotedMsg: string | Message
) => void;
const sendFile: (
base64: string,
to: string,
filename: string,
caption: string
) => any;
const sendVideoAsGif: (
base64: string,
to: string,
filename: string,
caption: string
) => void;
const sendContact: (to: string, contact: string | string[]) => any;
const forwardMessages: (
to: string,
messages: string | string[],
skipMyMessages: boolean
) => any;
const sendImageAsSticker: (
webpBase64: string,
to: string,
metadata?: any
) => void;
const sendLocation: (
to: string,
latitude: string,
longitude: string,
caption: string
) => void;
const sendMessageMentioned: (...args: any) => any;
const sendMessageToID: (id: string, message: string) => any;
const setChatState: (chatState: string, chatId: string) => void;
}
export class SenderLayer extends ListenerLayer {
constructor(public page: Page) {
super(page);
}
/**
* Sends a text message to given chat
* @param to chat id: [email protected]
* @param content text message
*/
public async sendText(to: string, content: string): Promise<string> {
return this.page.evaluate(
({ to, content }) => {
WAPI.sendSeen(to);
if (!WAPI.getChat(to)) {
return WAPI.sendMessageToID(to, content);
} else {
return WAPI.sendMessage(to, content);
}
},
{ to, content }
);
}
/**
* Experimental!
* Sends a text message to given chat even if its a non-existent chat
* @param to chat id: [email protected]
* @param content text message
*/
public async sendMessageToId(to: string, content: string): Promise<string> {
return this.page.evaluate(
({ to, content }) => {
WAPI.sendSeen(to);
return WAPI.sendMessageToID(to, content);
},
{ to, content }
);
}
/**
* Sends image message
* @param to Chat id
* @param imgBase64
* @param filename
* @param caption
*/
public async sendImage(
to: string,
path: string,
filename: string,
caption?: string
) {
const data = await fileToBase64(path);
return this.page.evaluate(
({ to, data, filename, caption }) => {
WAPI.sendImage(data, to, filename, caption);
},
{ to, data, filename, caption }
);
}
/**
* Sends image message
* @param to Chat id
* @param imgBase64
* @param filename
* @param caption
*/
public async sendImageFromBase64(
to: string,
base64: string,
filename: string,
caption?: string
) {
return this.page.evaluate(
({ to, base64, filename, caption }) => {
WAPI.sendImage(base64, to, filename, caption);
},
{ to, base64, filename, caption }
);
}
/**
* Sends message with thumbnail
* @param thumb
* @param url
* @param title
* @param description
* @param chatId
*/
public async sendMessageWithThumb(
thumb: string,
url: string,
title: string,
description: string,
chatId: string
) {
return this.page.evaluate(
({ thumb, url, title, description, chatId }) => {
WAPI.sendMessageWithThumb(thumb, url, title, description, chatId);
},
{
thumb,
url,
title,
description,
chatId,
}
);
}
/**
* Replies to given mesage id of given chat id
* @param to Chat id
* @param content Message body
* @param quotedMsg Message id to reply to.
*/
public async reply(to: string, content: string, quotedMsg: string) {
return await this.page.evaluate(
({ to, content, quotedMsg }) => {
WAPI.reply(to, content, quotedMsg);
},
{ to, content, quotedMsg }
);
}
/**
* Sends file
* base64 parameter should have mime type already defined
* @param to Chat id
* @param base64 base64 data
* @param filename
* @param caption
*/
public async sendFileFromBase64(
to: string,
base64: string,
filename: string,
caption?: string
) {
return this.page.evaluate(
({ to, base64, filename, caption }) => {
WAPI.sendFile(base64, to, filename, caption);
},
{ to, base64, filename, caption }
);
}
/**
* Sends file from path
* @param to Chat id
* @param path File path
* @param filename
* @param caption
*/
public async sendFile(
to: string,
path: string,
filename: string,
caption?: string
) {
const base64 = await fileToBase64(path);
return this.sendFileFromBase64(to, base64, filename, caption);
}
/**
* Sends a video to given chat as a gif, with caption or not, using base64
* @param to chat id [email protected]
* @param base64 base64 data:video/xxx;base64,xxx
* @param filename string xxxxx
* @param caption string xxxxx
*/
public async sendVideoAsGif(
to: string,
path: string,
filename: string,
caption: string
) {
const base64 = await fileToBase64(path);
return this.sendVideoAsGifFromBase64(to, base64, filename, caption);
}
/**
* Sends a video to given chat as a gif, with caption or not, using base64
* @param to chat id [email protected]
* @param base64 base64 data:video/xxx;base64,xxx
* @param filename string xxxxx
* @param caption string xxxxx
*/
public async sendVideoAsGifFromBase64(
to: string,
base64: string,
filename: string,
caption: string
) {
return await this.page.evaluate(
({ to, base64, filename, caption }) => {
WAPI.sendVideoAsGif(base64, to, filename, caption);
},
{ to, base64, filename, caption }
);
}
/**
* Sends contact card to iven chat id
* @param to Chat id
*/
public async sendContact(to: string, contactsId: string | string[]) {
return this.page.evaluate(
({ to, contactsId }) => WAPI.sendContact(to, contactsId),
{ to, contactsId }
);
}
/**
* Forwards array of messages (could be ids or message objects)
* @param to Chat id
* @param messages Array of messages ids to be forwarded
* @param skipMyMessages
*/
public async forwardMessages(
to: string,
messages: string | string[],
skipMyMessages: boolean
) {
return this.page.evaluate(
({ to, messages, skipMyMessages }) =>
WAPI.forwardMessages(to, messages, skipMyMessages),
{ to, messages, skipMyMessages }
);
}
/**
* Generates sticker from given image and sends it
* @param path image path
* @param to
*/
public async sendImageAsSticker(to: string, path: string) {
const b64 = await fileToBase64(path);
const buff = Buffer.from(
b64.replace(/^data:image\/(png|gif|jpeg);base64,/, ''),
'base64'
);
const mimeInfo = base64MimeType(b64);
if (!mimeInfo || mimeInfo.includes('image')) {
// Convert to webp, resize + autoscale to width 512 px
const scaledImageBuffer = await sharp(buff, { failOnError: false })
.resize({ width: 512, height: 512 })
.toBuffer();
const webp = sharp(scaledImageBuffer, { failOnError: false }).webp();
const metadata = (await webp.metadata()) as any;
const webpBase64 = (await webp.toBuffer()).toString('base64');
return await this.page.evaluate(
({ webpBase64, to, metadata }) =>
WAPI.sendImageAsSticker(webpBase64, to, metadata),
{ webpBase64, to, metadata }
);
} else {
console.log('Not an image');
return false;
}
}
/**
* TODO: Fix message not being delivered
* Sends location to given chat id
* @param to Chat id
* @param latitude Latitude
* @param longitude Longitude
* @param caption Text caption
*/
public async sendLocation(
to: string,
latitude: number,
longitude: number,
title?: string,
subtitle?: string
) {
// Create caption
let caption = title || '';
if (subtitle) {
caption = `${title}\n${subtitle}`;
}
return await this.page.evaluate(
({ to, latitude, longitude, caption }) => {
WAPI.sendLocation(to, latitude, longitude, caption);
},
{ to, latitude, longitude, caption }
);
}
/**
* Sets a chat status to seen. Marks all messages as ack: 3
* @param chatId chat id: [email protected]
*/
public async sendSeen(chatId: string) {
return this.page.evaluate((chatId) => WAPI.sendSeen(chatId), chatId);
}
/**
* Starts typing ('Typing...' state)
* @param chatId
*/
public async startTyping(to: string) {
return this.page.evaluate(({ to }) => WAPI.startTyping(to), { to });
}
/**
* Stops typing
* @param to Chat id
*/
public async stopTyping(to: string) {
return this.page.evaluate(({ to }) => WAPI.stopTyping(to), { to });
}
/**
* Sends text with tags
*
*/
public async sendMentioned(to: string, message: string, mentioned: string[]) {
return await this.page.evaluate(
({ to, message, mentioned }) => {
WAPI.sendMessageMentioned(to, message, mentioned);
},
{ to, message, mentioned }
);
}
/**
* Sets the chat state
* @param chatState
* @param chatId
*/
public async setChatState(chatId: string, chatState: ChatState) {
return await this.page.evaluate(
({ chatState, chatId }) => {
WAPI.setChatState(chatState, chatId);
},
{ chatState: chatState, chatId }
);
}
}