goat
command
ramadan
No description
0
views
0
likes
0
installs
raw source
const axios = require("axios");
const { getStreamFromURL } = global.utils;
module.exports = {
config: {
name: "ramadan",
version: "1.0",
author: "SiAM",
countDown: 5,
role: 0,
shortDescription: "",
longDescription: "This command provides Ramadan timings information for a given city.",
category: "Religion",
guide: { en:"{pn} district/state "},
},
onStart: async function ({ api, args, message, event}) {
try {
if (args.length === 0) {
message.reply("Please provide a city/state name.");
return;
}
const botName = 'Halal Fox'; // add your bot name to show it in canvas image';
const cityName = args.join(" ");
message.reaction("⏰", event.messageID);
const apiUrl = `https://connect-foxapi.onrender.com/tools/ramadan?city=${encodeURIComponent(cityName)}&botName=${encodeURIComponent(botName)}`;
const response = await axios.get(apiUrl);
if (!response.data.city) {
message.reply("City not found. Please check the spelling [don't use Direct 'country' name, use your city or state name ]");
return;
}
const {
city,
hijriDate,
localTime,
today,
tomorrow,
canvas_img
} = response.data;
const ramadanInfo = "🌙 Ramadan Timings 🕌\n" +
"❏ City: " + city + "\n" +
"❏ Date: " + today.date + "\n" +
"❏ Hijri Date: " + hijriDate + "\n" +
"❏ Current Time: " + localTime + "\n\n" +
"Today's:\n" +
"❏ Sahr: " + today.sahr + "\n" +
"❏ Iftar: " + today.iftar + "\n\n" +
"Tomorrow:\n" +
"❏ Date: " + tomorrow.date + "\n" +
"❏ Sahr: " + tomorrow.sahr + "\n" +
"❏ Iftar: " + tomorrow.iftar + "\n\n" +
"❏ Note: 1 minute preventative difference in Sehri (-1 min) & Iftar (+1 min)";
const stream = await getStreamFromURL(canvas_img);
message.reply({
body: ramadanInfo,
attachment: stream
});
await message.reaction("✅", event.messageID);
} catch (error) {
console.error(error);
message.reply("City not found. Please check the spelling [don't use Direct 'country' name, use your city or state name ]");
}
}
};