forked from SebOuellette/LiveBot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patherrorHandler.js
167 lines (154 loc) · 5.92 KB
/
errorHandler.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
// Copyright 2017 Sebastian Ouellette
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
// http://www.apache.org/licenses/LICENSE-2.0
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
"use strict";
// Animations used in javascript if they can't be used in css
let animations = {
flashRed: [
{ borderColor: '#313339' },
{ borderColor: '#A00' },
{ borderColor: '#F00' },
{ borderColor: '#A00' },
{ borderColor: '#313339' },
],
flashTextRed: [
{ color: '#B4B8BC' },
{ color: '#F00' },
{ color: '#B4B8BC' },
],
};
// Custom error messages
function errorHandler(err) {
let code = err.code ? err.code : err;
if (err.name == 'DiscordAPIError') discordApiErrors(code, err);
else if (code.includes('TOKEN')) {
customTokenErrors(code, err);
} else customErrors(code, err);
}
// Discord api errors that aren't cought with discord.js
function discordApiErrors(code, err) {
switch (err.message) {
case 'Cannot send messages to this user':
console.error(
`This user either has direct messages disabled in the server or you've been blocked by the user`
);
command(
"I'm sorry but this user has you blocked or their direct messages are disabled!\n\nIf you wish to contact them through direct messages you'll have to ask them first."
);
break;
default:
console.error(`Error code: ${err.code}\n${err.message}`);
break;
}
}
function tokenError() {
// Flash red if the token is incorrect
Array.from(document.getElementsByClassName('tokenbox')).forEach((box) => {
box.animate(animations.flashRed, 400);
box.value = '';
});
}
// Errors that are cought by discord.js and converted to custom errors
function customTokenErrors(code, err) {
switch (code) {
case 'TOKEN_INVALID':
setLoadingPerc(-1, 'The token provided is invalid');
console.error('Invalid Token');
break;
case 'NO-TOKEN':
setLoadingPerc(-1, 'No tokens found in the cache');
console.error('There is no token stored');
break;
case 'SAME-TOKEN':
setLoadingPerc(-1, 'The token is the same as the current one');
console.error("The token is the same so it won't be switched");
break;
case 'EMPTY-TOKEN':
setLoadingPerc(-1, 'The token provided is empty');
console.error('The token is empty');
break;
case 'TOKEN-SHORT':
setLoadingPerc(-1, 'The token is too short');
console.error(
"The token is too short, make sure you're not using the client secret\nIf you're sure it's not then contact the devs with the part of your token that is shorter\n\nRandomly generated example of a token:\n" +
genFakeToken()
);
break;
case 'TOKEN-LONG':
setLoadingPerc(-1, 'The token is too long');
console.error(
"The token is too long\nIf you're sure it's not then contact the devs with the part of your token that is longer\n\nRandomly generated example of a token:\n" +
genFakeToken()
);
break;
case 'TOKEN-WHITESPACE':
setLoadingPerc(-1, 'There are spaces or newlines in the token');
console.error(
'The token cannot contain a space or a newline, make sure to paste the token correctly'
);
break;
case 'INVALID-TOKEN-CHARACTERS':
setLoadingPerc(-1, 'There are invalid characters in the token');
console.error(
'The token contains invalid characters, please make sure the token is correct'
);
break;
case 'INVALID-TOKEN-FORMAT':
setLoadingPerc(-1, 'The format of the token is invalid');
console.error(
'The token format is invalid\n\nRandomly generated example of a token:\n' +
genFakeToken()
);
break;
default:
setLoadingPerc(-1);
console.error(`Error code: ${err.code}\n${err}`);
break;
}
tokenError();
}
// Errors that are cought by discord.js and converted to custom errors
function customErrors(code, err) {
switch (code) {
case 'SHARDING_REQUIRED':
setLoadingPerc(
-1,
"Sharding is required for your bot but it's not supported yet"
);
console.error(
"Sharding is required for your bot but it's not supported yet"
);
tokenError();
break;
case 'EMPTY-NAME':
console.error('Username is empty or contains invalid characters');
break;
case 'SERVER_OFFLINE':
console.error('Guild seems to be offline');
break;
default:
console.error(`Error code: ${err.code}\n${err}`);
break;
}
}
// This just generates a random token that I'm sure 99% won't work
function genFakeToken() {
let characters =
'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789-_';
let gen = (length) => {
let result = '';
var charLen = characters.length;
for (var i = 0; i < length; i++) {
result += characters.charAt(Math.floor(Math.random() * charLen));
}
return result;
};
return `${gen(24)}.${gen(6)}.${gen(27)}`;
}