|
|
|
@ -4,11 +4,9 @@ var app = express();
|
|
|
|
|
const path = require('path');
|
|
|
|
|
const http = require('http');
|
|
|
|
|
const {Server} = require('socket.io');
|
|
|
|
|
const mongoose = require('mongoose');
|
|
|
|
|
const port = process.env.PORT || 5000;
|
|
|
|
|
const {Client, GatewayIntentBits,Partials, ActivityType} = require('./lib.js');
|
|
|
|
|
const Spawner = require('child_process');
|
|
|
|
|
const GuildM = require('./models/guilds')
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
app.use(express.static(path.join(__dirname, "public")));
|
|
|
|
|
app.set("view engine", "ejs");
|
|
|
|
@ -21,9 +19,6 @@ const mongoDB = process.env.mongoDB;
|
|
|
|
|
const server = http.createServer(app);
|
|
|
|
|
const io = new Server(server);
|
|
|
|
|
|
|
|
|
|
var Childs = [];
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
const bot = new Client({ intents: [
|
|
|
|
|
GatewayIntentBits.Guilds,
|
|
|
|
|
GatewayIntentBits.GuildMembers,
|
|
|
|
@ -48,7 +43,7 @@ const bot = new Client({ intents: [
|
|
|
|
|
Partials.Reaction,
|
|
|
|
|
Partials.Message
|
|
|
|
|
]
|
|
|
|
|
});
|
|
|
|
|
}, mongoDB);
|
|
|
|
|
var retryCounter = 0;
|
|
|
|
|
function login()
|
|
|
|
|
{
|
|
|
|
@ -72,21 +67,10 @@ function startLimitProtectionTimer()
|
|
|
|
|
login();
|
|
|
|
|
}, 24*60*60*1000);
|
|
|
|
|
}
|
|
|
|
|
function connectToDB()
|
|
|
|
|
{
|
|
|
|
|
try {
|
|
|
|
|
mongoose.connect(mongoDB);
|
|
|
|
|
} catch (error) {
|
|
|
|
|
console.log('Server: Error: There was an Error with the connection to the database, attempting to restart it.', err)
|
|
|
|
|
connectToDB();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bot.on('ready', () =>
|
|
|
|
|
{
|
|
|
|
|
mongoose.Promise = global.Promise;
|
|
|
|
|
connectToDB();
|
|
|
|
|
console.log(`--------------------------\n ${bot.user.tag.split('#')[0]} \n Ready \n on `+bot.guilds.cache.size+" guilds \n serving "+bot.users.cache.size+" users \n--------------------------")
|
|
|
|
|
bot.user.setPresence({
|
|
|
|
|
activities: [{ name: `!help`, type: ActivityType.Listening}],
|
|
|
|
@ -99,45 +83,12 @@ bot.on('ready', () =>
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
console.timeEnd('StartUp');
|
|
|
|
|
|
|
|
|
|
music();
|
|
|
|
|
setInterval(() =>
|
|
|
|
|
{
|
|
|
|
|
music();
|
|
|
|
|
}, 60000);
|
|
|
|
|
|
|
|
|
|
setInterval(() => {
|
|
|
|
|
moveAFKs();
|
|
|
|
|
}, 5*60*1000);
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
async function music()
|
|
|
|
|
{
|
|
|
|
|
//console.log('Music: Looking for Servers.')
|
|
|
|
|
const ServersWithMusicOn = await serversWithMusicOn(bot.guilds.cache);
|
|
|
|
|
const ISGONNABEOFFFORAWHILE = true
|
|
|
|
|
if(!ServersWithMusicOn && !ISGONNABEOFFFORAWHILE) return
|
|
|
|
|
for(var server of ServersWithMusicOn)
|
|
|
|
|
{
|
|
|
|
|
if(!Childs[server.name])
|
|
|
|
|
{
|
|
|
|
|
console.log('Index: Starting Music Worker:', server.name,`(${server.gID})`)
|
|
|
|
|
Childs[server.name] = Spawner.fork('./musicWorker.js',[server.gID, server.name]);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{ //Health check
|
|
|
|
|
(function (server)
|
|
|
|
|
{
|
|
|
|
|
Childs[server.name].on('exit', ()=>
|
|
|
|
|
{
|
|
|
|
|
console.log('Child DIED, spawning another.')
|
|
|
|
|
Childs[server.name] = Spawner.fork('./musicWorker.js',[server.gID, server.name]);
|
|
|
|
|
})
|
|
|
|
|
})(server);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function moveAFKs(){
|
|
|
|
|
//Gets the members inside the AFK channel
|
|
|
|
|
let auxmembers = bot.channels.cache.get("335494006890823680").members
|
|
|
|
@ -159,11 +110,6 @@ function moveAFKs(){
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
async function serversWithMusicOn()
|
|
|
|
|
{
|
|
|
|
|
return await GuildM.find({music:true}).then(g=>{return g})
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
async function sendNotification(message)
|
|
|
|
|
{
|
|
|
|
|
fetch('https://ntfy.wordfights.com/RemChanv2',{
|
|
|
|
|