forked from Metalloriff/BetterDiscordPlugins
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGuildAndFriendRemovalAlerts.plugin.js
572 lines (526 loc) · 15.7 KB
/
GuildAndFriendRemovalAlerts.plugin.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
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
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
/**
* @name GuildAndFriendRemovalAlerts
* @invite yNqzuJa
* @authorLink https://github.com/Metalloriff
* @donate https://www.paypal.me/israelboone
* @website https://metalloriff.github.io/toms-discord-stuff/
* @source https://github.com/Metalloriff/BetterDiscordPlugins/blob/master/GuildAndFriendRemovalAlerts.plugin.js
*/
module.exports = (() =>
{
const config =
{
info:
{
name: "GuildAndFriendRemovalAlerts",
authors:
[
{
name: "Metalloriff",
discord_id: "264163473179672576",
github_username: "metalloriff",
twitter_username: "Metalloriff"
}
],
version: "2.1.1",
description: "Displays alerts when you are kicked/banned from a server, a server is deleted, and when a friend removes you.",
github: "https://github.com/Metalloriff/BetterDiscordPlugins/blob/master/GuildAndFriendRemovalAlerts.plugin.js",
github_raw: "https://raw.githubusercontent.com/Metalloriff/BetterDiscordPlugins/master/GuildAndFriendRemovalAlerts.plugin.js"
},
changelog:
[
{
title: "2.0 rewrite",
type: "fixed",
items:
[
"Guild and Friend Removal Alerts has been rewritten. As with the old plugin, a modal will show when a server or friend is removed, and you may right click the home button to view the history.",
"If you experience any bugs, please report them to me."
]
},
{
title: "new features",
items:
[
"GFRA's data is now local user ID based. This will prevent issues when using multiple accounts and switching between them.",
"If you click a removed friend item, it will open a DM channel with the user.",
"If you click a removed guild item, it will open a DM channel with the owner of the guild, if available."
]
}
],
defaultConfig:
[
{
id: "showModal",
type: "switch",
name: "Auto Show Modal",
note: "Whether or not to automatically show the modal when a guild/friend is removed.",
value: true
},
{
id: "showDeskNotifs",
type: "switch",
name: "Show Desktop Notifications",
note: "Whether or not to show desktop notifications when a guild/friend is removed.",
value: false
}
]
};
return !global.ZeresPluginLibrary ? class
{
constructor() { this._config = config; }
getName = () => config.info.name;
getAuthor = () => config.info.description;
getVersion = () => config.info.version;
load()
{
BdApi.showConfirmationModal("Library Missing", `The library plugin needed for ${config.info.name} is missing. Please click Download Now to install it.`, {
confirmText: "Download Now",
cancelText: "Cancel",
onConfirm: () =>
{
require("request").get("https://rauenzi.github.io/BDPluginLibrary/release/0PluginLibrary.plugin.js", async (err, res, body) =>
{
if (err) return require("electron").shell.openExternal("https://betterdiscord.net/ghdl?url=https://raw.githubusercontent.com/rauenzi/BDPluginLibrary/master/release/0PluginLibrary.plugin.js");
await new Promise(r => require("fs").writeFile(require("path").join(BdApi.Plugins.folder, "0PluginLibrary.plugin.js"), body, r));
});
}
});
}
start() { }
stop() { }
} : (([Plugin, Api]) => {
const plugin = (Plugin, Api) =>
{
const { WebpackModules, DiscordModules, DiscordClasses, PluginUtilities, ReactComponents, Patcher } = Api;
const { React, ContextMenuActions } = DiscordModules;
const { getUser: fetchUser } = WebpackModules.getByProps("getUser", "acceptAgreements");
const { getUser, getCurrentUser } = DiscordModules.UserStore;
const { getGuild, getGuilds } = DiscordModules.GuildStore;
const { getFriendIDs } = WebpackModules.getByProps("getFriendIDs");
const getSerializableGuild = gid =>
{
const r = { id: gid, invalid: true, name: "Unknown Guild", iconURL: "/assets/1531b79c2f2927945582023e1edaaa11.png" };
const guild = getGuild(gid);
try
{
if (guild != null)
{
r.invalid = false;
r.name = guild.name;
r.ownerId = guild.ownerId;
if (guild.getIconURL != null)
r.iconURL = guild.getIconURL();
}
} finally { }
return r;
};
const getSerializableUser = uid =>
{
const r = { id: uid, invalid: true, tag: "Unknown User", avatarURL: "/assets/1cbd08c76f8af6dddce02c5138971129.png" };
const user = getUser(uid);
try
{
if (user != null)
{
r.invalid = false;
r.tag = user.tag;
if (user.getAvatarURL != null)
r.avatarURL = user.getAvatarURL();
}
} finally { }
return r;
};
const PrivateModule = WebpackModules.getByProps("openPrivateChannel");
const { ModalRoot } = WebpackModules.getByProps("ModalRoot");
const ModalStack = WebpackModules.getByProps("openModal");
const { default: ScrollWrapper } = WebpackModules.getByProps("ScrollerAuto");
const { default: Avatar } = WebpackModules.getByProps("AnimatedAvatar");
const { default: ContextMenu } = WebpackModules.getByProps("MenuStyle", "default");
const { MenuGroup: CtxMenuGroup, MenuItem: CtxMenuItem } = WebpackModules.find(m => m.MenuRadioItem && !m.default);
const { listRow, listRowContent, listName } = WebpackModules.getByProps("header", "botTag", "listAvatar");
class GuildItem extends React.Component
{
constructor(props)
{
super(props);
this.state = { owner: "" };
}
async componentDidMount()
{
if (this.props.guild.ownerId != null)
{
let owner = getUser(this.props.guild.ownerId);
if (owner == null || owner.tag == null)
{
fetchUser(this.props.guild.ownerId).then(owner =>
{
this.setState({ owner: owner.tag }); // TODO: add interactable user object for guild owners.
}).catch(console.warn);
}
else
{
this.setState({ owner: owner.tag });
}
}
}
render()
{
return React.createElement(
"div",
{
className: listRow,
onClick: () =>
{
if (this.props.guild.ownerId != null)
{
PrivateModule.openPrivateChannel(this.props.guild.ownerId);
this.props.onClose();
}
},
children:
[
React.createElement(
Avatar,
{
src: this.props.guild.iconURL,
isMobile: false,
isTyping: false,
size: "SIZE_40"
}
),
React.createElement(
"div",
{
className: listRowContent,
style: { marginLeft: "5px" },
children:
[
React.createElement(
"div",
{
className: listName,
children:
[
this.props.guild.name,
React.createElement(
"span",
{
style: { opacity: 0.5, marginLeft: 10 },
children: "Owner: " + this.state.owner
}
)
]
}
)
]
}
)
]
}
)
}
}
class UserItem extends React.Component
{
constructor(props)
{
super(props);
this.state = { user: props.user };
}
async componentDidMount()
{
if (this.state.user.invalid == true)
{
fetchUser(this.state.user.id).then(u => this.setState({ user: u })).catch(console.warn);
}
}
render()
{
return React.createElement(
"div",
{
className: listRow,
onClick: () =>
{
if (this.state.user.id != null)
{
PrivateModule.openPrivateChannel(this.state.user.id);
this.props.onClose();
}
},
children:
[
React.createElement(
Avatar,
{
src: this.state.user.avatarURL,
isMobile: false,
isTyping: false,
size: "SIZE_40"
}
),
React.createElement(
"div",
{
className: listRowContent,
style: { marginLeft: "5px" },
children:
[
React.createElement(
"div",
{
className: listName,
children: this.state.user.tag
}
)
]
}
)
]
}
)
}
}
class Menu extends React.Component
{
constructor(props)
{
super(props);
}
render()
{
return React.createElement(
"div",
{
style: { marginTop: 10 },
children:
[
React.createElement(
ScrollWrapper,
{
style: { maxHeight: 600 },
children:
[
React.createElement(
"div",
{
className: DiscordClasses.Changelog.fixed.value,
style: { margin: 10 },
children:
[
React.createElement(
"div",
{ children: `removed guilds (${this.props.removedGuilds.length})` }
)
]
}
),
this.props.removedGuilds.length > 0
? this.props.removedGuilds.map(
guild =>
React.createElement(
GuildItem,
{
guild: guild || getSerializableGuild(null),
onClose: this.props.onClose
}
)
)
: React.createElement(
"div",
{
className: listRow,
children:
React.createElement(
"div",
{
className: listRowContent,
children: "No removed guilds."
}
)
}
),
React.createElement(
"div",
{
className: DiscordClasses.Changelog.fixed.value,
style: { margin: 10 },
children:
[
React.createElement(
"div",
{ children: `removed friends (${this.props.removedFriends.length})` }
)
]
}
),
this.props.removedFriends.length > 0
? this.props.removedFriends.map(
user =>
React.createElement(
UserItem,
{
user: user || getSerializableUser(null),
onClose: this.props.onClose
}
)
)
: React.createElement(
"div",
{
className: listRow,
children:
React.createElement(
"div",
{
className: listRowContent,
children: "No removed friends."
}
)
}
)
]
}
)
]
}
);
}
}
return class GuildAndFriendRemovalAlerts extends Plugin
{
constructor()
{
super();
}
async showChangelog(footer)
{
try { footer = (await fetchUser("264163473179672576")).tag + " | https://discord.gg/yNqzuJa"; }
finally { super.showChangelog(footer); }
}
getSettingsPanel = () => this.buildSettingsPanel().getElement();
getDataName = () => this.getName() + "_" + getCurrentUser().id;
onStart()
{
this.loop = setInterval(() => this.tick(), 5000);
this.removedGuildHistory = PluginUtilities.loadData(this.getDataName(), "removedGuildHistory", []);
this.removedFriendHistory = PluginUtilities.loadData(this.getDataName(), "removedFriendHistory", []);
ReactComponents.getComponentByName("DefaultHomeButton", "*").then(r =>
{
Patcher.after(r.component.prototype, "render", (props, args, re) =>
{
re.props.onContextMenu = e =>
{
ContextMenuActions.openContextMenu(e, () =>
React.createElement(
ContextMenu,
{
navId: "HomeContextMenu",
onClose: ContextMenuActions.closeContextMenu,
children:
[
React.createElement(
CtxMenuGroup,
{
children:
React.createElement(
CtxMenuItem,
{
label: "View GFR History",
id: "view-gfr-history",
action: () => this.openModal(this.removedGuildHistory, this.removedFriendHistory)
}
)
}
)
]
}
)
);
};
});
}).catch(exc => console.warn(this.getName() + ": Failed to patch react component 'DefaultHomeButton'. Reason: " + exc));
}
tick()
{
const guilds = Object.values(getGuilds()).map(g => ({ id: g.id, name: g.name, iconURL: g.getIconURL(), ownerId: g.ownerId }));
const friends = getFriendIDs().map(uid => getSerializableUser(uid));
const lastGuilds = PluginUtilities.loadData(this.getDataName(), "guildCache", []);
const lastFriends = PluginUtilities.loadData(this.getDataName(), "friendCache", []);
const removedGuilds = lastGuilds.filter(g => !guilds.some(l => l.id == g.id));
const removedFriends = lastFriends.filter(u => !friends.some(l => l.id == u.id));
if (lastGuilds.length != guilds.length || lastFriends.length != friends.length)
{
if (removedGuilds.length > 0 || removedFriends.length > 0)
{
if (this.settings.showModal)
this.openModal(removedGuilds, removedFriends);
if (this.settings.showDeskNotifs)
{
for (let guild of removedGuilds)
new Notification(
guild.name,
{
silent: true,
body: "Server removed",
icon: guild.iconURL
}
);
for (let friend of removedFriends)
new Notification(
friend.tag,
{
silent: true,
body: "Friend removed",
icon: friend.avatarURL
}
);
}
this.removedGuildHistory.push(...removedGuilds);
this.removedFriendHistory.push(...removedFriends);
PluginUtilities.saveData(this.getDataName(), "removedGuildHistory", this.removedGuildHistory);
PluginUtilities.saveData(this.getDataName(), "removedFriendHistory", this.removedFriendHistory);
}
PluginUtilities.saveData(this.getDataName(), "guildCache", guilds);
PluginUtilities.saveData(this.getDataName(), "friendCache", friends);
}
}
openModal(removedGuilds, removedFriends)
{
removedGuilds = removedGuilds.filter(g => typeof(g) == "object").reverse();
removedFriends = removedFriends.filter(u => typeof(u) == "object").reverse();
if (this.activeModalKey != null && ModalStack.hasModalOpen(this.activeModalKey))
{
ModalStack.closeModal(this.activeModalKey);
this.activeModalKey = null;
}
this.activeModalKey = ModalStack.openModal(
props =>
React.createElement(
ModalRoot,
{
...props,
size: "medium"
},
React.createElement(
Menu,
{
...props,
removedGuilds,
removedFriends
}
)
)
);
}
onStop()
{
clearInterval(this.loop);
Patcher.unpatchAll();
}
}
};
return plugin(Plugin, Api);
})(global.ZeresPluginLibrary.buildPlugin(config));
})();