goat
command
nsfw
No description
0
views
0
likes
0
installs
Aliases: ns
raw source
const fs = require('fs');
const path = require('path');
module.exports = {
config: {
name: "nsfw",
aliases: ["ns"],
version: "1.0",
author: "SiAM | Samuel Kâñèñgeè",
countDown: 5,
category:"owner",
role: 2,
guide: {
en: "{pn} approve/remove/disapproved/check"
}
},
onStart: async function({ api, args, message, event }) {
const { getPrefix } = global.utils;
const p = getPrefix(event.threadID);
const threadID = event.threadID;
const approvedIDsPath = path.join(__dirname, "assist_json", "approved_ids.json");
const pendingIDsPath = path.join(__dirname, "assist_json", "pending_ids.json");
if (args[0] === "approve" && args[1]) {
const id = args[1];
const messageFromAdmin = args.slice(2).join(" ");
let approvedIDs = JSON.parse(fs.readFileSync(approvedIDsPath));
if (approvedIDs.includes(id)) {
message.reply("╔════ஜ۩۞۩ஜ═══╗\n\nThis thread ID is already approved\n\n╚════ஜ۩۞۩ஜ═══╝");
} else {
approvedIDs.push(id);
fs.writeFileSync(approvedIDsPath, JSON.stringify(approvedIDs));
api.sendMessage(`╔════ஜ۩۞۩ஜ═══╗\n\n📌 Request Accepted📌\nyour request has been approved by BotAdmin\nNow all NSFW commands will work for this thread.\n\nMessage from admin: ${messageFromAdmin}\n\n╚════ஜ۩۞۩ஜ═══╝`, id);
message.reply(`╔════ஜ۩۞۩ஜ═══╗\n\nThis Thread has been approved now to use NSFW command\n\n If you don't know how to use this bot then join the support Box \nType : ${p}support\nto join.\n\n╚════ஜ۩۞۩ஜ═══╝`);
// Remove from pending IDs list
let pendingIDs = JSON.parse(fs.readFileSync(pendingIDsPath));
if (pendingIDs.includes(id)) {
pendingIDs.splice(pendingIDs.indexOf(id), 1);
fs.writeFileSync(pendingIDsPath, JSON.stringify(pendingIDs));
}
}
} else if (args[0] === "remove" && args[1]) {
const id = args[1];
const reason = args.slice(2).join(" ");
let approvedIDs = JSON.parse(fs.readFileSync(approvedIDsPath));
if (!approvedIDs.includes(id)) {
message.reply("╔════ஜ۩۞۩ஜ═══╗\n\nthis thread id is not approved, so no need to remove \n\n╚════ஜ۩۞۩ஜ═══╝");
} else {
approvedIDs.splice(approvedIDs.indexOf(id), 1);
fs.writeFileSync(approvedIDsPath, JSON.stringify(approvedIDs));
api.sendMessage(`╔════ஜ۩۞۩ஜ═══╗\n\n⚠️Warning ⚠️\nNow this Thread ID's permission has been disapproved or removed to use NSFW commands by BotAdmin.\n\nReason: ${reason}\nContact: 𝐗𝐍𝐈𝐋 for more information.\nFB: https://www.facebook.com/xnilxhowdhury143\n\n╚════ஜ۩۞۩ஜ═══╝`, id);
message.reply("╔════ஜ۩۞۩ஜ═══╗\n\nThe thread ID has been removed from using NSFW commend\n\n╚════ஜ۩۞۩ஜ═══╝");
}
} else if (args[0] === "disapproved" && args[1] && args[2]) {
const id = args[1];
const reason = args.slice(2).join(" ");
let pendingIDs = JSON.parse(fs.readFileSync(pendingIDsPath));
if (!pendingIDs.includes(id)) {
message.reply("╔════ஜ۩۞۩ஜ═══╗\n\nThis thread ID is not pending approval.\n\n╚════ஜ۩۞۩ஜ═══╝");
} else {
// Remove from pending IDs list
pendingIDs.splice(pendingIDs.indexOf(id), 1);
fs.writeFileSync(pendingIDsPath, JSON.stringify(pendingIDs));
api.sendMessage(`╔════ஜ۩۞۩ஜ═══╗\n\n⚠️ Warning ⚠️\nYour thread ID's permission to use NSFW commands has been disapproved by BotAdmin.\n\nReason: ${reason}\nContact: 𝐗𝐍𝐈𝐋 for more information.\nFB: https://www.facebook.com/xnilxhowdhury143\n\njoin the support Box for fast reply\nType : ${p}support \nto join.\n\n╚════ஜ۩۞۩ஜ═══╝`, id);
message.reply("╔════ஜ۩۞۩ஜ═══╗\n\nThe thread ID has been disapproved for using NSFW commands.\n\n╚════ஜ۩۞۩ஜ═══╝");
}
} else if (args[0] === "check") {
let approvedIDs = JSON.parse(fs.readFileSync(approvedIDsPath));
if (approvedIDs.includes(threadID)) {
message.reply("╔════ஜ۩۞۩ஜ═══╗\n\nNSFW is currently on for this thread.\n\n╚════ஜ۩۞۩ஜ═══╝");
} else {
message.reply("╔════ஜ۩۞۩ஜ═══╗\n\nNSFW is currently off for this thread.\n\n╚════ஜ۩۞۩ஜ═══╝");
}
} else {
message.reply(`╔════ஜ۩۞۩ஜ═══╗\n\nInvalid command usage. Use "${p}help nsfw" to see how to use this command.\n\n╚════ஜ۩۞۩ஜ═══╝`);
}
},
};