84 lines
2.7 KiB
JavaScript
84 lines
2.7 KiB
JavaScript
const {MessageReaction, PartialMessageReaction, User} = require("discord.js")
|
|
const {Connection} = require("mysql")
|
|
|
|
/**
|
|
reaction programming syntax
|
|
-----------------------------------------------------------------------------------------------------
|
|
MessageID:
|
|
ReactionEmoji:
|
|
Role = a role mention
|
|
Restriction:
|
|
None: this action has no restrictions
|
|
AddOnly: nonremovable action
|
|
AddOnce: can only be added oncuechange
|
|
Temporary: will only be added for a given time
|
|
StaffOnly: can only be added to staff [not final]
|
|
PremiumOnly: can only be added to as premium specified users [not final]
|
|
Duration: the time duration an action stays active if Restriction Temporary is
|
|
-----------------------------------------------------------------------------------------------------
|
|
gets moved to a more permanent documentation once syntax is final
|
|
*/
|
|
|
|
// Development dummy data
|
|
const DevData = {
|
|
"1056657249528987769": {
|
|
type: "reactionRole",
|
|
reactions: {
|
|
"👀":{
|
|
Action: "role",
|
|
Role: "test",
|
|
Restriction: "AddOnly"
|
|
}
|
|
}
|
|
},
|
|
"1056657695207329823": {
|
|
type: "vote",
|
|
reactions: {
|
|
"✅":{
|
|
Action: "vote-yes",
|
|
Role: "null",
|
|
Restriction: "null"
|
|
},
|
|
"🚫":{
|
|
Action: "vote-no",
|
|
Role: "null",
|
|
Restriction: "null"
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
/**
|
|
* handles reactions in both ways
|
|
* @param {MessageReaction | PartialMessageReaction} reaction the message reaction
|
|
* @param {User} user
|
|
* @param {Connection} Database current databes instance
|
|
* @param {string} Action string of current action happening
|
|
*/
|
|
const HandleReaction = async (reaction, user, database, Action) => {
|
|
// Handle if reaction is partial and therefor might throw api errors
|
|
if (reaction.partial){
|
|
try{
|
|
// global values
|
|
let message = reaction.message
|
|
|
|
// Route Actions
|
|
switch (Action) {
|
|
case "add":
|
|
console.log(DevData[message.id].type)
|
|
break;
|
|
case "remove":
|
|
// Reverses all actions
|
|
// at this point of development pointless to spend development time on
|
|
break;
|
|
}
|
|
}catch (e) {
|
|
console.log(e)
|
|
return
|
|
}
|
|
} else {
|
|
console.error("error while checking if reaction was partial")
|
|
}
|
|
}
|
|
|
|
module.exports = {HandleReaction} |