-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathmain.js
328 lines (307 loc) · 11.3 KB
/
main.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
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
/**
* Made By ©DitzDev
* TikTok: @ditz.ofc
* YouTube: @DitzDev
* GitHub: /DitzDev
* NOTE!!! Never Delete this WM or sell this Script!!!
*/
(async() => {
require('./settings')
const { default: makeWASocket, Browsers, useMultiFileAuthState, DisconnectReason, fetchLatestBaileysVersion, generateForwardMessageContent, prepareWAMessageMedia, generateWAMessageFromContent, generateMessageID, downloadContentFromMessage, makeInMemoryStore, jidDecode, getAggregateVotesInPollMessage, proto } = require("@whiskeysockets/baileys")
const WebSocket = require('ws')
const path = require('path')
const pino = require('pino')
const fs = require('fs')
const yargs = require('yargs/yargs')
const cp = require('child_process')
let { promisify } = require('util')
let exec = promisify(cp.exec).bind(cp)
const _ = require('lodash')
const syntaxerror = require('syntax-error')
const os = require('os')
const { randomBytes } = require('crypto')
const PhoneNumber = require('awesome-phonenumber')
const moment = require("moment-timezone")
const chalk = require('chalk')
const { color } = require('./lib/color')
let simple = require('./lib/simple')
const { consoleWarn, consoleInfo, consoleErr } = require("./lib/console");
var low
try {
low = require('lowdb')
} catch (e) {
low = require('./lib/lowdb')
}
const readline = require("readline");
const question = (text) => {
const rl = readline.createInterface({
input: process.stdin,
output: process.stdout
});
return new Promise((resolve) => {
rl.question(text, resolve)
})
};
const { Low, JSONFile } = low
const mongoDB = require('./lib/mongoDB')
require("http").createServer((_, res) => res.end("Uptime!")).listen(8080)
consoleInfo("Server created on port: 8080");
const randomID = length => randomBytes(Math.ceil(length * .5)).toString('hex').slice(0, length)
API = (name, path = '/', query = {}, apikeyqueryname) => (name in APIs ? APIs[name] : name) + path + (query || apikeyqueryname ? '?' + new URLSearchParams(Object.entries({ ...query, ...(apikeyqueryname ? { [apikeyqueryname]: APIKeys[name in APIs ? APIs[name] : name] } : {}) })) : '')
timestamp = {
start: new Date
}
const PORT = process.env.PORT || 3000
opts = new Object(yargs(process.argv.slice(2)).exitProcess(false).parse())
prefix = new RegExp('^[' + (opts['prefix'] || '芒鈧絰zXZ/i!#$%+脗拢脗垄芒鈥毬偮脗掳=脗露芒藛鈥犆冣€斆兟访忊偓芒藛拧芒艙鈥溍偮┟偮�:;?&.\\-').replace(/[|\\{}()[\]^$+*?.\-\^]/g, '\\$&') + ']')
consoleInfo("Setup database using MongoDB...");
db = new Low(
/https?:\/\//.test(opts['db'] || '') ?
new cloudDBAdapter(opts['db']) : /mongodb/i.test(opts['db']) ?
new mongoDB(opts['db']) :
new JSONFile(`${opts._[0] ? opts._[0] + '_' : ''}database.json`)
)
DATABASE = db
loadDatabase = async function loadDatabase() {
if (db.READ) return new Promise((resolve) => setInterval(function () { (!db.READ ? (clearInterval(this), resolve(db.data == null ? loadDatabase() : db.data)) : null) }, 1 * 1000))
if (db.data !== null) return
db.READ = true
await db.read()
db.READ = false
db.data = {
users: {},
chats: {},
stats: {},
msgs: {},
sticker: {},
settings: {},
respon : {},
...(db.data || {})
}
db.chain = _.chain(db.data)
}
consoleInfo("Database has been created!")
loadDatabase()
const pairingCode = process.argv.includes("--pairing-code")
const authFolder = `${opts._[0] || 'Ditz'}`
global.isInit = !fs.existsSync(authFolder)
const { state, saveCreds } = await useMultiFileAuthState(authFolder)
const connectionOptions = {
...(!pairingCode && {
printQRInTerminal: true
}),
...(pairingCode && {
printQRInTerminal: !pairingCode
}),
logger: pino({ level: "silent" }),
auth: state,
version: [2, 3000, 1017531287],
browser: Browsers.macOS("Safari")
}
global.conn = simple.makeWASocket(connectionOptions)
global.ev = global.conn.ev
if(pairingCode && !conn.authState.creds.registered) {
const phoneNumber = await question(chalk.bgBlack(chalk.redBright("Start with your country's WhatsApp code, Example : 62xxx\n")))
const code = await conn.requestPairingCode(phoneNumber.trim())
consoleInfo("Your Code is: " + code)
}
if (!opts['test']) {
if (db) setInterval(async () => {
if (global.db.data) await db.write()
if (opts['autocleartmp'] && (support || {}).find) (tmp = [os.tmpdir(), 'tmp'], tmp.forEach(filename => cp.spawn('find', [filename, '-amin', '3', '-type', 'f', '-delete'])))
}, 30 * 1000)
}
if (opts['server']) require('./server')(conn, PORT)
if (opts['big-qr'] || opts['server']) conn.on('qr', qr => generate(qr, { small: false }))
function clearTmp() {
const tmp = [os.tmpdir(), path.join(__dirname, './tmp')]
const filename = []
tmp.forEach(dirname => fs.readdirSync(dirname).forEach(file => filename.push(path.join(dirname, file))))
filename.map(file => (
stats = fs.statSync(file),
stats.isFile() && (Date.now() - stats.mtimeMs >= 1000 * 60 * 3) ?
fs.unlinkSync(file) :
null))
}
setInterval(async () => {
await exec("rm -rf ./tmp/*")
}, 60 * 60 * 1000)
async function getMessage(key){
if (store) {
const msg = await store.loadMessage(key.remoteJid, key.id)
return msg?.message
}
return {
conversation: "DitzDev"
}
}
conn.ev.on('message.update', async (chatUpdate) => {
for(const { key, update } of chatUpdate) {
if(update.pollUpdate && key.fromMe) {
const pollCreation = await getMessage(key)
if(pollCreation) {
const pollUpdate = await getAggregateVotesInPollMessage({
message: pollCreation,
pollUpdates: update.pollUpdates,
})
var toCmd = pollUpdate.filter(v => v.voters.length !== 0)[0]?.name
if (toCmd == undefined) return
var prefCmd = prefix + toCmd
conn.appenTextMessage(prefCmd, chatUpdate)
}
}
}
})
setInterval(async () => {
const q = { "key": { "remoteJid": "status@broadcast", "participant":"0@s.whatsapp.net", "fromMe": false, "id": "" },
"message": { "conversation": "Sukses mencadangkan database.json ✅" }}
let sesi = await fs.readFileSync('./database.json')
return await conn.sendMessage(global.nomorown + '@s.whatsapp.net', { document: sesi, mimetype: 'application/json', fileName: 'database.json' }, { quoted: q })
}, 60 * 60 * 1000)
async function connectionUpdate(update) {
const { receivedPendingNotifications, connection, lastDisconnect, isOnline, isNewLogin } = update
if (isNewLogin) conn.isInit = true
if (connection == 'connecting') console.log(chalk.redBright('⚡ Mengaktifkan Bot, Mohon tunggu sebentar...'))
if (connection == 'open') console.log(chalk.green('✅ Tersambung'))
if (isOnline == true) console.log(chalk.green('Status Aktif'))
if (isOnline == false) console.log(chalk.red('Status Mati'))
if (receivedPendingNotifications) console.log(chalk.yellow('Menunggu Pesan Baru'))
if (connection == 'close') console.log(chalk.red('⏱️ koneksi terputus & mencoba menyambung ulang...'))
global.timestamp.connect = new Date
if (lastDisconnect && lastDisconnect.error && lastDisconnect.error.output && lastDisconnect.error.output.statusCode !== DisconnectReason.loggedOut) {
console.log(reloadHandler(true))
}
if (db.data == null) await loadDatabase()
}
process.on('uncaughtException', console.error)
let time = new Date().toLocaleTimeString('en-US', {
hour: 'numeric',
minute: 'numeric',
hour12: true
});
let isInit = true, handler = require('./handler')
reloadHandler = function (restatConn) {
let Handler = require('./handler')
if (Object.keys(Handler || {}).length) handler = Handler
if (restatConn) {
try { conn.ws.close() } catch { }
conn = {
...conn, ...simple.makeWASocket(connectionOptions)
}
}
if (!isInit) {
conn.ev.off('messages.upsert', conn.handler)
conn.ev.off('group-participants.update', conn.onParticipantsUpdate)
conn.ev.off('connection.update', conn.connectionUpdate)
conn.ev.off('creds.update', conn.credsUpdate)
}
conn.welcome = 'Hai, @user!\nSelamat datang di grup *@subject*\n\n@desc'
conn.bye = 'Selamat tinggal @user!'
conn.spromote = '@user sekarang admin!'
conn.sdemote = '@user sekarang bukan admin!'
conn.handler = handler.handler.bind(conn)
conn.onParticipantsUpdate = handler.participantsUpdate.bind(conn)
conn.connectionUpdate = connectionUpdate.bind(conn)
conn.credsUpdate = saveCreds.bind(conn)
conn.ev.on('messages.upsert', conn.handler)
conn.ev.on('group-participants.update', conn.onParticipantsUpdate)
conn.ev.on('connection.update', conn.connectionUpdate)
conn.ev.on('creds.update', conn.credsUpdate)
isInit = false
return true
}
let pluginFolder = path.join(__dirname, 'plugins')
let pluginFilter = filename => /\.js$/.test(filename)
plugins = {}
for (let filename of fs.readdirSync(pluginFolder).filter(pluginFilter)) {
try {
plugins[filename] = require(path.join(pluginFolder, filename))
} catch (e) {
delete plugins[filename]
}
}
console.log(Object.keys(plugins))
reload = (_ev, filename) => {
if (pluginFilter(filename)) {
let dir = path.join(pluginFolder, filename)
if (dir in require.cache) {
delete require.cache[dir]
if (fs.existsSync(dir)) consoleInfo(`re - require plugin '${filename}'`)
else {
consoleWarn(`deleted plugin '${filename}'`)
return delete plugins[filename]
}
} else consoleInfo(`requiring new plugin '${filename}'`)
let err = syntaxerror(fs.readFileSync(dir), filename)
if (err) consoleErr(`syntax error while loading '${filename}'\n${err}`)
else try {
plugins[filename] = require(dir)
} catch (e) {
consoleErr(`error require plugin '${filename}\n${e}'`)
} finally {
plugins = Object.fromEntries(Object.entries(plugins).sort(([a], [b]) => a.localeCompare(b)))
}
}
}
fs.watch(path.join(__dirname, 'plugins'), reload)
reloadHandler()
// Quick Test
async function _quickTest() {
let test = await Promise.all([
cp.spawn('ffmpeg'),
cp.spawn('ffprobe'),
cp.spawn('ffmpeg', ['-hide_banner', '-loglevel', 'error', '-filter_complex', 'color', '-frames:v', '1', '-f', 'webp', '-']),
cp.spawn('convert'),
cp.spawn('magick'),
cp.spawn('gm'),
cp.spawn('find', ['--version'])
].map(p => {
return Promise.race([
new Promise(resolve => {
p.on('close', code => {
resolve(code !== 127)
})
}),
new Promise(resolve => {
p.on('error', _ => resolve(false))
})
])
}))
let [ffmpeg, ffprobe, ffmpegWebp, convert, magick, gm, find] = test
console.log(test)
let s = support = {
ffmpeg,
ffprobe,
ffmpegWebp,
convert,
magick,
gm,
find
}
Object.freeze(support)
if (!s.ffmpeg) consoleWarn('Please install ffmpeg for sending videos (pkg install ffmpeg)')
if (s.ffmpeg && !s.ffmpegWebp) consoleWarn('Stickers may not animated without libwebp on ffmpeg (--enable-ibwebp while compiling ffmpeg)')
if (!s.convert && !s.magick && !s.gm) consoleWarn('Stickers may not work without imagemagick if libwebp on ffmpeg doesnt isntalled (pkg install imagemagick)')
}
_quickTest()
.then(() => consoleInfo('Quick Test Done'))
.catch(console.error)
consoleInfo(time + " Connecting...")
})()
const now = new Date();
const options = {
timeZone: 'Asia/Jakarta',
weekday: 'short',
year: 'numeric',
month: 'short',
day: 'numeric',
hour: 'numeric',
minute: 'numeric',
second: 'numeric'
};
const formatter = new Intl.DateTimeFormat('en-US', options);
const datetimeString = formatter.format(now);
// Function
function pickRandom(list) {
return list[Math.floor(Math.random() * list.length)]
}