forked from noodlebox/betterdiscord-plugins
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathHDAvatars.plugin.js
160 lines (134 loc) · 5.96 KB
/
HDAvatars.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
//META{"name":"hdAvatars"}*//
/*@cc_on
@if (@_jscript)
// Offer to self-install for clueless users that try to run this directly.
var shell = WScript.CreateObject("WScript.Shell");
var fs = new ActiveXObject("Scripting.FileSystemObject");
var pathPlugins = shell.ExpandEnvironmentStrings("%APPDATA%\\BetterDiscord\\plugins");
var pathSelf = WScript.ScriptFullName;
// Put the user at ease by addressing them in the first person
shell.Popup("It looks like you mistakenly tried to run me directly. (don't do that!)", 0, "I'm a plugin for BetterDiscord", 0x30);
if (fs.GetParentFolderName(pathSelf) === fs.GetAbsolutePathName(pathPlugins)) {
shell.Popup("I'm in the correct folder already.\nJust reload Discord with Ctrl+R.", 0, "I'm already installed", 0x40);
} else if (!fs.FolderExists(pathPlugins)) {
shell.Popup("I can't find the BetterDiscord plugins folder.\nAre you sure it's even installed?", 0, "Can't install myself", 0x10);
} else if (shell.Popup("Should I copy myself to BetterDiscord's plugins folder for you?", 0, "Do you need some help?", 0x34) === 6) {
fs.CopyFile(pathSelf, fs.BuildPath(pathPlugins, fs.GetFileName(pathSelf)), true);
// Show the user where to put plugins in the future
shell.Exec("explorer " + pathPlugins);
shell.Popup("I'm installed!\nJust reload Discord with Ctrl+R.", 0, "Successfully installed", 0x40);
}
WScript.Quit();
@else @*/
var hdAvatars = function () {};
(function () {
"use strict";
// This is super hackish, and will likely break as Discord's internal API changes
// Anything using this or what it returns should be prepared to catch some exceptions
const getInternalInstance = e => e[Object.keys(e).find(k => k.startsWith("__reactInternalInstance"))];
function getOwnerInstance(e, {include, exclude=["Popout", "Tooltip", "Scroller", "BackgroundFlash"]} = {}) {
if (e === undefined) {
return undefined;
}
// Set up filter; if no include filter is given, match all except those in exclude
const excluding = include === undefined;
const filter = excluding ? exclude : include;
// Get displayName of the React class associated with this element
// Based on getName(), but only check for an explicit displayName
function getDisplayName(owner) {
const type = owner._currentElement.type;
const constructor = owner._instance && owner._instance.constructor;
return type.displayName || constructor && constructor.displayName || null;
}
// Check class name against filters
function classFilter(owner) {
const name = getDisplayName(owner);
return (name !== null && !!(filter.includes(name) ^ excluding));
}
// Walk up the hierarchy until a proper React object is found
for (let prev, curr=getInternalInstance(e); !_.isNil(curr); prev=curr, curr=curr._hostParent) {
// Before checking its parent, try to find a React object for prev among renderedChildren
// This finds React objects which don't have a direct counterpart in the DOM hierarchy
// e.g. Message, ChannelMember, ...
if (prev !== undefined && !_.isNil(curr._renderedChildren)) {
/* jshint loopfunc: true */
let owner = Object.values(curr._renderedChildren)
.find(v => !_.isNil(v._instance) && v.getHostNode() === prev.getHostNode());
if (!_.isNil(owner) && classFilter(owner)) {
return owner._instance;
}
}
if (_.isNil(curr._currentElement)) {
continue;
}
// Get a React object if one corresponds to this DOM element
// e.g. .user-popout -> UserPopout, ...
let owner = curr._currentElement._owner;
if (!_.isNil(owner) && classFilter(owner)) {
return owner._instance;
}
}
return null;
}
// Avatar filetype mappings
const typeMap = new Map([
[undefined, "png"],
["png", "png"],
["jpg", "webp"],
["gif", "gif"],
]);
const params = "?size=1024#";
// References to internal methods
var user, getAvatarURL;
function getUserConstructor() {
const acct = document.querySelector(".account-details");
return getOwnerInstance(acct, {include: ["DiscordTag"]}).props.user.constructor;
}
function hookUser() {
try {
user = getUserConstructor();
getAvatarURL = user.prototype.getAvatarURL;
user.prototype.getAvatarURL = _.overArgs(getAvatarURL, type => typeMap.get(type)+params);
} catch (err) {
console.error("HDAvatars", "failed to hook user", err);
user = null;
getAvatarURL = null;
return;
}
}
function unhookUser() {
if (_.isNil(user) || _.isNil(getAvatarURL)) {
console.warn("HDAvatars", "user not hooked");
return;
}
try {
user.prototype.getAvatarURL = getAvatarURL;
user = null;
getAvatarURL = null;
} catch (err) {
console.error("HDAvatars", "failed to unhook user", err);
return;
}
}
hdAvatars.prototype.start = function () {
hookUser();
};
hdAvatars.prototype.stop = function () {
unhookUser();
};
hdAvatars.prototype.load = function () {};
hdAvatars.prototype.unload = function () {};
hdAvatars.prototype.getName = function () {
return "High-Quality Avatars";
};
hdAvatars.prototype.getDescription = function () {
return "Use higher-quality versions of avatar images when available";
};
hdAvatars.prototype.getVersion = function () {
return "1.0.1";
};
hdAvatars.prototype.getAuthor = function () {
return "noodlebox";
};
})();
/*@end @*/