forked from danielcardeenas/sulla
-
Notifications
You must be signed in to change notification settings - Fork 0
/
retriever.layer.ts
256 lines (238 loc) Β· 6.77 KB
/
retriever.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
import { Page } from 'puppeteer';
import {
Chat,
Contact,
ContactStatus,
Message,
PartialMessage,
WhatsappProfile,
} from '../model';
import { SenderLayer } from './sender.layer';
declare module WAPI {
const getAllChatsWithNewMsg: () => Chat[];
const getAllNewMessages: () => any;
const getAllChats: () => Chat[];
const getAllChatsWithMessages: (withNewMessageOnly?: boolean) => Chat[];
const getContact: (contactId: string) => Contact;
const getAllContacts: () => Contact[];
const getChatById: (contactId: string) => Chat;
const getChat: (contactId: string) => Chat;
const getProfilePicFromServer: (chatId: string) => string;
const loadEarlierMessages: (contactId: string) => Message[];
const getStatus: (contactId: string) => ContactStatus;
const getNumberProfile: (contactId: string) => WhatsappProfile;
const getUnreadMessages: (
includeMe: boolean,
includeNotifications: boolean,
useUnreadCount: boolean
) => any;
const getAllUnreadMessages: () => PartialMessage[];
const getAllMessagesInChat: (
chatId: string,
includeMe: boolean,
includeNotifications: boolean
) => Message[];
const loadAndGetAllMessagesInChat: (
chatId: string,
includeMe: boolean,
includeNotifications: boolean
) => Message[];
}
export class RetrieverLayer extends SenderLayer {
constructor(page: Page) {
super(page);
}
/**
* Retrieves all chats
* @returns array of [Chat]
*/
public async getAllChats(withNewMessageOnly = false) {
if (withNewMessageOnly) {
return this.page.evaluate(() => WAPI.getAllChatsWithNewMsg());
} else {
return this.page.evaluate(() => WAPI.getAllChats());
}
}
/**
* Retrieves all chats with messages
* @returns array of [Chat]
*/
public async getAllChatsWithMessages(withNewMessageOnly = false) {
return this.page.evaluate(
(withNewMessageOnly: boolean) =>
WAPI.getAllChatsWithMessages(withNewMessageOnly),
withNewMessageOnly
);
}
/**
* Retrieve all groups
* @returns array of groups
*/
public async getAllGroups(withNewMessagesOnly = false) {
if (withNewMessagesOnly) {
// prettier-ignore
const chats = await this.page.evaluate(() => WAPI.getAllChatsWithNewMsg());
return chats.filter((chat) => chat.isGroup);
} else {
const chats = await this.page.evaluate(() => WAPI.getAllChats());
return chats.filter((chat) => chat.isGroup);
}
}
/**
* Retrieves contact detail object of given contact id
* @param contactId
* @returns contact detial as promise
*/
public async getContact(contactId: string) {
return this.page.evaluate(
(contactId) => WAPI.getContact(contactId),
contactId
);
}
/**
* Retrieves all contacts
* @returns array of [Contact]
*/
public async getAllContacts() {
return await this.page.evaluate(() => WAPI.getAllContacts());
}
/**
* Retrieves chat object of given contact id
* @param contactId
* @returns contact detial as promise
*/
public async getChatById(contactId: string) {
return this.page.evaluate(
(contactId) => WAPI.getChatById(contactId),
contactId
);
}
/**
* Retrieves chat object of given contact id
* @param contactId
* @returns contact detial as promise
* @deprecated
*/
public async getChat(contactId: string) {
return this.getChatById(contactId);
}
/**
* Retrieves chat picture
* @param chatId Chat id
* @returns url of the chat picture or undefined if there is no picture for the chat.
*/
public async getProfilePicFromServer(chatId: string) {
return this.page.evaluate(
(chatId) => WAPI.getProfilePicFromServer(chatId),
chatId
);
}
/**
* Load more messages in chat object from server. Use this in a while loop
* @param contactId
* @returns contact detial as promise
* @deprecated
*/
public async loadEarlierMessages(contactId: string) {
return this.page.evaluate(
(contactId) => WAPI.loadEarlierMessages(contactId),
contactId
);
}
/**
* Retrieves status of given contact
* @param contactId
*/
public async getStatus(contactId: string) {
return this.page.evaluate(
(contactId) => WAPI.getStatus(contactId),
contactId
);
}
/**
* Checks if a number is a valid whatsapp number
* @param contactId, you need to include the @c.us at the end.
* @returns contact detial as promise
*/
public async getNumberProfile(contactId: string) {
return this.page.evaluate(
(contactId) => WAPI.getNumberProfile(contactId),
contactId
);
}
/**
* Retrieves all undread Messages
* @param includeMe
* @param includeNotifications
* @param useUnreadCount
* @returns any
* @deprecated
*/
public async getUnreadMessages(
includeMe: boolean,
includeNotifications: boolean,
useUnreadCount: boolean
) {
return await this.page.evaluate(
({ includeMe, includeNotifications, useUnreadCount }) =>
WAPI.getUnreadMessages(includeMe, includeNotifications, useUnreadCount),
{ includeMe, includeNotifications, useUnreadCount }
);
}
/**
* Retrieves all unread messages (where ack is -1)
* @returns list of messages
*/
public async getAllUnreadMessages() {
return this.page.evaluate(() => WAPI.getAllUnreadMessages());
}
/**
* Retrieves all new messages (where isNewMsg is true)
* @returns List of messages
* @deprecated Use getAllUnreadMessages
*/
public async getAllNewMessages() {
return this.page.evaluate(() => WAPI.getAllNewMessages());
}
/**
* Retrieves all messages already loaded in a chat
* For loading every message use loadAndGetAllMessagesInChat
* @param chatId, the chat to get the messages from
* @param includeMe, include my own messages? boolean
* @param includeNotifications
* @returns any
*/
public async getAllMessagesInChat(
chatId: string,
includeMe: boolean,
includeNotifications: boolean
) {
return await this.page.evaluate(
({ chatId, includeMe, includeNotifications }) =>
WAPI.getAllMessagesInChat(chatId, includeMe, includeNotifications),
{ chatId, includeMe, includeNotifications }
);
}
/**
* Loads and Retrieves all Messages in a chat
* @param chatId, the chat to get the messages from
* @param includeMe, include my own messages? boolean
* @param includeNotifications
* @returns any
*/
public async loadAndGetAllMessagesInChat(
chatId: string,
includeMe = false,
includeNotifications = false
) {
return await this.page.evaluate(
({ chatId, includeMe, includeNotifications }) =>
WAPI.loadAndGetAllMessagesInChat(
chatId,
includeMe,
includeNotifications
),
{ chatId, includeMe, includeNotifications }
);
}
}