blob: 7d3d4a19f1e0312cf39f46add3062fe32ecd5608 (
plain) (
blame)
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
|
import fs from 'fs'
import DiscordClient from './Discord'
import Handler, { LogLine } from './MinecraftHandler'
import RTD from './RTD'
import type { Config } from './Config'
interface OutdatedConfigMessages {
[key: string]: string
}
class Shulker {
config: Config
discordClient: DiscordClient
handler: Handler
rtd: RTD
readonly deprecatedConfigs: OutdatedConfigMessages = {
'DEATH_KEY_WORDS': '`DEATH_KEY_WORDS` has been replaced with `REGEX_DEATH_MESSAGE`. Please update this from the latest example config.'
}
readonly removedConfigs: OutdatedConfigMessages = {
'DISCORD_CHANNEL_NAME': 'Please remove this config line. Use the channel ID with `DISCORD_CHANNEL_ID` rather than the channel name.',
'SLASH_COMMAND_ROLES': 'Please use the slash command role IDs with `SLASH_COMMAND_ROLES_IDS` instead.'
}
loadConfig () {
const configFile = process.argv.length > 2 ? process.argv[2] : './config.json'
if (!fs.existsSync(configFile)) {
console.log('[ERROR] Could not find config file!')
return false
}
console.log('[INFO] Using configuration file:', configFile)
try {
this.config = JSON.parse(fs.readFileSync(configFile, 'utf8'))
} catch (e) {
console.log('[ERROR] Could not load config file!')
return false
}
for (const configKey of Object.keys(this.deprecatedConfigs)) {
if (this.config.hasOwnProperty(configKey)) {
console.log('[WARN] Using deprecated config option ' + configKey + '. Check README.md for current options. These options will be removed in a future release.')
console.log(' ' + this.deprecatedConfigs[configKey])
}
}
const hasRemovedConfig = Object.keys(this.config).some(key => Object.keys(this.removedConfigs).includes(key))
if (hasRemovedConfig) {
for (const configKey of Object.keys(this.removedConfigs)) {
if (this.config.hasOwnProperty(configKey)) {
console.log('[ERROR] Using removed config option ' + configKey + '. Check README.md for current options.')
console.log(' ' + this.removedConfigs[configKey])
}
}
process.exit(1)
}
if (this.config.USE_WEBHOOKS) {
console.log('[INFO] Using Discord WebHooks to send messages')
} else {
console.log('[INFO] Using the Discord bot to send messages')
}
return true
}
onDiscordReady () {
this.handler.init(async (data: LogLine) => {
if (data) {
const { username, message } = data
const rtd = await this.rtd.handle(username, message)
if (rtd) {
await this.discordClient.sendMessage(rtd.username, rtd.message)
} else {
await this.discordClient.sendMessage(username, message)
}
}
})
}
async init () {
const loaded = this.loadConfig()
if (!loaded) return
this.discordClient = new DiscordClient(this.config, () => this.onDiscordReady())
this.handler = new Handler(this.config)
this.rtd = new RTD(this.config, this.discordClient)
await this.discordClient.init()
await this.rtd.init()
}
}
export default Shulker
|