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
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
const SubModule = require('./subModule.js');
class Shutdown extends SubModule {
constructor() {
super();
this.myName = 'Shutdown';
this._statusFile = './save/raging.json';
this._friends = [
'124733888177111041',
'126464376059330562',
'165315069717118979',
'479294447184773130',
];
this._guildWhitelist = {
'420045052690169856': true,
'650626200020058124': true,
};
this._shuttingDown = false;
this._dryRun = true;
this.save = this.save.bind(this);
this._commandRage = this._commandRage.bind(this);
this._commandAbortRage = this._commandAbortRage.bind(this);
this._beginShutdown = this._beginShutdown.bind(this);
this._step = this._step.bind(this);
this._abortRaging = this._abortRaging.bind(this);
}
initialize() {
this.command.on(
new this.command.SingleCommand(['rage'], this._commandRage, {
defaultDisabled: true,
permissions: this.Discord.PermissionsBitField.Flags.Administrator,
}));
this.command.on(
new this.command.SingleCommand(['abortrage'], this._commandAbortRage, {
defaultDisabled: true,
permissions: this.Discord.PermissionsBitField.Flags.Administrator,
}));
this.common.readAndParse(this._statusFile, (err, data) => {
if (err) return;
this._beginShutdown(data.dryRun);
});
this.client.abortRaging = this._abortRaging;
this.client.beginRage = this._beginShutdown;
}
shutdown() {
this.command.removeListener('rage');
this.command.removeListener('abortrage');
this.client.abortRaging = null;
this.client.beginRage = null;
}
_commandRage(msg) {
this.common.reply(
msg,
'Do not go gentle into that good night,\n' +
'Old age should burn and rave at close of day;\n' +
'Rage, rage against the dying of the light.\n\n' +
'Though wise men at their end know dark is right,\n' +
'Because their words had forked no lightning they\n' +
'Do not go gentle into that good night.\n\n' +
'Good men, the last wave by, crying how bright\n' +
'Their frail deeds might have danced in a green bay,\n' +
'Rage, rage against the dying of the light.\n\n' +
'Wild men who caught and sang the sun in flight,\n' +
'And learn, too late, they grieved it on its way,\n' +
'Do not go gentle into that good night.\n\n' +
'Grave men, near death, who see with blinding sight\n' +
'Blind eyes could blaze like meteors and be gay,\n' +
'Rage, rage against the dying of the light.\n\n' +
'And you, my father, there on the sad height,\n' +
'Curse, bless, me now with your fierce tears, I pray.\n' +
'Do not go gentle into that good night.\n\n' +
'Rage, rage against the dying of the light.\n\n' +
'**- Dylan Thomas**');
if (msg.author.id !== this.common.spikeyId) return;
const dryRun = msg.text != ' rage';
this.common.mkAndWrite(this._statusFile, null, {dryRun: dryRun}, (err) => {
if (err) this.error(err);
this.client.shard.broadcastEval(`this.beginRage(${dryRun})`)
.catch((err) => {
this.error(err);
this.common.reply('Failed');
});
});
}
_commandAbortRage(msg) {
if (msg.author.id !== this.common.spikeyId) return;
this.common.unlink(this._statusFile, (err) => {
if (err) this.error(err);
this.client.shard.broadcastEval('this.abortRaging()')
.then(() => this.common.reply(msg, 'Aborted'))
.catch((err) => {
this.error(err);
this.common.reply(msg, 'Failed to abort');
});
});
}
_abortRaging() {
this._shuttingDown = false;
this.warn('Aborted Rage');
}
_beginShutdown(dryRun = true) {
this._dryRun = dryRun;
this._shuttingDown = true;
this._step();
}
_step() {
if (!this._shuttingDown) return;
let guild = null;
const list = [...this.client.guilds.cache.keys()];
let i = -1;
while (!guild && i < list.length - 1) {
i++;
if (this._guildWhitelist[list[i]]) continue;
guild = this.client.guilds.cache.get(list[i]);
}
if (!guild) {
this.log('Left all guilds.');
return;
}
guild.members.fetch({user: this._friends}).then((el) => {
if (el.size > 0) {
this._guildWhitelist[guild.id] = true;
this._step();
} else {
if (this._dryRun) {
console.log(guild.id);
this._guildWhitelist[guild.id] = true;
setTimeout(this._step, 100);
} else {
guild.leave().then(() => this._step()).catch(() => {
this.error(`Failed to leave guild: ${guild.id}`);
setTimeout(this._step, 5000);
});
}
}
}).catch((err) => {
this.error(`Failed to fetch friends: ${guild.id}`);
console.error(err);
setTimeout(this._step, 5000);
});
}
}
module.exports = new Shutdown();