mirror of
https://github.com/ION606/archivebot.git
synced 2026-05-14 22:16:56 +00:00
107 lines
2.6 KiB
JavaScript
107 lines
2.6 KiB
JavaScript
//Server stuff
|
|
const express = require('express');
|
|
const app = express();
|
|
app.get("/", (req, res) => {
|
|
res.send("Hello World, it's me, Archive Bot!")
|
|
})
|
|
|
|
app.listen(3000, () => {
|
|
console.log('Archive Bot online!');
|
|
})
|
|
|
|
//Server stuff end
|
|
|
|
|
|
const { Client, Intents } = require('discord.js');
|
|
const Discord = require('discord.js');
|
|
const token = process.env['token'];
|
|
const inst = process.env['instagram'];
|
|
const twit = process.env['twitter'];
|
|
const redd = process.env['reddit'];
|
|
const you = process.env['youtube'];
|
|
const oth = process.env['other'];
|
|
const nsfw = process.env['nsfw'];
|
|
|
|
const list = [inst, twit, redd, you, oth, nsfw]
|
|
|
|
const client = new Client({
|
|
intents: [
|
|
Intents.FLAGS.GUILDS,
|
|
Intents.FLAGS.GUILD_MESSAGES,
|
|
Intents.FLAGS.GUILD_MESSAGE_REACTIONS
|
|
],
|
|
});
|
|
|
|
const prefix = '/';
|
|
const emojiPrefix = "<:archive:";
|
|
|
|
const fs = require('fs');
|
|
const { exit } = require('process');
|
|
client.commands = new Discord.Collection();
|
|
|
|
client.commNames = new Discord.Collection();
|
|
|
|
const commandFiles = fs.readdirSync('./commands/').filter(file => file.endsWith('.js'));
|
|
|
|
let i = 0;
|
|
for (const file of commandFiles) {
|
|
const command = require(`./commands/${file}`);
|
|
|
|
client.commands.set(command.name, command);
|
|
client.commNames.set(i, [command.name, command.description]);
|
|
i ++;
|
|
}
|
|
|
|
|
|
client.commNames.set('length', i);
|
|
|
|
|
|
// client.on('ready', () => {
|
|
// console.log('Archive Bot online!');
|
|
// });
|
|
|
|
|
|
client.on('messageCreate', (message) => {
|
|
|
|
/*//PREVIEW COMMANDS START
|
|
const lib = require('lib')({token: process.env.STDLIB_SECRET_TOKEN});
|
|
|
|
lib.discord.commands['@0.0.0'].create({
|
|
"name": "test",
|
|
"description": "it's a test command!",
|
|
"options": []
|
|
});
|
|
|
|
//PREVIEW COMMANDS END*/
|
|
|
|
//COMMAND AREA
|
|
//Check if the prefix exists
|
|
let args;
|
|
let command;
|
|
if (message.content.startsWith(emojiPrefix)) {
|
|
args = message.content.slice(30).split(' ');
|
|
// args.splice(args.indexOf(''), 1);
|
|
command = 'archive';
|
|
} else if (!message.content.startsWith(prefix) || message.author.bot) return;
|
|
else {
|
|
args = message.content.slice(prefix.length).split(' ');
|
|
command = args.shift().toLowerCase();
|
|
}
|
|
|
|
//Check if the user has sufficient permission
|
|
//Performes the command
|
|
switch(command) {
|
|
case 'test': client.commands.get('Hello World').execute(message, args);
|
|
break;
|
|
|
|
case 'archive': client.commands.get('archive').execute(message, args, list, client, Discord);
|
|
break;
|
|
|
|
default: message.channel.send("'" + message.content + "' is not a command!");
|
|
}
|
|
})
|
|
|
|
|
|
|
|
//Last Line
|
|
client.login(token); |