/**************************************** * * AleeBot: Made for discord servers * Copyright (C) 2018 AleeCorp * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . * * *************************************/ const Discord = require('discord.js'); const moment = require('moment'); const readline = require('readline'); const DBL = require("dblapi.js"); const client = new Discord.Client({ disableEveryone: true }); const settings = require('./storage/settings.json') const fs = require('fs'); const api = require('./tokens.json'); const dbl = new DBL(api.dbltoken, client); const log = message => { console.log(`[${moment().format('YYYY-MM-DD HH:mm:ss')}] ${message}`); }; const rl = readline.createInterface({ input: process.stdin, output: process.stdout, prompt: '> ' }); console.log(`AleeBot ${settings.abVersion}: Copyright (C) 2018 AleeCorp`); console.log('This program comes with ABSOLUTELY NO WARRANTY; for details type `show w\'.'); console.log ('This is free software, and you are welcome to redistribute it'); console.log ('under certain conditions; type `show c\' for details.\n') if (process.argv.indexOf("--debug") == -1) { console.log("Running AleeBot without --debug command line flag. Debug output disabled.\n"); } else { console.log('[!] Entering debug mode...') client.on('debug', function(info) { log(info); }); client.on('warn', function(info) { log(info); }); } client.commands = new Discord.Collection(); client.aliases = new Discord.Collection(); fs.readdir('./commands', (err, files) => { if (err) console.error(err); log(`[!] Attempting to load a total of ${files.length} commands into the memory.`); files.forEach(file => { try { const command = require(`./commands/${file}`); log(`[!] Attempting to load the command "${command.help.name}".`); client.commands.set(command.help.name, command); command.conf.aliases.forEach(alias => { client.aliases.set(alias, command.help.name); log(`[!] Attempting to load "${alias}" as an alias for "${command.help.name}"`); }); } catch (err) { log('[X] An error has occured trying to load a command. Here is the error.'); console.log(err.stack); } }); log('[>] Command Loading complete!'); console.log('\n'); }); rl.on('line', function(cmd){ var args = cmd.split(" "); switch(args[0]) { case "guilds": if (client.guilds.size === 0) { console.log(('[!] No guilds found.')); } else { console.log('[i] Here\'s the servers that AleeBot is connected to:') for ([id, guild] of client.guilds) { console.log(` Guild Name: ${guild.name} - ID: ${guild.id}`); } } break; case "channels": if (!args[1]) { console.log('[!] Please insert the guild\'s ID.') } else { var guild = client.guilds.get(args[1]); console.log('[i] Here\'s the channels that this guild have:') for ([id, channel, guild] of guild && client.channels) { console.log(` Channel: #${channel.name} - ID: ${channel.id}`); } } break; case "leave": if (!args[1]) { console.log('[!] Please insert the guild\'s ID.'); } else { var guild = client.guilds.get(args[1]); guild.leave(); } break; case "broadcast": if (!args[1]) { console.log('[!] Usage: broadcast [guildID] [channelID].'); } else { let broadcast = args.join(" ").slice(48); var guild = null; guild = client.guilds.get(args[1]); var channel = null; channel = guild.channels.get(args[2]) if (channel != null) { channel.send(broadcast); } } break; case "uptime": let uptime = parseInt(client.uptime); uptime = Math.floor(uptime / 1000); let uptimeMinutes = Math.floor(uptime / 60); const minutes = uptime % 60; let hours = 0; while (uptimeMinutes >= 60) { hours++; uptimeMinutes = uptimeMinutes - 60; } const uptimeSeconds = minutes % 60; console.log('[i] AleeBot has been up for ' + hours + ' hours, ' + uptimeMinutes + ' minutes, and ' + uptimeSeconds + ' seconds.'); break; case "exit": console.log('[i] AleeBot will now exit!') process.exit(0); break; case "help": var msg = (`AleeBot `+ settings.abVersion +` Console Help\n\n`); msg += (`guilds - Shows all guilds that AleeBot's on.\n`) msg += (`channels - Shows all the channels that the guilds have.\n`) msg += (`leave - Leaves a guild.\n`) msg += (`broadcast - Broadcasts a message to a server.\n`) msg += (`uptime - Shows the uptime for AleeBot.\n`) msg += (`help - Shows this command.\n`) msg += (`exit - Exits AleeBot.\n`) console.log(msg); break; default: console.log('Unknown Command type \'help\' to list the commands...') } rl.prompt(); }); client.on('ready', () => { log('[>] AleeBot is now ready!'); log(`[i] Logged in as ${client.user.tag}`); log(`[i] Default Prefix: ${settings.prefix}`) log(`[i] Bot ID: ${client.user.id}`); log(`[i] Token: ${api.abtoken}`); log('[i] Running version ' + settings.abVersion + ` and in ${client.guilds.size} guilds`); client.setInterval(function() { const games = [ 'AleeBot ' + settings.abVersion + ' | ' + settings.prefix + 'help', 'Annoying Alee', 'Coding stuff', 'Drawing shapes', 'Fighting AstralMod', ]; setInterval(() => { dbl.postStats(client.guilds.size, client.shards.Id, client.shards.total); }, 1800000); client.user.setPresence({ status: 'online', afk: false, game: { type: 0, name: games[Math.floor(Math.random() * games.length)], }, }); }, 200000); client.user.setStatus('online'); rl.prompt(); }); client.on('guildCreate', guild => { log(`[i] New guild joined: ${guild.name} (id: ${guild.id}). This guild has ${guild.memberCount} members!`); message.author.send(':wave: Hello! Thanks for inviting AleeBot!\nFor help type `ab:help`, and if you want to set the prefix `ab:setprefix [prefix]`') }); client.on('guildDelete', guild => { log(`[i] I have been removed from: ${guild.name} (id: ${guild.id})`); }); client.on('message', (msg) => { if (msg.author.bot) return; let prefixes = JSON.parse(fs.readFileSync("./storage/prefixes.json", "utf8")); if(!prefixes[msg.guild.id]){ prefixes[msg.guild.id] = { prefixes: settings.prefix }; } let prefix = prefixes[msg.guild.id].prefixes if (!msg.content.startsWith(prefix)) return; const args = msg.content.slice(prefix.length).trim().split(/ +/g); const command = args.shift(); let cmd; if (client.commands.has(command)) { cmd = client.commands.get(command); } else if (client.aliases.has(command)) { cmd = client.commands.get(client.aliases.get(command)); } if (cmd) { if (cmd.conf.guildOnly == true) { if (!msg.channel.guild) { return msg.channel.createMessage('This command can only be ran in a guild.'); } } try { cmd.run(client, msg, args); } catch (e) { console.error(e); } } }); process.on('unhandledRejection', function(err, p) { log("[X | UNCAUGHT PROMISE] " + err.stack); }); process.on('uncaughtException', function (exception) { log(exception); }); client.on("error", error => { log(error); }); client.login(api.abtoken).catch(function() { log('[X] Login failed. Please contact Alee14#9928 or email him at alee14498@gmail.com.'); });