forked from SebOuellette/LiveBot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetToken.js
118 lines (99 loc) · 3.58 KB
/
setToken.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
// 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";
async function setToken(token) {
let client = new Discord.Client();
let error = [false, 'none'];
if (global.bot && bot.token == token) {
return [true, 'SAME-TOKEN'];
}
try {
setLoadingPerc(0.05);
error = await validateToken(token);
if (error[0]) {
throw error[1];
}
await client.login(token).catch((err) => {
throw err;
});
client.destroy();
setLoadingPerc(0.1); // Refreshing the everything
// Clear the list of channels
let channels = document.getElementById('channel-elements');
while (channels.firstChild) {
channels.removeChild(channels.firstChild);
}
// Delete the list of the guilds
let guildContainer = document.getElementById('guildContainer');
if (guildContainer && guildContainer.parentElement) {
guildContainer.parentElement.removeChild(guildContainer);
}
// Clear the message list
let messages = document.getElementById('message-list');
while (messages.firstChild) {
messages.removeChild(messages.firstChild);
}
// Clear the member list
let memberList = document.getElementById('memberBar');
memberList.innerHTML = '';
// Stop the current bot, unload scritps, and then load into the new token
if (global.bot !== undefined) {
bot.destroy();
}
await unloadAllScripts();
await unloadThemes();
load(token);
cachedGuilds = [];
} catch (err) {
// Set the error to true so it doesn't save the token
error[0] = true;
error[1] = err;
}
// Return if there's been an error or not
return error;
}
async function saveToken(token) {
let error = [false, 'none'];
if (global.bot === undefined) error = await load(token);
else error = await setToken(token);
if (!error[0]) {
// Set the default token
settings.defaultToken = token;
return error;
} else {
console.warn(`The token won't be saved since there was an error`);
return error;
}
}
async function validateToken(token = '') {
if (token.length == 0) return [true, 'EMPTY-TOKEN'];
if (token.replace('.', '').length < 50) return [true, 'TOKEN-SHORT'];
let invalidChars = [' ', '\t', '\r', '\n'];
if (token.split('').filter((c) => invalidChars.includes(c)).length > 0)
return [true, 'TOKEN-WHITESPACE'];
if (token.replace(/\w|-|_|\./gm, '').length > 0)
return [true, 'INVALID-TOKEN-CHARACTERS'];
let tA = token.split('.');
if (tA.length != 3) return [true, 'INVALID-TOKEN-FORMAT'];
// tA[0] = tA[0].length;
// tA[1] = tA[1].length;
// tA[2] = tA[2].length;
// if (
// tA[0] < 24 ||
// tA[0] > 24 ||
// tA[1] < 6 ||
// tA[1] > 6 ||
// tA[2] < 27 ||
// tA[2] > 27
// )
// return [true, 'INVALID-TOKEN-FORMAT'];
return [false, 'none'];
}