-
Notifications
You must be signed in to change notification settings - Fork 313
/
chats.js
328 lines (254 loc) · 8.11 KB
/
chats.js
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
let {smd} = require("../lib")
smd({
pattern: 'clear',
fromMe: true,
desc: 'delete whatsapp chat',
type: 'whatsapp'
}, async (message, match) => {
try{
await message.bot.chatModify({
delete: true,
lastMessages: [{
key: message.key,
messageTimestamp: message.messageTimestamp
}]
}, message.jid)
await message.send('_Cleared!_')
}catch(e){ message.error(`${e}\n\nCommand : clear` , e, false) }
})
smd({
pattern: 'archive',
fromMe: true,
desc: 'archive whatsapp chat',
type: 'whatsapp'
}, async (message, match) => {
try{
const lstMsg = {
message: message.message,
key: message.key,
messageTimestamp: message.messageTimestamp
};
await message.bot.chatModify({
archive: true,
lastMessages: [lstMsg]
}, message.jid);
await message.send('_Archived_')
}catch(e){ message.error(`${e}\n\nCommand : archive` , e, false) }
})
smd({
pattern: 'unarchive',
fromMe: true,
desc: 'unarchive whatsapp chat',
type: 'whatsapp'
}, async (message, match) => {
try{
const lstMsg = {
message: message.message,
key: message.key,
messageTimestamp: message.messageTimestamp
};
await message.bot.chatModify({
archive: false,
lastMessages: [lstMsg]
}, message.jid);
await message.send('_Unarchived_')
}catch(e){ message.error(`${e}\n\nCommand : unarchive` , e, false) }
})
smd({
pattern: 'chatpin',
alias :["pinchat"],
fromMe: true,
desc: 'pin a chat',
type: 'whatsapp'
}, async (message, match) => {
try{
await message.bot.chatModify({
pin: true
}, message.jid);
await message.send('_Pined_')
}catch(e){ message.error(`${e}\n\nCommand : chatpin` , e, false) }
})
smd({
pattern: 'unpin',
alias :["unpinchat","chatunpin"],
fromMe: true,
desc: 'unpin a msg',
type: 'whatsapp'
}, async (message, match) => {
try{
await message.bot.chatModify({
pin: false
}, message.jid);
await message.send('_Unpined_')
}catch(e){ message.error(`${e}\n\nCommand : unpin` , e, false) }
})
smd({
pattern: 'markread',
fromMe: true,
desc: 'mark as readed',
type: 'whatsapp'
}, async (message, match) => {
try{
let msg = await message.react("🍁")
await message.bot.chatModify(
{ markRead: true, lastMessages: [message] },
message.jid
);
//await message.send('_Chat mark as Readed!_')
}catch(e){ message.error(`${e}\n\nCommand : markread` , e, false) }
})
smd({
pattern: 'markunread',
fromMe: true,
desc: 'mark as UnRead',
type: 'whatsapp'
}, async (message, match) => {
try{
let msg = await message.send("🍁",{},"react")
console.log({msg})
await message.bot.chatModify(
{ markRead: false, lastMessages: [message] },
message.jid
);
//await message.send('_Chat mark as UnRead!_')
}catch(e){ message.error(`${e}\n\nCommand : markunread` , e, false) }
})
smd({
pattern: 'unmutechat',
fromMe: true,
desc: 'unmute a chat',
type: 'whatsapp'
}, async (message, match) => {
try{
await message.bot.chatModify( { mute: null }, message.jid );
await message.send('_Chat Unmuted!_')
}catch(e){ message.error(`${e}\n\nCommand : unmutechat` , e, false) }
})
smd({
pattern: 'profilename',
fromMe: true,
desc: 'To change your profile name',
type: 'whatsapp'
}, async (message, match) => {
try{
match = match || message.reply_message.text
if (!match) return await message.send('*Need Name!*\n*Example: profilename your name*.')
await message.bot.updateProfileName(match)
await message.send('_Profile name updated!_')
}catch(e){ message.error(`${e}\n\nCommand : profilename` , e, false) }
})
// ============================ PRIVACY SETTINGS ============================
smd({
pattern: 'getprivacy',
fromMe: true,
desc: 'get your privacy settings',
type: 'whatsapp settings'
}, async (message, match) => {
const {
readreceipts,
profile,
status,
online,
last,
groupadd,
calladd
} = await message.bot.fetchPrivacySettings(true);
const msg = `*♺ whatsapp privacy settings*
*ᝄ name :* ${(message.fromMe && message.pushName ? message.pushName : message.bot.user.name).split("\n").join(" ") }
*ᝄ number :* ${message.user.split("@")[0]}
*ᝄ online :* ${online}
*ᝄ profile :* ${profile}
*ᝄ last seen :* ${last}
*ᝄ whts status :* ${status}
*ᝄ read receipt :* ${readreceipts}
*ᝄ who can add in group :* ${groupadd}
*ᝄ who can call :* ${calladd}`;
let img = await message.getpp(message.user)
await message.send(img, {
caption: msg
}, 'img');
})
smd({
pattern: 'lastseen',
fromMe: true,
desc: 'to change lastseen privacy',
type: 'whatsapp settings'
}, async (message, match, {smd }) => {
try{
if (!match) return await message.send(`_*Example:-* .lastseen all_\n_to change last seen privacy settings_`);
const available_privacy = ['all', 'contacts', 'contact_blacklist', 'none'];
if (!available_privacy.includes(match)) return await message.send(`_action must be *${available_privacy.join(' / ')}* values_`);
await message.bot.updateLastSeenPrivacy(match)
await message.send(`_Privacy settings *last seen* Updated to *${match}*_`);
}catch(e){ message.error(`${e}\n\nCommand : lastseen` , e, false) }
})
smd({
pattern: 'online',
fromMe: true,
desc: 'to change online privacy',
type: 'whatsapp settings'
}, async (message, match,) => {
try{
if (!match) return await message.send(`_*Example:-* .online all_\n_to change *online* privacy settings_`);
const available_privacy = ['all', 'match_last_seen'];
if (!available_privacy.includes(match)) return await message.send(`_action must be *${available_privacy.join('/')}* values_`);
await message.bot.updateOnlinePrivacy(match)
await message.send(`_Privacy Updated to *${match}*_`);
}catch(e){ message.error(`${e}\n\nCommand : online` , e, false) }
})
smd({
pattern: 'mypp',
fromMe: true,
desc: 'privacy setting profile picture',
type: 'whatsapp settings'
}, async (message, match) => {
try{
if (!match) return await message.send(`_*Example:-* .mypp all_\n_to change *profile picture* privacy settings_`);
const available_privacy = ['all', 'contacts', 'contact_blacklist', 'none'];
if (!available_privacy.includes(match)) return await message.send(`_action must be *${available_privacy.join('/')}* values_`);
await message.bot.updateProfilePicturePrivacy(match)
await message.send(`_Privacy Updated to *${match}*_`);
}catch(e){ message.error(`${e}\n\nCommand : mypp` , e, false) }
})
smd({
pattern: 'mystatus',
fromMe: true,
desc: 'privacy for my status',
type: 'whatsapp settings'
}, async (message, match,) => {
try{
if (!match) return await message.send(`_*Example:-* .mystatus all_\n_to change *status* privacy settings_`);
const available_privacy = ['all', 'contacts', 'contact_blacklist', 'none'];
if (!available_privacy.includes(match)) return await message.send(`_action must be *${available_privacy.join('/')}* values_`);
await message.bot.updateStatusPrivacy(match)
await message.send(`_Privacy Updated to *${match}*_`);
}catch(e){ message.error(`${e}\n\nCommand : mystatus` , e, false) }
})
smd({
pattern: 'read',
fromMe: true,
desc: 'privacy for read message',
type: 'whatsapp settings'
}, async (message, match, cmd) => {
try{
if (!match) return await message.send(`_*Example:-* .read all_\n_to change *read and receipts message* privacy settings_`);
const available_privacy = ['all', 'none'];
if (!available_privacy.includes(match)) return await message.send(`_action must be *${available_privacy.join('/')}* values_`);
await message.bot.updateReadReceiptsPrivacy(match)
await message.send(`_Privacy Updated to *${match}*_`);
}catch(e){ message.error(`${e}\n\nCommand : read` , e, false) }
})
smd({
pattern: 'groupadd',
fromMe: true,
desc: 'privacy for group add',
type: 'whatsapp settings'
}, async (message, match, cmd) => {
try{
if (!match) return await message.send(`_*Example:-* .groupadd all_\n_to change *group add* privacy settings_`);
const available_privacy = ['all', 'contacts', 'contact_blacklist', 'none'];
if (!available_privacy.includes(match)) return await message.send(`_action must be *${available_privacy.join('/')}* values_`);
await message.bot.updateGroupsAddPrivacy(match)
await message.send(`_Privacy Updated to *${match}*_`);
}catch(e){ message.error(`${e}\n\nCommand : groupadd` , e, false) }
})