MOOver.js/main.js

194 lines
6.1 KiB
JavaScript
Raw Normal View History

2022-01-25 23:16:51 +00:00
/**
List of intents
https://discord.com/developers/docs/topics/gateway#privileged-intents
*/
const Discord = require('discord.js');
const {
Client,
Collection,
Intents,
MessageAttachment,
} = require('discord.js');
const client = new Client({
intents: [
Intents.FLAGS.GUILDS,
Intents.FLAGS.GUILD_MESSAGES,
Intents.FLAGS.GUILD_MESSAGE_REACTIONS,
Intents.FLAGS.GUILD_MEMBERS,
],
});
const fs = require('fs');
client.commands = new Collection();
const commandFiles = fs.readdirSync('./commands')
.filter(file => !file.includes('WIP'));
for (const file of commandFiles) {
const command = require(`./commands/${file}`);
// Set a new item in the Collection
// With the key as the command name and the value as the exported module
client.commands.set(command.data.name, command);
}
2022-02-18 12:54:33 +00:00
const cron = require('node-cron');
const mongoose = require('mongoose');
mongoose
.connect(process.env.DBSRV, {
useNewUrlParser: true,
useUnifiedTopology: true,
}).then(() => {
console.log('Connected to database');
}).catch((err) => {
console.log(err);
});
2022-02-18 12:54:33 +00:00
require('dotenv').config();
const help = require('./helpFunctions.js');
2022-02-18 12:54:33 +00:00
const resp = require('./responses.js');
2022-02-18 13:38:08 +00:00
const bModel = require('./database/birthdaySchema');
const eModel = require('./database/eventSchema');
2022-09-03 08:29:06 +00:00
const { moveMessage } = require('./helpFunctions.js');
2021-12-14 17:56:41 +00:00
2022-02-18 13:45:08 +00:00
const turnOnMsg = ['AAAAAAAAAAAAA', 'Just turned on!', 'Just woke up!', 'May have crashed... sowwyyy >.<',
'Heyyyy!', 'I\'m baaaack', 'Whom\'st have summoned they ancient one?'];
2022-02-18 12:54:33 +00:00
client.once('ready', async () => {
if (client.user.username != 'MOOver Debug') {
2022-02-18 13:45:08 +00:00
client.channels.cache.get('780439236867653635').send(turnOnMsg[help.RNG(turnOnMsg.length)]);
}
2022-03-03 15:01:34 +00:00
cron.schedule('0 13 * * *', async function() {
2022-02-24 22:55:11 +00:00
pingEvent();
2022-03-03 15:01:34 +00:00
});
console.log('Running!');
2020-10-30 21:52:39 +00:00
});
client.on('messageCreate', gotMessage);
2021-12-24 11:58:33 +00:00
client.on('interactionCreate', async interaction => {
if (!interaction.isCommand()) return;
const command = client.commands.get(interaction.commandName);
if (!command) return;
try {
await command.execute(interaction);
}
catch (error) {
console.error(error);
await interaction.reply({
content: 'There was an error while executing this command!',
ephemeral: true,
});
}
});
2020-10-30 21:52:39 +00:00
function gotMessage(message) {
if (message.content.includes('https://media.discordapp.net') &&
(message.content.includes('webm') ||
message.content.includes('mov') ||
message.content.includes('mp4') ||
2022-09-03 08:29:06 +00:00
message.embeds[0]?.type == 'video')) {
2022-01-28 18:36:24 +00:00
const linkArr = message.content.split('https://media.discordapp.net');
message.channel.send('https://cdn.discordapp.com' + linkArr[1]);
2020-10-30 21:52:39 +00:00
}
2020-11-03 11:22:42 +00:00
2022-08-31 06:07:13 +00:00
/**
2022-09-01 08:15:49 +00:00
* kokot v piči
2022-07-26 19:30:15 +00:00
const chance = help.RNG(50000);
2022-02-18 12:54:33 +00:00
if (chance == 420) {
resp.whoAsked(message);
}
2022-08-31 06:07:13 +00:00
*/
const msg = message.content.toLowerCase();
2021-12-31 23:21:15 +00:00
const content = message.content.trim();
2020-10-30 21:52:39 +00:00
const msgContentSplit = content.split(/[ ]+/);
2022-01-26 11:42:28 +00:00
/**
* reference can't be null => must be a reply to message
* must contain only one argument
* that argument mentions channel
*/
2022-01-26 12:23:08 +00:00
if (message.reference != null && msgContentSplit.length == 1 &&
message.mentions.channels.first() != undefined) {
2022-09-03 08:29:06 +00:00
moveMessage(message, msgContentSplit[0]);
2021-12-24 11:58:33 +00:00
}
2020-10-30 21:52:39 +00:00
const isBot = message.author.bot;
2021-12-31 23:44:57 +00:00
if (!isBot) {
if (msg.includes('henlo')) {
2022-02-18 12:54:33 +00:00
resp.henlo(message);
2021-12-31 23:44:57 +00:00
}
else if (msg.includes('how ye')) {
2022-02-18 12:54:33 +00:00
resp.mood(message);
2021-12-31 23:44:57 +00:00
}
else if (msg.includes('tylko jedno')) {
2022-02-18 12:54:33 +00:00
message.reply('Koksu pięć gram odlecieć sam');
2022-01-02 13:40:57 +00:00
}
2021-12-24 11:58:33 +00:00
}
}
2021-12-10 15:17:07 +00:00
async function pingEvent() {
const currentDay = new Date().getDate();
2022-02-18 12:54:33 +00:00
const currentMonth = new Date().getMonth() + 1;
2022-02-18 12:54:33 +00:00
let query = bModel.find({ day: currentDay, month: currentMonth });
const birthdayList = await query.exec();
query = eModel.find({ guild: 'global', day: currentDay, month: currentMonth });
const globalEventList = await query.exec();
const guildIds = [];
const sysChannelIds = [];
client.guilds.cache.forEach(element => {
sysChannelIds.push(element.channels.guild.systemChannelId);
guildIds.push(element.id);
});
2022-02-18 12:54:33 +00:00
// TODO deduplicate
const todayBirthdays = [];
if (todayBirthdays != []) {
for (let i = 0; i < guildIds.length; i++) {
const guildId = guildIds[i];
const sysChannelId = sysChannelIds[i];
const guild = client.guilds.cache.find((g) => g.id == guildId);
2022-02-18 12:54:33 +00:00
for (let j = 0; j < birthdayList.length; j++) {
2022-03-03 14:58:51 +00:00
const userId = birthdayList[j].id;
if ((await guild.members.fetch()).find(user => user.id == userId) != undefined) {
2022-02-18 12:54:33 +00:00
const gifAmount = 12;
const embed = await help.getGifEmbed(`https://g.tenor.com/v1/search?q=anime-hug&key=${process.env.TENOR}&limit=${gifAmount}`, gifAmount);
embed.setDescription(`Happy Birthday <@${userId}> !!!`);
client.channels.cache.get(sysChannelId)
.send({ embeds: [embed] });
}
}
}
}
for (let i = 0; i < guildIds.length; i++) {
const guildId = guildIds[i];
const sysChannelId = sysChannelIds[i];
2022-02-18 12:54:33 +00:00
query = eModel.find({ guild: guildId, day: currentDay, month: currentMonth });
const guildEvents = await query.exec();
for (let j = 0; j < globalEventList.length; j++) {
let specialMessage = '';
2022-03-04 14:30:39 +00:00
if (globalEventList[j].name == 'Valentine\'s Day') {
2022-02-18 12:54:33 +00:00
specialMessage = '\n Don\'t forget I love you all with all my hart 🥺';
}
2022-02-18 12:54:33 +00:00
client.channels.cache.get(sysChannelId)
2022-03-04 14:30:39 +00:00
.send(`It's **${globalEventList[j].name}** today!` + specialMessage);
2022-02-18 12:54:33 +00:00
}
for (let j = 0; j < guildEvents.length; j++) {
2022-02-24 22:55:11 +00:00
client.channels.cache.get(sysChannelId)
.send(`It's **${guildEvents[j].name}** today!`);
}
}
2022-01-02 13:40:57 +00:00
}
2022-02-15 19:53:40 +00:00
client.login(process.env.TOKEN);