-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmain.js
More file actions
162 lines (148 loc) Β· 5.96 KB
/
main.js
File metadata and controls
162 lines (148 loc) Β· 5.96 KB
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
const {
WAConnection,
MessageType,
Presence,
Mimetype,
GroupSettingChange
} = require('@adiwajshing/baileys')
const fs = require('fs')
const moment = require('moment-timezone')
const { wait, banner, getBuffer, h2k, generateMessageID, getGroupAdmins, getRandom, start, info, success, close } = require('./lib/functions')
const { color } = require('./lib/color')
const _welkom = JSON.parse(fs.readFileSync('./database/welcome.json'))
require('./dhani.js')
nocache('./dhani.js', module => console.log(`${module} telah di update !!`))
const starts = async (Dhani = new WAConnection()) => {
Dhani.logger.level = 'warn'
Dhani.version = [2, 2142, 12]
Dhani.on('qr', () => {
console.log(color('[','white'), color('!','red'), color(']','white'), color(' Scan Qrnya Kak Waktu Cuma 20 Detik !!'))
})
const sendButImage = async (from, context, fotext, img, but) => {
gam = img
jadinya = await Dhani.prepareMessage(from, gam, MessageType.image)
buttonMessagesI = {
imageMessage: jadinya.message.imageMessage,
contentText: context,
footerText: fotext,
buttons: but,
headerType: 4
}
Dhani.sendMessage(from, buttonMessagesI, MessageType.buttonsMessage)
}
fs.existsSync('./newbase.json') && Dhani.loadAuthInfo('./newbase.json')
Dhani.on('connecting', () => {
start('2', 'MENGHUBUNGKAN BRO !!...')
})
Dhani.on('open', () => {
success('2', 'TERHUBUNG BRO !!\nSUBSCRIBE YT ABIL BOTZ')
})
await Dhani.connect({timeoutMs: 30*1000})
fs.writeFileSync('./newbase.json', JSON.stringify(Dhani.base64EncodedAuthInfo(), null, '\t'))
Dhani.on('chat-update', async (message) => {
require('./dhani.js')(Dhani, message, _welkom)
})
Dhani.on("group-participants-update", async (anu) => {
const isWelkom = _welkom.includes(anu.jid)
try {
groupMet = await Dhani.groupMetadata(anu.jid)
groupMembers = groupMet.participants
groupAdmins = getGroupAdmins(groupMembers)
mem = anu.participants[0]
console.log(anu)
try {
pp_user = await Dhani.getProfilePicture(mem)
} catch (e) {
pp_user = "https://telegra.ph/file/c9dfa715c26518201f478.jpg"
}
try {
pp_grup = await Dhani.getProfilePicture(anu.jid)
} catch (e) {
pp_grup =
"https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_960_720.png?q=60"
}
if (!isWelkom) return
if (anu.action == 'add') {
num = anu.participants[0]
mdata = await Dhani.groupMetadata(anu.jid)
memeg = mdata.participants.length
let v = Dhani.contacts[num] || { notify: num.replace(/@.+/, "") }
anu_user = v.vname || v.notify || num.split("@")[0]
time_wel = moment.tz("Asia/Jakarta").format("HH:mm")
try {
ppimg = await Dhani.getProfilePicture(`${anu.participants[0].split('@')[0]}@c.us`)
} catch {
ppimg = 'https://i0.wp.com/www.gambarunik.id/wp-content/uploads/2019/06/Top-Gambar-Foto-Profil-Kosong-Lucu-Tergokil-.jpg'
}
image = await getBuffer(
`http://hadi-api.herokuapp.com/api/card/welcome?nama=${anu_user}&descriminator=${groupMembers.length
}&memcount=${memeg}&gcname=${encodeURI(
mdata.subject
)}&pp=${pp_user}&bg=https://telegra.ph/file/a3cec6902ea32d08a6db4.jpg`
)
teks = `ππΌπππ ππΌπ *@${num.split('@')[0]}*
ππππΎπππ ππ ππππ *${mdata.subject}*
π
πΌπππΌπ ππππΌ πππππ :
β *Ι΄α΄α΄α΄ :*
β *α΄α΄α΄Κ :*
β *Κα΄ΚΚΚ :*
β *Ι’α΄Ι΄α΄
α΄Κ :*
β *α΄κ±α΄Κ α΄α΄α΄α΄ :*
ππππππΌ ππΌππΌπ π½πππΌπ ππΌ
πΏπ ππππ πππ`
let buff = await getBuffer(ppimg)
Dhani.sendMessage(mdata.id, image, MessageType.image, {caption: teks, contextInfo: {"mentionedJid": [num]}})
} else if (anu.action == 'remove') {
num = anu.participants[0]
mdata = await Dhani.groupMetadata(anu.jid)
memeg = mdata.participants.length
let w = Dhani.contacts[num] || { notify: num.replace(/@.+/, "") }
anu_user = w.vname || w.notify || num.split("@")[0]
time_wel = moment.tz("Asia/Jakarta").format("HH:mm")
try {
ppimg = await Dhani.getProfilePicture(`${num.split('@')[0]}@c.us`)
} catch {
ppimg = 'https://i0.wp.com/www.gambarunik.id/wp-content/uploads/2019/06/Top-Gambar-Foto-Profil-Kosong-Lucu-Tergokil-.jpg'
}
image = await getBuffer(
`http://hadi-api.herokuapp.com/api/card/goodbye?nama=${anu_user}&descriminator=${groupMembers.length
}&memcount=${memeg}&gcname=${encodeURI(
mdata.subject
)}&pp=${pp_user}&bg=https://telegra.ph/file/a3cec6902ea32d08a6db4.jpg`
)
teks = `ππππΌππΌπ ππππππΌπ @${num.split('@')[0]}\nπ½ππ π
πΌπππΌπ π½πΌπππ ππΌππ ππΌπ`
let buff = await getBuffer(ppimg)
Dhani.sendMessage(mdata.id, image, MessageType.image, {caption: teks, contextInfo: {"mentionedJid": [num]}})
}
} catch (e) {
console.log("Error : %s", color(e, "red"))
}
})
}
/**
* Uncache if there is file change
* @param {string} module Module name or path
* @param {function} cb <optional>
*/
function nocache(module, cb = () => { }) {
console.log('Module', `'${module}'`, 'Sekarang Sedang Di Awasi Oleh ABIL BOTZ !!')
fs.watchFile(require.resolve(module), async () => {
await uncache(require.resolve(module))
cb(module)
})
}
/**
* Uncache a module
* @param {string} module Module name or path
*/
function uncache(module = '.') {
return new Promise((resolve, reject) => {
try {
delete require.cache[require.resolve(module)]
resolve()
} catch (e) {
reject(e)
}
})
}
starts()