|
|
|
|
|
const { proto, delay, getContentType } = require('@adiwajshing/baileys') |
|
|
const chalk = require('chalk') |
|
|
const fs = require('fs') |
|
|
const Crypto = require('crypto') |
|
|
const axios = require('axios') |
|
|
const moment = require('moment-timezone') |
|
|
const { sizeFormatter } = require('human-readable') |
|
|
const util = require('util') |
|
|
const Jimp = require('jimp') |
|
|
const FormData = require("form-data"); |
|
|
|
|
|
const { defaultMaxListeners } = require('stream') |
|
|
exports.getBuffer = async (url, options) => { |
|
|
try { |
|
|
options ? options : {} |
|
|
const res = await axios({ |
|
|
method: "get", |
|
|
url, |
|
|
headers: { |
|
|
'DNT': 1, |
|
|
'Upgrade-Insecure-Request': 1 |
|
|
}, |
|
|
...options, |
|
|
responseType: 'arraybuffer' |
|
|
}) |
|
|
return res.data |
|
|
} catch (err) { |
|
|
return err |
|
|
} |
|
|
} |
|
|
exports.getRandom = (ext) => { |
|
|
return `${Math.floor(Math.random() * 10000)}${ext}` |
|
|
} |
|
|
exports.hitungmundur = async(bulan, tanggal) => { |
|
|
let from = new Date(`${bulan} ${tanggal}, 2024 00:00:00`).getTime(); |
|
|
let now = Date.now(); |
|
|
let distance = from - now; |
|
|
let days = Math.floor(distance / (1000 * 60 * 60 * 24)); |
|
|
let hours = Math.floor((distance % (1000 * 60 * 60 * 24)) / (1000 * 60 * 60)); |
|
|
let minutes = Math.floor((distance % (1000 * 60 * 60)) / (1000 * 60)); |
|
|
let seconds = Math.floor((distance % (1000 * 60)) / 1000); |
|
|
return days + "Hari " + hours + "Jam " + minutes + "Menit " + seconds + "Detik" |
|
|
} |
|
|
exports.bytesToSize = (bytes, decimals = 2) => { |
|
|
if (bytes === 0) return '0 Bytes'; |
|
|
const k = 1024; |
|
|
const dm = decimals < 0 ? 0 : decimals; |
|
|
const sizes = ['Bytes', 'KB', 'MB', 'GB', 'TB', 'PB', 'EB', 'ZB', 'YB']; |
|
|
const i = Math.floor(Math.log(bytes) / Math.log(k)); |
|
|
return parseFloat((bytes / Math.pow(k, i)).toFixed(dm)) + ' ' + sizes[i]; |
|
|
} |
|
|
exports.checkBandwidth = async() => { |
|
|
let ind = 0; |
|
|
let out = 0; |
|
|
for (let i of await require("node-os-utils").netstat.stats()) { |
|
|
ind += parseInt(i.inputBytes); |
|
|
out += parseInt(i.outputBytes); |
|
|
} |
|
|
return { |
|
|
download: exports.bytesToSize(ind), |
|
|
upload: exports.bytesToSize(out), |
|
|
}; |
|
|
} |
|
|
exports.runtime = function(seconds) { |
|
|
seconds = Number(seconds); |
|
|
var d = Math.floor(seconds / (3600 * 24)); |
|
|
var h = Math.floor(seconds % (3600 * 24) / 3600); |
|
|
var m = Math.floor(seconds % 3600 / 60); |
|
|
var s = Math.floor(seconds % 60); |
|
|
var dDisplay = d > 0 ? d + (d == 1 ? " Hari, " : " Hari, ") : ""; |
|
|
var hDisplay = h > 0 ? h + (h == 1 ? " Jam, " : " Jam, ") : ""; |
|
|
var mDisplay = m > 0 ? m + (m == 1 ? " Menit, " : " Menit, ") : ""; |
|
|
var sDisplay = s > 0 ? s + (s == 1 ? " Detik" : " Detik") : ""; |
|
|
return dDisplay + hDisplay + mDisplay + sDisplay; |
|
|
} |
|
|
exports.fetchJson = async (url, options) => { |
|
|
try { |
|
|
options ? options : {} |
|
|
const res = await axios({ |
|
|
method: 'GET', |
|
|
url: url, |
|
|
headers: { |
|
|
'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36' |
|
|
}, |
|
|
...options |
|
|
}) |
|
|
return res.data |
|
|
} catch (err) { |
|
|
return err |
|
|
} |
|
|
} |
|
|
|
|
|
exports.clockString = (ms) => { |
|
|
let h = isNaN(ms) ? '--' : Math.floor(ms / 3600000) |
|
|
let m = isNaN(ms) ? '--' : Math.floor(ms / 60000) % 60 |
|
|
let s = isNaN(ms) ? '--' : Math.floor(ms / 1000) % 60 |
|
|
return [h, m, s].map(v => v.toString().padStart(2, 0)).join(':') |
|
|
} |
|
|
|
|
|
exports.sleep = async (ms) => { |
|
|
return new Promise(resolve => setTimeout(resolve, ms)); |
|
|
} |
|
|
|
|
|
exports.getGroupAdmins = async(participants) => { |
|
|
let admins = [] |
|
|
for (let i of participants) { |
|
|
i.admin === "superadmin" ? admins.push(i.id) : i.admin === "admin" ? admins.push(i.id) : '' |
|
|
} |
|
|
return admins || [] |
|
|
} |
|
|
|
|
|
exports.fetchBuffer = async (url, options) => { |
|
|
try { |
|
|
options ? options : {} |
|
|
const res = await axios({ |
|
|
method: "GET", |
|
|
url, |
|
|
headers: { |
|
|
"User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.70 Safari/537.36", |
|
|
'DNT': 1, |
|
|
'Upgrade-Insecure-Request': 1 |
|
|
}, |
|
|
...options, |
|
|
responseType: 'arraybuffer' |
|
|
}) |
|
|
return res.data |
|
|
} catch (err) { |
|
|
return err |
|
|
} |
|
|
} |
|
|
|
|
|
exports.TelegraPh = async(Path) =>{ |
|
|
return new Promise (async (resolve, reject) => { |
|
|
if (!fs.existsSync(Path)) return reject(new Error("File not Found")) |
|
|
try { |
|
|
const form = new FormData(); |
|
|
form.append("file", fs.createReadStream(Path)) |
|
|
const data = await axios({ |
|
|
url: "https://telegra.ph/upload", |
|
|
method: "POST", |
|
|
headers: { |
|
|
...form.getHeaders() |
|
|
}, |
|
|
data: form |
|
|
}) |
|
|
return resolve("https://telegra.ph" + data.data[0].src) |
|
|
} catch (err) { |
|
|
return reject(new Error(String(err))) |
|
|
} |
|
|
}) |
|
|
} |
|
|
|
|
|
exports.msToDate = async(mse) =>{ |
|
|
temp = mse |
|
|
days = Math.floor(mse / (24 * 60 * 60 * 1000)); |
|
|
daysms = mse % (24 * 60 * 60 * 1000); |
|
|
hours = Math.floor((daysms) / (60 * 60 * 1000)); |
|
|
hoursms = mse % (60 * 60 * 1000); |
|
|
minutes = Math.floor((hoursms) / (60 * 1000)); |
|
|
minutesms = mse % (60 * 1000); |
|
|
sec = Math.floor((minutesms) / (1000)); |
|
|
return days + " Days " + hours + " Hours " + minutes + " Minutes"; |
|
|
} |
|
|
|
|
|
exports.isUrl = async (url) => { |
|
|
return url.match(new RegExp(/https?:\/\/(www\.)?[-a-zA-Z0-9@:%._+~#=]{1,256}\.[a-zA-Z0-9()]{1,6}\b([-a-zA-Z0-9()@:%_+.~#?&/=]*)/, 'gi')) |
|
|
} |
|
|
|
|
|
|
|
|
exports.tanggal = async (numer) => { |
|
|
myMonths = ["Januari","Februari","Maret","April","Mei","Juni","Juli","Agustus","September","Oktober","November","Desember"]; |
|
|
myDays = ['Minggu','Senin','Selasa','Rabu','Kamis','Jumat','Sabtu']; |
|
|
var tgl = new Date(numer); |
|
|
var day = tgl.getDate() |
|
|
bulan = tgl.getMonth() |
|
|
var thisDay = tgl.getDay(), |
|
|
thisDay = myDays[thisDay]; |
|
|
var yy = tgl.getYear() |
|
|
var year = (yy < 1000) ? yy + 1900 : yy; |
|
|
const time = moment.tz('Asia/Jakarta').format('DD/MM HH:mm:ss') |
|
|
let d = new Date |
|
|
let locale = 'id' |
|
|
let gmt = new Date(0).getTime() - new Date('1 January 1970').getTime() |
|
|
let weton = ['Pahing', 'Pon','Wage','Kliwon','Legi'][Math.floor(((d * 1) + gmt) / 84600000) % 5] |
|
|
|
|
|
return`${thisDay}, ${day} - ${myMonths[bulan]} - ${year}` |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
exports.smsg = (conn, m, store) => { |
|
|
if (!m) return m |
|
|
let M = proto.WebMessageInfo |
|
|
if (m.key) { |
|
|
m.id = m.key.id |
|
|
m.isBaileys = m.id.startsWith('BAE5') && m.id.length === 16 |
|
|
m.chat = m.key.remoteJid |
|
|
m.fromMe = m.key.fromMe |
|
|
m.isGroup = m.chat.endsWith('@g.us') |
|
|
m.sender = conn.decodeJid(m.fromMe && conn.user.id || m.participant || m.key.participant || m.chat || '') |
|
|
if (m.isGroup) m.participant = conn.decodeJid(m.key.participant) || '' |
|
|
} |
|
|
if (m.message) { |
|
|
m.mtype = getContentType(m.message) |
|
|
m.msg = (m.mtype == 'viewOnceMessage' ? m.message[m.mtype].message[getContentType(m.message[m.mtype].message)] : m.message[m.mtype]) |
|
|
m.body = m.message.conversation || m.msg.caption || m.msg.text || (m.mtype == 'listResponseMessage') && m.msg.singleSelectReply.selectedRowId || (m.mtype == 'buttonsResponseMessage') && m.msg.selectedButtonId || (m.mtype == 'viewOnceMessage') && m.msg.caption || m.text |
|
|
let quoted = m.quoted = m.msg.contextInfo ? m.msg.contextInfo.quotedMessage : null |
|
|
m.mentionedJid = m.msg.contextInfo ? m.msg.contextInfo.mentionedJid : [] |
|
|
if (m.quoted) { |
|
|
let type = Object.keys(m.quoted)[0] |
|
|
m.quoted = m.quoted[type] |
|
|
if (['productMessage'].includes(type)) { |
|
|
type = Object.keys(m.quoted)[0] |
|
|
m.quoted = m.quoted[type] |
|
|
} |
|
|
if (typeof m.quoted === 'string') m.quoted = { |
|
|
text: m.quoted |
|
|
} |
|
|
m.quoted.mtype = type |
|
|
m.quoted.id = m.msg.contextInfo.stanzaId |
|
|
m.quoted.chat = m.msg.contextInfo.remoteJid || m.chat |
|
|
m.quoted.isBaileys = m.quoted.id ? m.quoted.id.startsWith('BAE5') && m.quoted.id.length === 16 : false |
|
|
m.quoted.sender = conn.decodeJid(m.msg.contextInfo.participant) |
|
|
m.quoted.fromMe = m.quoted.sender === conn.decodeJid(conn.user.id) |
|
|
m.quoted.text = m.quoted.text || m.quoted.caption || m.quoted.conversation || m.quoted.contentText || m.quoted.selectedDisplayText || m.quoted.title || '' |
|
|
m.quoted.mentionedJid = m.msg.contextInfo ? m.msg.contextInfo.mentionedJid : [] |
|
|
m.getQuotedObj = m.getQuotedMessage = async () => { |
|
|
if (!m.quoted.id) return false |
|
|
let q = await store.loadMessage(m.chat, m.quoted.id, conn) |
|
|
return exports.smsg(conn, q, store) |
|
|
} |
|
|
let vM = m.quoted.fakeObj = M.fromObject({ |
|
|
key: { |
|
|
remoteJid: m.quoted.chat, |
|
|
fromMe: m.quoted.fromMe, |
|
|
id: m.quoted.id |
|
|
}, |
|
|
message: quoted, |
|
|
...(m.isGroup ? { participant: m.quoted.sender } : {}) |
|
|
}) |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
m.quoted.delete = () => conn.sendMessage(m.quoted.chat, { delete: vM.key }) |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
m.quoted.copyNForward = (jid, forceForward = false, options = {}) => conn.copyNForward(jid, vM, forceForward, options) |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
m.quoted.download = () => conn.downloadMediaMessage(m.quoted) |
|
|
} |
|
|
} |
|
|
if (m.msg.url) m.download = () => conn.downloadMediaMessage(m.msg) |
|
|
m.text = m.msg.text || m.msg.caption || m.message.conversation || m.msg.contentText || m.msg.selectedDisplayText || m.msg.title || '' |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
m.reply = (text, chatId = m.chat, options = {}) => Buffer.isBuffer(text) ? conn.sendMedia(chatId, text, 'file', '', m, { ...options }) : conn.sendText(chatId, text, m, { ...options }) |
|
|
|
|
|
|
|
|
|
|
|
m.copy = () => exports.smsg(conn, M.fromObject(M.toObject(m))) |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
m.copyNForward = (jid = m.chat, forceForward = false, options = {}) => conn.copyNForward(jid, m, forceForward, options) |
|
|
|
|
|
return m |
|
|
} |
|
|
|