This repository has been archived by the owner on Apr 25, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathutils.js
140 lines (117 loc) · 3.52 KB
/
utils.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
/*
* ====================NOTE====================
* This code was created by LostAndDead,
* please don't claim this as your own work
* https://github.com/LostAndDead
* ============================================
*/
const Discord = require("discord.js");
const fs = require("fs");
const yaml = require('js-yaml');
const { config } = require("process");
const opts = {
errorEventName:'error',
logDirectory:'./logs', // NOTE: folder must exist and be writable...
fileNamePattern:'log-<DATE>.log',
dateFormat:'DD.MM.YYYY'
};
const log = require('simple-node-logger').createRollingFileLogger( opts );
let Config = null;
try {
let fileContents = fs.readFileSync('./config.yml', 'utf8');
Config = yaml.load(fileContents);
}
catch (e) {
console.log(e);
}
async function createAPIMessage(bot, interaction, content){
const apiMessage = await Discord.APIMessage.create(bot.channels.resolve(interaction.channel_id), content)
.resolveData()
.resolveFiles();
return {...apiMessage.data, files: apiMessage.files};
}
module.exports.log = async (message) => {
if(Config.Setup.Log){
log.info(message)
console.log(message)
}
}
module.exports.loadData = async() => {
let rawdata = fs.readFileSync('data.json');
let data = JSON.parse(rawdata);
return data
}
module.exports.saveData = async(data) => {
writedata = JSON.stringify(data, null, "\t");
fs.writeFileSync('data.json', writedata);
}
module.exports.sendEmbed = async (bot, interaction, embed) =>{
let apiMessage = await createAPIMessage(bot, interaction, embed)
await bot.api.interactions(interaction.id, interaction.token).callback.post({
data: {
type: 4,
data: apiMessage
}
})
}
module.exports.sendFollowupEmbed = async (bot, interaction, embed) =>{
await bot.api.webhooks(bot.user.id, interaction.token).post({
data: {
embeds : [
embed
]
}
})
}
module.exports.send = async (bot, interaction, message) => {
await bot.api.interactions(interaction.id, interaction.token).callback.post({
data: {
type: 4,
data: {
content: message
}
}
})
}
module.exports.sendFollowup = async (bot, interaction, message) => {
await bot.api.webhooks(bot.user.id, interaction.token).post({
data: {
content: message
}
})
}
module.exports.loadConfig = async() => {
try {
let fileContents = fs.readFileSync('./config.yml', 'utf8');
return yaml.load(fileContents);
}
catch (e) {
log.info(e);
}
}
module.exports.error = async(bot, interaction, message) => {
let embed = new Discord.MessageEmbed()
.setTitle("❌ Error! ❌")
.setDescription(message)
.setColor("0xFF0000");
let apiMessage = await createAPIMessage(bot, interaction, embed)
await bot.api.interactions(interaction.id, interaction.token).callback.post({
data: {
type: 4,
data: apiMessage
}
})
}
module.exports.success = async(bot, interaction, message) => {
let embed = new Discord.MessageEmbed()
.setTitle("Success!")
.setDescription(message)
.setColor("0x00FF00");
let apiMessage = await createAPIMessage(bot, interaction, embed)
await bot.api.interactions(interaction.id, interaction.token).callback.post({
data: {
type: 4,
data: apiMessage
}
})
}