This commit is contained in:
Ean Milligan 2025-04-26 22:38:11 -04:00
parent 09e97eabc1
commit 103ad8a8f5
8 changed files with 29 additions and 45 deletions

View File

@ -24,6 +24,6 @@ export type { StatusCode } from 'jsr:@std/http@1.0.15';
export { nanoid } from 'https://deno.land/x/nanoid@v3.0.0/mod.ts'; export { nanoid } from 'https://deno.land/x/nanoid@v3.0.0/mod.ts';
export { initLog, closeLog, log, LogTypes as LT } from 'https://raw.githubusercontent.com/Burn-E99/Log4Deno/V2.1.1/mod.ts'; export { closeLog, initLog, log, LogTypes as LT } from 'https://raw.githubusercontent.com/Burn-E99/Log4Deno/V2.1.1/mod.ts';
export * as is from 'https://deno.land/x/imagescript@1.3.0/mod.ts'; export * as is from 'https://deno.land/x/imagescript@1.3.0/mod.ts';

20
mod.ts
View File

@ -6,21 +6,7 @@
import config from './config.ts'; import config from './config.ts';
import { DEBUG, DEVMODE, LOCALMODE } from './flags.ts'; import { DEBUG, DEVMODE, LOCALMODE } from './flags.ts';
import { import { botId, cache, DiscordActivityTypes, DiscordenoGuild, DiscordenoMessage, editBotNickname, editBotStatus, initLog, Intents, log, LT, sendMessage, startBot } from './deps.ts';
botId,
cache,
DiscordActivityTypes,
DiscordenoGuild,
DiscordenoMessage,
editBotNickname,
editBotStatus,
initLog,
Intents,
log,
LT,
sendMessage,
startBot,
} from './deps.ts';
import api from './src/api.ts'; import api from './src/api.ts';
import dbClient from './src/db/client.ts'; import dbClient from './src/db/client.ts';
import { ignoreList } from './src/db/common.ts'; import { ignoreList } from './src/db/common.ts';
@ -80,9 +66,7 @@ startBot({
}, 30000); }, 30000);
// Interval to update bot list stats every 24 hours // Interval to update bot list stats every 24 hours
LOCALMODE LOCALMODE ? log(LT.INFO, 'updateListStatistics not running') : setInterval(() => {
? log(LT.INFO, 'updateListStatistics not running')
: setInterval(() => {
log(LT.LOG, 'Updating all bot lists statistics'); log(LT.LOG, 'Updating all bot lists statistics');
intervals.updateListStatistics(botId, cache.guilds.size + cache.dispatchedGuildIds.size); intervals.updateListStatistics(botId, cache.guilds.size + cache.dispatchedGuildIds.size);
}, 86400000); }, 86400000);

View File

@ -45,7 +45,7 @@ export const generateStats = (
rollCount: bigint, rollCount: bigint,
utilityCount: bigint, utilityCount: bigint,
rollRate: number, rollRate: number,
utilityRate: number utilityRate: number,
) => ({ ) => ({
embeds: [ embeds: [
{ {

View File

@ -113,7 +113,7 @@ export const apiRoll = async (query: Map<string, string>, apiUserid: bigint): Pr
} else { } else {
// Alert API user that they messed up // Alert API user that they messed up
return stdResp.Forbidden( return stdResp.Forbidden(
`Verify you are a member of the guild you are sending this roll to. If you are, the ${config.name} may not have that registered, please send a message in the guild so ${config.name} can register this. This registration is temporary, so if you see this error again, just poke your server again.` `Verify you are a member of the guild you are sending this roll to. If you are, the ${config.name} may not have that registered, please send a message in the guild so ${config.name} can register this. This registration is temporary, so if you see this error again, just poke your server again.`,
); );
} }
} else { } else {

View File

@ -139,7 +139,7 @@ export const parseRoll = (fullCmd: string, modifiers: RollModifiers): SolvedRoll
containsCrit: false, containsCrit: false,
containsFail: false, containsFail: false,
}, },
] ],
); );
} else if (!operators.includes(mathConf[i].toString())) { } else if (!operators.includes(mathConf[i].toString())) {
// If nothing else has handled it by now, try it as a roll // If nothing else has handled it by now, try it as a roll

View File

@ -49,7 +49,7 @@ const handleRollWorker = (rq: ApiQueuedRoll | DDQueuedRoll) => {
errorCode: 'TooComplex', errorCode: 'TooComplex',
errorMsg: 'Error: Roll took too long to process, try breaking roll down into simpler parts', errorMsg: 'Error: Roll took too long to process, try breaking roll down into simpler parts',
}, },
<RollModifiers>{} <RollModifiers> {},
) )
).embed, ).embed,
], ],
@ -180,9 +180,9 @@ const handleRollWorker = (rq: ApiQueuedRoll | DDQueuedRoll) => {
} }
: { : {
details: pubEmbedDetails, details: pubEmbedDetails,
} },
) ),
) ),
); );
} }
} }
@ -223,7 +223,7 @@ The results for this roll will replace this message when it is done.`,
setInterval(() => { setInterval(() => {
log( log(
LT.LOG, LT.LOG,
`Checking rollQueue for items, rollQueue length: ${rollQueue.length}, currentWorkers: ${currentWorkers}, config.limits.maxWorkers: ${config.limits.maxWorkers}` `Checking rollQueue for items, rollQueue length: ${rollQueue.length}, currentWorkers: ${currentWorkers}, config.limits.maxWorkers: ${config.limits.maxWorkers}`,
); );
if (rollQueue.length && currentWorkers < config.limits.maxWorkers) { if (rollQueue.length && currentWorkers < config.limits.maxWorkers) {
const temp = rollQueue.shift(); const temp = rollQueue.shift();

View File

@ -1,4 +1,4 @@
import { initLog, closeLog } from '../../deps.ts'; import { closeLog, initLog } from '../../deps.ts';
import { DEBUG } from '../../flags.ts'; import { DEBUG } from '../../flags.ts';
import { parseRoll } from './parser.ts'; import { parseRoll } from './parser.ts';
import { loggingEnabled } from './rollUtils.ts'; import { loggingEnabled } from './rollUtils.ts';