mirror of
https://github.com/toast-ts/Daggerbot-TS.git
synced 2024-11-17 16:30:58 -05:00
Compare commits
5 Commits
6912392130
...
fcfd11431a
Author | SHA1 | Date | |
---|---|---|---|
|
fcfd11431a | ||
|
c5101717e5 | ||
|
1510d8d5c6 | ||
|
c80a7e9d15 | ||
|
b7cad061bd |
@ -41,18 +41,16 @@ export default class TClient extends Discord.Client {
|
||||
public tags: TagSystemSvc = new TagSystemSvc();
|
||||
public ytChannels: YouTubeChannelsSvc = new YouTubeChannelsSvc();
|
||||
public repeatedMessages: IRepeatedMessages = {};
|
||||
public statsGraph: number = -120;
|
||||
|
||||
constructor() {
|
||||
super({
|
||||
intents: [
|
||||
Discord.GatewayIntentBits.Guilds, Discord.GatewayIntentBits.GuildMembers,
|
||||
Discord.GatewayIntentBits.GuildModeration, Discord.GatewayIntentBits.GuildInvites,
|
||||
Discord.GatewayIntentBits.GuildMessageReactions, Discord.GatewayIntentBits.GuildPresences,
|
||||
Discord.GatewayIntentBits.MessageContent, Discord.GatewayIntentBits.GuildMessages,
|
||||
Discord.GatewayIntentBits.DirectMessages
|
||||
Discord.GatewayIntentBits.GuildPresences, Discord.GatewayIntentBits.MessageContent,
|
||||
Discord.GatewayIntentBits.GuildMessages, Discord.GatewayIntentBits.DirectMessages
|
||||
], partials: [
|
||||
Discord.Partials.Channel, Discord.Partials.Reaction, Discord.Partials.Message
|
||||
Discord.Partials.Channel, Discord.Partials.Message
|
||||
], allowedMentions: {users:[], roles:[]}
|
||||
})
|
||||
this.config = ConfigHelper.loadConfig() as Config;
|
||||
|
@ -20,7 +20,6 @@ const channels = {
|
||||
activePlayers: '739084625862852715',
|
||||
announcements: '1084864116776251463',
|
||||
mainMpChat: '468835769092669461',
|
||||
mfMpChat: '1149238561934151690',
|
||||
serverInfo: '543494084363288637',
|
||||
}
|
||||
export default class MP {
|
||||
@ -32,7 +31,7 @@ export default class MP {
|
||||
static async run(client: TClient, interaction: Discord.ChatInputCommandInteraction<'cached'>) {
|
||||
if (client.config.botSwitches.mpSys === false) return interaction.reply({embeds: [mpModuleDisabled(client)]});
|
||||
if (client.uptime < refreshTimerSecs) return interaction.reply('MPModule isn\'t initialized yet, please wait a moment and try again.');
|
||||
if ([channels.mainMpChat, channels.mfMpChat].includes(interaction.channelId) && !MessageTool.isStaff(interaction.member) && ['status', 'players'].includes(interaction.options.getSubcommand())) return interaction.reply(`Please use <#${channels.activePlayers}> for \`/mp status/players\` commands to prevent clutter in this channel.`).then(()=>setTimeout(()=>interaction.deleteReply(), 6000));
|
||||
if ([channels.mainMpChat, client.config.dcServer.channels.multifarm_chat].includes(interaction.channelId) && !MessageTool.isStaff(interaction.member) && ['status', 'players'].includes(interaction.options.getSubcommand())) return interaction.reply(`Please use <#${channels.activePlayers}> for \`/mp status/players\` commands to prevent clutter in this channel.`).then(()=>setTimeout(()=>interaction.deleteReply(), 6000));
|
||||
const choiceSelector = interaction.options.getString('server');
|
||||
({
|
||||
players: async()=>{
|
||||
@ -40,7 +39,7 @@ export default class MP {
|
||||
if (!DSS) return console.log('Endpoint failed - players');
|
||||
|
||||
const PDArr = await client.MPServer.fetchPlayerData(choiceSelector);
|
||||
const canvas = await new CanvasBuilder().generateGraph(PDArr.slice(client.statsGraph), 'players');
|
||||
const canvas = await new CanvasBuilder().generateGraph(PDArr.slice(-120), 'players');
|
||||
const players:string[] = [];
|
||||
let embedColor:Discord.ColorResolvable;
|
||||
switch (true){
|
||||
|
@ -2,7 +2,6 @@ import {createClient, ErrorReply} from 'redis';
|
||||
import Logger from '../helpers/Logger.js';
|
||||
import TSClient from '../helpers/TSClient.js';
|
||||
|
||||
let Prefix = 'Cache';
|
||||
const RedisClient = createClient({
|
||||
url: (await TSClient()).redis_uri,
|
||||
database: 0,
|
||||
@ -11,35 +10,32 @@ const RedisClient = createClient({
|
||||
});
|
||||
|
||||
export default class CacheServer {
|
||||
protected static prefix = 'Cache';
|
||||
protected static eventManager() {
|
||||
RedisClient
|
||||
.on('connect', ()=>Logger.console('log', Prefix, 'Connection to Redis has been established'))
|
||||
.on('connect', ()=>Logger.console('log', this.prefix, 'Connection to Redis has been established'))
|
||||
.on('error', (err:ErrorReply)=>{
|
||||
Logger.console('error', Prefix, `Encountered an error in Redis: ${err.message}`)
|
||||
Logger.console('error', this.prefix, `Encountered an error in Redis: ${err.message}`)
|
||||
setTimeout(async()=>{
|
||||
if (!RedisClient.isReady) {
|
||||
Logger.console('log', Prefix, 'Client is zombified, starting a fresh connection...');
|
||||
Logger.console('log', this.prefix, 'Client is zombified, starting a fresh connection...');
|
||||
RedisClient.quit();
|
||||
await RedisClient.connect();
|
||||
}
|
||||
}, 1500)
|
||||
})
|
||||
}
|
||||
public static async get(key:any) {
|
||||
const cachedResult = await RedisClient.get(key);
|
||||
if (cachedResult) return JSON.parse(cachedResult);
|
||||
else return null
|
||||
public static async get(key:any, jsonMode:boolean):Promise<any> {
|
||||
let cachedResult:any;
|
||||
if (jsonMode) cachedResult = await RedisClient.json.get(key);
|
||||
else {
|
||||
cachedResult = await RedisClient.get(key);
|
||||
if (cachedResult) cachedResult = JSON.parse(cachedResult);
|
||||
}
|
||||
public static async set(key:any, value:any) {
|
||||
return await RedisClient.set(key, JSON.stringify(value));
|
||||
}
|
||||
public static async getJSON(key:any) {
|
||||
const cachedResult = await RedisClient.json.get(key);
|
||||
if (cachedResult) return cachedResult;
|
||||
else return null
|
||||
}
|
||||
public static async setJSON(key:any, value:any) {
|
||||
return await RedisClient.json.set(key, '.', value);
|
||||
public static async set(key:any, value:any, jsonMode:boolean):Promise<any> {
|
||||
if (jsonMode) return await RedisClient.json.set(key, '.', value);
|
||||
else return await RedisClient.set(key, JSON.stringify(value));
|
||||
}
|
||||
public static async expiry(key:any, time:number) {
|
||||
return await RedisClient.expire(key, time); // NOTE: time is in seconds, not milliseconds -- you know what you did wrong
|
||||
@ -52,7 +48,8 @@ export default class CacheServer {
|
||||
RedisClient.connect();
|
||||
this.eventManager();
|
||||
} catch {
|
||||
console.error('Cannot initialize RedisClient -- is Redis running?')
|
||||
console.error('Cannot initialize RedisClient -- is Redis running?');
|
||||
process.exit(1);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -1,11 +0,0 @@
|
||||
import Discord from 'discord.js';
|
||||
import TClient from '../client.js';
|
||||
export default class MessageReactionAdd {
|
||||
static run(client:TClient, reaction:Discord.MessageReaction, user:Discord.User){
|
||||
if (!client.config.botSwitches.logs) return;
|
||||
if (reaction.message.guildId != client.config.dcServer.id || reaction.message.partial) return;
|
||||
const ReactedFirst = reaction.users.cache.first();
|
||||
if (ReactedFirst.id != user.id) return;
|
||||
if (reaction.emoji.name === '🖕') return (client.channels.cache.get(client.config.dcServer.channels.logs) as Discord.TextChannel).send({embeds:[new client.embed().setColor(client.config.embedColorYellow).setTimestamp().setAuthor({name: `Author: ${ReactedFirst.username} (${ReactedFirst.id})`, iconURL: ReactedFirst.displayAvatarURL()}).setTitle('Message reaction').setDescription(`<@${ReactedFirst.id}>\nAdded a reaction to the message.\n**Emoji**\n${reaction.emoji.name}\n**Channel**\n<#${reaction.message.channelId}>`).setFooter({text: 'Possibly this member, bot fetches who reacted first.'})], components: [new Discord.ActionRowBuilder<Discord.ButtonBuilder>().addComponents(new Discord.ButtonBuilder().setStyle(5).setURL(`${reaction.message.url}`).setLabel('Jump to message'))]});
|
||||
}
|
||||
}
|
@ -1,8 +0,0 @@
|
||||
import Discord from 'discord.js';
|
||||
import TClient from '../client.js';
|
||||
export default class MessageReactionRemove {
|
||||
static run(client:TClient, reaction:Discord.MessageReaction, user:Discord.User){
|
||||
if (!client.config.botSwitches.logs || reaction.message.guildId != client.config.dcServer.id || reaction.message.partial) return;
|
||||
if (reaction.emoji.name === '🖕') return (client.channels.cache.get(client.config.dcServer.channels.logs) as Discord.TextChannel).send({embeds:[new client.embed().setColor(client.config.embedColorRed).setTimestamp().setAuthor({name: `Author: ${user.username} (${user.id})`, iconURL: user.displayAvatarURL()}).setTitle('Message reaction').setDescription(`<@${user.id}>\nRemoved a reaction from the message.\n**Emoji**\n${reaction.emoji.name}\n**Channel**\n<#${reaction.message.channelId}>`)]})
|
||||
}
|
||||
}
|
@ -109,12 +109,12 @@ export class MPServerSvc {
|
||||
} else return false;
|
||||
}
|
||||
async findInCache(): Promise<IServer[]> {
|
||||
const cachedResult = await CacheServer.getJSON(cacheKey);
|
||||
const cachedResult = await CacheServer.get(cacheKey, true);
|
||||
let result;
|
||||
if (cachedResult) result = cachedResult;
|
||||
else {
|
||||
result = await this.model.findAll();
|
||||
CacheServer.setJSON(cacheKey, result).then(()=>CacheServer.expiry(cacheKey, 1800));
|
||||
CacheServer.set(cacheKey, result, true).then(()=>CacheServer.expiry(cacheKey, 1800));
|
||||
}
|
||||
return result;
|
||||
}
|
||||
|
@ -124,12 +124,12 @@ export class PunishmentsSvc {
|
||||
}
|
||||
async findInCache():Promise<any> {
|
||||
const cacheKey = 'punishments';
|
||||
const cachedResult = await CacheServer.getJSON(cacheKey);
|
||||
const cachedResult = await CacheServer.get(cacheKey, true);
|
||||
let result;
|
||||
if (cachedResult) result = cachedResult;
|
||||
else {
|
||||
result = await this.model.findAll();
|
||||
CacheServer.setJSON(cacheKey, result).then(()=>CacheServer.expiry(cacheKey, 20));
|
||||
CacheServer.set(cacheKey, result, true).then(()=>CacheServer.expiry(cacheKey, 20));
|
||||
}
|
||||
return result;
|
||||
}
|
||||
|
@ -88,12 +88,12 @@ export class TagSystemSvc {
|
||||
}
|
||||
async findInCache(): Promise<Tags[]> {
|
||||
const cacheKey = 'tags';
|
||||
const cachedResult = await CacheServer.getJSON(cacheKey);
|
||||
const cachedResult = await CacheServer.get(cacheKey, true);
|
||||
let result;
|
||||
if (cachedResult) result = cachedResult;
|
||||
else {
|
||||
result = await this.model.findAll();
|
||||
CacheServer.setJSON(cacheKey, result).then(()=>CacheServer.expiry(cacheKey, 240));
|
||||
CacheServer.set(cacheKey, result, true).then(()=>CacheServer.expiry(cacheKey, 240));
|
||||
}
|
||||
return result;
|
||||
}
|
||||
|
@ -16,7 +16,7 @@ let refreshIntrvlTxt:string = `Refreshes every ${refreshTimerSecs/1000} seconds.
|
||||
|
||||
export default async(client:TClient)=>{
|
||||
const message = await (client.channels.resolve(isBotInDevMode ? '1091300529696673792' : '543494084363288637') as Discord.TextChannel).messages.fetch(isBotInDevMode ? '1104563309451161742' : '1149141188079779900');
|
||||
if (client.config.botSwitches.mpSys === false) return message.edit({content: null, embeds: [mpModuleDisabled(client)]});
|
||||
if (!client.config.botSwitches.mpSys) return message.edit({content: null, embeds: [mpModuleDisabled(client)]});
|
||||
|
||||
async function newServerEntry(server:IServer) {
|
||||
const serverData = await requestServerData(client, server);
|
||||
|
@ -9,17 +9,16 @@ export default async(client:TClient)=>{
|
||||
let Data:any;
|
||||
const cacheExpiry:number = 7200; // Invalidate cache after sitting in Redis for 2 hours
|
||||
|
||||
const YTDB = await client.ytChannels.getChannels();
|
||||
for (const channel of YTDB) {
|
||||
let YTChannelID:string;
|
||||
let YTChannelName:string;
|
||||
let DiscordChannelID:string;
|
||||
let DiscordRoleID:string;
|
||||
|
||||
const YTDB = await client.ytChannels.getChannels();
|
||||
for (const channel of YTDB) {
|
||||
YTChannelID = channel.dataValues.ytchannel;
|
||||
DiscordChannelID = channel.dataValues.dcchannel;
|
||||
DiscordRoleID = channel.dataValues.dcrole;
|
||||
};
|
||||
|
||||
try {
|
||||
await Undici.request(`https://youtube.googleapis.com/youtube/v3/activities?part=snippet&channelId=${YTChannelID}&maxResults=2&key=${(await TSClient()).youtube}`, {
|
||||
@ -35,16 +34,17 @@ export default async(client:TClient)=>{
|
||||
const getVideoId = (index:number)=>Data.items[index].snippet.thumbnails.default.url.split('/')[4];
|
||||
const videoUrl = `https://www.youtube.com/watch?v=${getVideoId(0)}`;
|
||||
const cacheKey = `YTCache:${YTChannelID}`;
|
||||
const cachedVideoId = await CacheServer.get(cacheKey);
|
||||
const cachedVideoId = await CacheServer.get(cacheKey, false);
|
||||
if (!cachedVideoId) {
|
||||
await CacheServer.set(cacheKey, getVideoId(0)).then(async()=>await CacheServer.expiry(cacheKey, cacheExpiry));
|
||||
await CacheServer.set(cacheKey, getVideoId(0), false).then(async()=>await CacheServer.expiry(cacheKey, cacheExpiry));
|
||||
return;
|
||||
}
|
||||
if (getVideoId(1) === cachedVideoId) {
|
||||
await CacheServer.delete(cacheKey).then(async()=>await CacheServer.set(cacheKey, getVideoId(0)).then(async()=>await CacheServer.expiry(cacheKey, cacheExpiry)));
|
||||
await CacheServer.delete(cacheKey).then(async()=>await CacheServer.set(cacheKey, getVideoId(0), false).then(async()=>await CacheServer.expiry(cacheKey, cacheExpiry)));
|
||||
|
||||
(client.channels.resolve(DiscordChannelID) as TextChannel).send({
|
||||
content: `${MessageTool.formatMention(DiscordRoleID, 'role')}\n**${YTChannelName}** just uploaded a video!\n${videoUrl}`, allowedMentions: {parse: ['roles']},
|
||||
});
|
||||
}
|
||||
}
|
||||
}
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user