You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
168 lines
7.0 KiB
168 lines
7.0 KiB
const Discord = require('discord.js');
|
|
const spinnies = require('dreidels');
|
|
const gs = require('gradient-string');
|
|
const chalk = require('chalk');
|
|
const ora = require('ora');
|
|
const mongoose = require('mongoose');
|
|
const readline = require('readline');
|
|
|
|
const {SlashCommand} = require('./util/slash');
|
|
const {SlashManager} = require('./util/slashmanager');
|
|
const {SlashCommandBuilder} = require('@discordjs/builders');
|
|
const {Tag} = require('./util/tag');
|
|
const {TagFilter} = require('./util/tagfilter');
|
|
|
|
const flags = Discord.Intents.FLAGS;
|
|
let fl = []; Object.keys(flags).forEach(flag => fl.push(flags[flag]));
|
|
let client = new Discord.Client({intents: fl, partials: ["CHANNEL", "REACTION", "MESSAGE"]});
|
|
let botReadyResolver;
|
|
|
|
client.misc = {
|
|
savers: ['497598953206841375', '480535078150340609', '468903364533420074'],
|
|
activeDMs: new Discord.Collection(),
|
|
statusPings: new Discord.Collection(),
|
|
startup: new Date(),
|
|
startupNoConnect: null,
|
|
cache: {
|
|
ar: new Map(),
|
|
arIgnore: new Map(),
|
|
bl: {
|
|
guild: [],
|
|
user: []
|
|
},
|
|
lxp: {
|
|
enabled: [],
|
|
xp: {},
|
|
hasLevelRoles: [],
|
|
disabledChannels: new Map()
|
|
},
|
|
chests: [],
|
|
chestsTimeout: new Map(),
|
|
chests: {
|
|
enabled: [],
|
|
timeout: new Map(),
|
|
waiting: new Map()
|
|
},
|
|
monit: {},
|
|
monitEnabled: [],
|
|
inVC: [],
|
|
VCG: {},
|
|
activeVC: [],
|
|
chars: new Discord.Collection(),
|
|
anime: new Discord.Collection(),
|
|
charsID: new Discord.Collection(),
|
|
animeID: new Discord.Collection(),
|
|
charsNum: 0,
|
|
charsLove: new Discord.Collection(),
|
|
monners: {},
|
|
monnersNames: new Map(),
|
|
spin: new spinnies()
|
|
},
|
|
loggers: {},
|
|
rl: readline.createInterface({input: process.stdin, output: process.stdout}),
|
|
cooldown: new Discord.Collection(),
|
|
config: {
|
|
nocli: false,
|
|
dev: false,
|
|
logs: 'normal',
|
|
lightstartup: false,
|
|
ignorecmds: [],
|
|
gradients: false,
|
|
spinners: false
|
|
},
|
|
botFinished: new Promise(r => {botReadyResolver = r;}),
|
|
fullyReady: false
|
|
};
|
|
|
|
//const config = require('./config.js');
|
|
const auth = require('./auth.json');
|
|
|
|
//client.config = config;
|
|
|
|
async function init() {
|
|
const cliargs = new TagFilter([
|
|
new Tag(['cli', 'c', 'nc', 'nocli'], 'nocli', 'toggle'),
|
|
new Tag(['dev', 'd', 'development', 'test'], 'dev', 'toggle'),
|
|
new Tag(['logs', 'l', 'loglevel', 'll'], 'logs', 'append'),
|
|
new Tag(['lightstart', 'lightstartup', 'ls'], 'lightstartup', 'toggle'),
|
|
new Tag(['i', 'ignore', 'icmd', 'ignorecmd'], 'ignorecmds', 'listAppend'),
|
|
new Tag(['g', 'gradient', 'gradients'], 'gradients', 'toggle'),
|
|
new Tag(['s', 'sp', 'spinners', 'spin'], 'spinners', 'toggle')
|
|
]).test(process.argv.slice(2).join(" "));
|
|
|
|
if (Object.keys(cliargs).length) {
|
|
console.log(`${chalk.gray('[ARGS]')} >> ${chalk.gray.bold("Arguments detected.\n")}`);
|
|
Object.keys(cliargs).forEach(arg => {
|
|
client.misc.config[arg] = cliargs[arg];
|
|
console.log(`${chalk.gray('[ARGS]')} >> ${chalk.gray.bold(arg)}${chalk.gray(':')} ${chalk.blue(cliargs[arg])}`);
|
|
});
|
|
console.log('');
|
|
}
|
|
|
|
let cloginsp = ora(chalk.magentaBright('Connecting Discord client...')).start();
|
|
let pclc = new Date().getTime();
|
|
await client.login(auth.token);
|
|
cloginsp.stop(); cloginsp.clear();
|
|
console.log(`${chalk.green('[BOOT]')} >> ${chalk.greenBright(`Connected to Discord in `)}${chalk.white(`${new Date().getTime() - pclc}ms`)}`);
|
|
|
|
client.misc.startupNoConnect = new Date();
|
|
client.config = auth;
|
|
|
|
client.slash = new SlashManager(client).setTestServer('691122844339404800').importCommands().init();
|
|
client.slash.register();
|
|
client = client.slash.client;
|
|
|
|
let mloginsp = ora(chalk.magentaBright('Connecting to Mongo client...')).start();
|
|
let pmcc = new Date().getTime();
|
|
const config = client.config;
|
|
try {
|
|
await mongoose.connect(`mongodb+srv://${config.database.user}:${config.database.password}@${config.database.cluster}.3jpp4.mongodb.net/test`, {
|
|
useFindAndModify: false, useNewUrlParser: true, dbName: 'Natsuki-Main', useUnifiedTopology: true, useCreateIndex: true
|
|
}).catch(e => {
|
|
let date = new Date(); date = date.toString().slice(date.toString().search(":") - 2, date.toString().search(":") + 6);
|
|
console.error(`\n${chalk.red('[ERROR]')} >> ${chalk.yellow(`At [${date}] | Occurred while trying to connect to Mongo Cluster`)}`, e);
|
|
mloginsp.stop(); mloginsp.clear();
|
|
});
|
|
mloginsp.stop(); mloginsp.clear();
|
|
console.log(`${chalk.green('[BOOT]')} >> ${chalk.greenBright(`Connected to Mongo Database in `)}${chalk.white(`${new Date().getTime() - pmcc}ms`)}`);
|
|
} catch (e) {
|
|
let date = new Date(); date = date.toString().slice(date.toString().search(":") - 2, date.toString().search(":") + 6);
|
|
console.error(`\n${chalk.red('[ERROR]')} >> ${chalk.yellow(`At [${date}] | Occurred while trying to connect to Mongo Cluster`)}`, e);
|
|
mloginsp.stop(); mloginsp.clear();
|
|
}
|
|
|
|
client.developers = ["330547934951112705", "673477059904929802"];
|
|
|
|
client.utils = {};
|
|
client.utils.s = num => num === 1 ? '' : 's';
|
|
client.utils.as = (num, text) => `${text}${client.utils.s(num)}`;
|
|
client.utils.an = (text, caps) => `${caps ? 'A' : 'a'}${['a', 'e', 'i', 'o', 'u'].includes(text.toLowerCase().trim().slice(0, 1)) ? 'n' : ''} ${text}`;
|
|
|
|
['commands', 'aliases', 'executables'].forEach(x => client[x] = new Discord.Collection());
|
|
client.responses = {triggers: [], commands: new Discord.Collection()};
|
|
let iters = ['command', 'event', 'response'];
|
|
if (client.misc.config.spinners) {
|
|
console.log('');
|
|
client.misc.cache.spinLog = [];
|
|
iters.map(i => `Loading ${i.slice(0, 1).toUpperCase()}${i.slice(1)}s`)
|
|
.map(i => client.misc.config.gradients ? gs.instagram(i) : chalk.blue(i))
|
|
.forEach((i, ind) => client.misc.cache.spin.add(iters[ind], {text: i}));
|
|
}
|
|
for (let i = 0; i < iters.length; i++) {let x = iters[i]; await require(`./handle/${x}`)(client);}
|
|
if (client.misc.config.spinners) {
|
|
client.misc.cache.spinLog.forEach(log => console.log(log));
|
|
}
|
|
if (!client.misc.config.nocli) {require('./handle/console')(client);}
|
|
|
|
client.utils.logch = async () => {return client.guilds.cache.get('762707532417335296').channels.cache.get('762732961753595915');};
|
|
client.guildconfig = {};
|
|
client.guildconfig.prefixes = new Map();
|
|
|
|
client.guildconfig.logs = new Map();
|
|
|
|
botReadyResolver(0);
|
|
|
|
await require('./util/wait')(5000);
|
|
if (!client.misc.readied) {client.misc.forcedReady = true; await require('./events/ready')(client);}
|
|
}
|
|
init().then(() => {}); |