-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
278 lines (234 loc) · 8.09 KB
/
index.html
File metadata and controls
278 lines (234 loc) · 8.09 KB
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
<!DOCTYPE html>
<html>
<head>
<style>
html {
background-color: #36393f;
color: white;
font-family: Verdana;
}
.container {
display: grid;
grid-template-columns: 1fr 2fr 1fr;
grid-template-rows: min-content 1fr min-content;
}
.item {
grid-column-start: 2;
justify-self: center;
}
#serverList,
#serverBanList {
margin-top: 1rem;
}
td {
padding: 0 1rem;
}
tr:not(:last-child) {
margin-bottom: 1rem;
}
h2 {
text-align: center;
}
table {
margin: 0 auto;
border-collapse: separate;
border-spacing: 0 1em;
}
</style>
</head>
<body>
<div class="container">
<div class="item">
<label for="apiKey">Api Key</label>
<input type="password" id="apiKey" name="apiKey">
<button type="button" onclick="refreshLists()">Refresh Serverlist</button>
</div>
<div class="item" id="serverList">
<h2>Servers</h2>
<table>
<thead>
<tr>
<th>Name</th>
<th>Ip</th>
<th>Port</th>
<th>Players</th>
<th>Version</th>
<th></th>
</tr>
</thead>
<tbody id="serverListBody">
</tbody>
</table>
</div>
<div class="item" id="serverBanList">
<h2>Banned Servers</h2>
<table>
<thead>
<tr>
<th>Name</th>
<th>Ip</th>
<th>Port</th>
<th></th>
</tr>
</thead>
<tbody id="serverBanListBody">
</tbody>
</table>
</div>
</div>
<script>
const serverListBody = document.getElementById("serverListBody");
const serverBanListBody = document.getElementById("serverBanListBody");
const listUrl = "https://skyrim-reborn-list.skyrim-together.com/admin/list";
const banUrl = "https://skyrim-reborn-list.skyrim-together.com/admin/ban";
var isRefreshing = false;
var apiKey = "";
setInterval(autoRefreshServerLists, 1000 * 360);
function readApiKey() {
apiKey = document.getElementById("apiKey").value;
if (!apiKey) {
alert("You shall not pass");
}
return apiKey;
}
async function getData(url) {
const response = await fetch(url, {
method: 'GET',
headers: {
'x-api-key': apiKey
}
})
.then(handleErrors);
return response;
}
async function postData(url, body) {
const response = await fetch(url, {
method: 'POST',
mode: 'cors',
headers: {
'x-api-key': apiKey
},
body: body
})
.then(handleErrors);
return response;
}
async function deleteData(url, body) {
const response = await fetch(url, {
method: 'DELETE',
mode: 'cors',
headers: {
'x-api-key': apiKey
},
body: body
})
.then(handleErrors);
return response;
}
function handleErrors(response) {
if (!response.ok) {
return Promise.reject(response);
}
return response;
}
function banServer(serverIpPort, name) {
readApiKey();
let body = new URLSearchParams({
'key': serverIpPort,
'name': name
});
postData(banUrl, body)
.then(res => res.json())
.catch(error => {
console.log(error);
});
setTimeout(() => { refreshLists(); }, 1000);
}
function unbanServer(serverIpPort) {
readApiKey();
let body = new URLSearchParams({
'key': serverIpPort
});
deleteData(banUrl, body)
.then(res => res.json())
.catch(error => {
console.log(error);
});
setTimeout(() => { refreshLists(); }, 1000);
}
function refreshLists() {
readApiKey();
clearServerLists();
getData(listUrl)
.then(res => res.json())
.then(data => renderServerList(data))
.catch(error => {
console.log(error);
});
getData(banUrl)
.then(res => res.json())
.then(data => renderServerBanList(data))
.catch(error => {
console.log(error);
});
}
function autoRefreshServerLists() {
console.log("Trying to auto refresh server lists");
if (apiKey) {
console.log("Auto refreshing server lists");
refreshLists();
}
}
function clearServerLists() {
serverListBody.textContent = '';
serverBanListBody.textContent = '';
}
function renderServerList(data) {
data.servers.forEach(server => {
let tableRow = document.createElement("tr");
let serverName = document.createElement("td");
serverName.append(server.name);
let serverIp = document.createElement("td");
serverIp.append(server.ip);
let serverPort = document.createElement("td");
serverPort.append(server.port);
let serverPlayers = document.createElement("td");
serverPlayers.append(server.player_count);
let serverVersion = document.createElement("td");
serverVersion.append(server.version);
let serverBanBtn = document.createElement("button");
serverBanBtn.append("Ban");
serverBanBtn.setAttribute("onClick", "banServer('" + server.ip + ":" + server.port + "', '" + escape(server.name) + "')");
let serverBanIpBtn = document.createElement("button");
serverBanIpBtn.append("Ban IP");
serverBanIpBtn.setAttribute("onClick", "banServer('" + server.ip + "', '" + escape(server.name) + "')");
tableRow.append(serverName);
tableRow.append(serverIp);
tableRow.append(serverPort);
tableRow.append(serverPlayers);
tableRow.append(serverVersion);
tableRow.append(serverBanBtn);
tableRow.append(serverBanIpBtn);
serverListBody.append(tableRow);
});
}
function renderServerBanList(data) {
data.forEach(server => {
let arr = server.key.split(":");
let tableRow = document.createElement("tr");
let serverName = document.createElement("td");
serverName.append(unescape(server.name));
let serverIp = document.createElement("td");
serverIp.append(server.key);
let serverUnbanBtn = document.createElement("button");
serverUnbanBtn.append("Unban");
serverUnbanBtn.setAttribute("onClick", "unbanServer('" + server.key + "')");
tableRow.append(serverName);
tableRow.append(serverIp);
tableRow.append(serverUnbanBtn);
serverBanListBody.append(tableRow);
});
}
</script>
</body>
</html>