forked from tandungu123/Module-Mirai
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsdtphongthuy.js
27 lines (26 loc) · 1.03 KB
/
sdtphongthuy.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
module.exports.config = {
name: "sdtphongthuy",
version: "1.0.0",
hasPermision: 0,
credit: "le31.glitch.me",
description: "",
commandCategory: "info",
usages: "[phone number]",
cooldowns: 0,
};
module.exports.run = async function({ api, event, args, utils, Users,Threads }) {
try {
let axios = require('axios');
let { threadID, senderID, messageID } = event;
if (!args[0]) {api.sendMessage("Vui lòng nhập số điện thoại cần tra cứu",threadID,messageID)}
else {
const res = await axios.get(encodeURI(`https://le31.glitch.me/other/sdtphongthuy?number=${args[0]}`));
console.log(res.data);
let data = res.data;
return api.sendMessage(`Bốn số cuối: ${data.bonsoduoi}\nSố lý: ${data.soly}\nÝ nghĩa: ${data.ynghia}\nKết luận: ${data.ketluan}`, event.threadID, event.messageID);
}
}
catch {
return api.sendMessage(`Đã xảy ra lỗi`, event.threadID)
}
}