-
Notifications
You must be signed in to change notification settings - Fork 11
/
server.js
46 lines (39 loc) · 1.38 KB
/
server.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
import express from 'express'
import fetch from 'node-fetch'
let app = global.app = express()
function connect(PORT) {
app.get('/', (req, res) => res.send('Hello World!'))
app.get('/nowa', async (req, res) => {
let q = req.query.number, regex = /x/g
if (!q) return res.send('Input Parameter Number Parameter')
if (!q.match(regex)) return res.send('Parameter Number Must Fill With One Letter "x"')
let random = q.match(regex).length, total = Math.pow(10, random), array = []
for (let i = 0; i < total; i++) {
let list = [...i.toString().padStart(random, '0')]
let result = q.replace(regex, () => list.shift()) + '@s.whatsapp.net'
if (await conn.onWhatsApp(result).then(v => (v[0] || {}).exists)) {
let info = await conn.fetchStatus(result).catch(_ => {})
array.push({ jid: result, exists: true, ...info })
} else {
array.push({ jid: result, exists: false })
}
}
res.json({ result: array })
})
app.listen(PORT, () => {
keepAlive()
console.log('App listened on port', PORT)
})
}
function keepAlive() {
let url = `https://${process.env.REPL_SLUG}.${process.env.REPL_OWNER}.repl.co`
if (/(\/\/|\.)undefined\./.test(url)) return
setInterval(() => {
fetch(url).catch(console.log)
}, 30 * 1000)
}
function formatDate(n, locale = 'id') {
let d = new Date(n)
return d.toLocaleDateString(locale, { timeZone: 'Asia/Jakarta' })
}
export default connect