101 lines
3.5 KiB
JavaScript
101 lines
3.5 KiB
JavaScript
const { Events, MessageFlags } = require('discord.js')
|
|
require('dotenv').config()
|
|
const { client, mClient } = require('../index')
|
|
const prefix = process.env.D_Prefix
|
|
const db = mClient.db(process.env.M_DB)
|
|
|
|
module.exports = {
|
|
name: Events.MessageCreate,
|
|
once: false,
|
|
async execute(message) {
|
|
if (message.author.bot) { return }
|
|
|
|
// Erster/Zweiter/Dritter Handler
|
|
if (message.channelId === '471058991481487361') {
|
|
const numbered = ["Erster", "Zweiter", "Dritter"];
|
|
|
|
// Regex-Erkennung (ganze Wörter, unabhängig von Groß-/Kleinschreibung)
|
|
const found = numbered.find(word =>
|
|
new RegExp(`\\b${word}\\b`, "i").test(message.content)
|
|
);
|
|
|
|
if (!found) return;
|
|
|
|
const numberedColl = db.collection('items_daily_numbers');
|
|
const today = new Date().toISOString().slice(0, 10);
|
|
|
|
// Tages-Dokument sicherstellen
|
|
await numberedColl.findOneAndUpdate(
|
|
{ date: today },
|
|
{
|
|
$setOnInsert: {
|
|
date: today,
|
|
positions: {
|
|
Erster: null,
|
|
Zweiter: null,
|
|
Dritter: null
|
|
}
|
|
}
|
|
},
|
|
{ upsert: true }
|
|
);
|
|
|
|
// 🔒 Atomarer Claim:
|
|
// - Position muss frei sein
|
|
// - User darf noch keine Position heute haben
|
|
const result = await numberedColl.findOneAndUpdate(
|
|
{
|
|
date: today,
|
|
|
|
// Position frei
|
|
[`positions.${found}`]: null,
|
|
|
|
// User hat noch keine Position
|
|
"positions.Erster.userId": { $ne: message.author.id },
|
|
"positions.Zweiter.userId": { $ne: message.author.id },
|
|
"positions.Dritter.userId": { $ne: message.author.id }
|
|
},
|
|
{
|
|
$set: {
|
|
[`positions.${found}`]: {
|
|
userId: message.author.id,
|
|
timestamp: new Date()
|
|
}
|
|
}
|
|
},
|
|
{ returnDocument: "after" }
|
|
);
|
|
|
|
// ❌ bereits vergeben oder schon eine Position
|
|
if (!result) {
|
|
return message.reply({
|
|
content: `❌ Du kannst pro Tag nur eine Position beanspruchen, und sie muss noch frei sein.`,
|
|
flags: MessageFlags.Ephemeral
|
|
});
|
|
}
|
|
|
|
// ✅ Erfolg
|
|
return message.reply({
|
|
content: `✅ Du bist ${found}! <@${message.author.id}>`,
|
|
flags: MessageFlags.Ephemeral
|
|
});
|
|
}
|
|
|
|
// Command Handler
|
|
const args = message.content.slice(prefix.length).trim().split(/ +/);
|
|
if (!message.content.startsWith(prefix)) return;
|
|
|
|
const cmd = args.shift().toLowerCase();
|
|
let command = client.legacyCommands.get(cmd)
|
|
|
|
|
|
if (!command) command = client.legacyCommands.get(client.aliases.get(cmd))
|
|
if (!command) return
|
|
try {
|
|
client.legacyCommands.get(command.name).execute(message, args)
|
|
} catch (error) {
|
|
console.error(error)
|
|
}
|
|
|
|
}
|
|
} |