-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscripts.js
422 lines (374 loc) · 14.2 KB
/
scripts.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
// Register the DataLabels plugin with Chart.js
Chart.register(ChartDataLabels);
/**
* Variables for CPU, memory, and disk charts.
*/
let cpuChart, memoryChart, diskChart;
/**
* Helper functions to get CSS variables from the document's root.
* @returns {string} The value of the CSS variable.
*/
const errorColor = () => getComputedStyle(document.documentElement).getPropertyValue('--error-color');
const dataLabelFontSize = () => getComputedStyle(document.documentElement).getPropertyValue('--data-label-font-size');
const axisFontSize = () => getComputedStyle(document.documentElement).getPropertyValue('--axisFontSize');
const cardColor = () => getComputedStyle(document.documentElement).getPropertyValue('--card-color');
const textColor = () => getComputedStyle(document.documentElement).getPropertyValue('--text-color');
/**
* Load server status and update the status card.
* Fetches data from the server's status endpoint and updates the DOM.
*/
export async function loadStatus() {
const statusCard = document.getElementById('statusCard');
const lastUpdateElement = document.getElementById('last-update');
statusCard.style.backgroundColor = `${cardColor()}`;
try {
const response = await fetch('status.json');
const data = await response.json();
const lastUpdate = new Date(data.last_status_update).toLocaleTimeString();
if (data.error) {
// Server startup or error state
statusCard.innerHTML = `
<p><b>Status:</b> Server is starting up...</p>
<p>The server is not ready yet - please wait or check back later</p>
`;
statusCard.style.backgroundColor = `${errorColor()}`;
return;
}
statusCard.innerHTML = `
<p><b>Status:</b> Online</p>
<p><b>Server Name:</b> ${data.server_name}</p>
<p><b>Password Protected:</b> ${data.password_protected ? 'Yes' : 'No'}</p>
<p><b>Server Port:</b> ${data.port}</p>
<p><b>Steam ID:</b> ${data.steam_id}</p>
`;
// Trigger the fade-out effect for the current text
lastUpdateElement.classList.add('last-update-fade-out');
// Wait for the fade-out to complete (0.5s), then change the text and apply the fade-in
setTimeout(() => {
lastUpdateElement.textContent = `Last Update: ${lastUpdate}`;
lastUpdateElement.classList.remove('last-update-fade-out');
lastUpdateElement.classList.add('last-update-fade-in');
setTimeout(() => lastUpdateElement.classList.remove('last-update-fade-in'), 600);
}, 500);
} catch (error) {
console.error(error);
statusCard.innerHTML = `
<p><b>Status:</b> Error fetching server status</p>
<p>Check the server logs for more information</p>
`;
statusCard.style.backgroundColor = `${errorColor()}`;
}
}
/**
* Convert UTC time to local time and return the time component.
* @param {string} utcTime - The UTC time to convert.
* @returns {string} The local time.
*/
function formatLocalTime(utcTime) {
const date = new Date(`${utcTime} UTC`).toLocaleString();
return date.split(',')[1].trim(); // Return only the time component
}
/**
* Calculate the duration a player has been connected based on connection time.
* @param {string} connectionTime - The player's connection time in UTC.
* @returns {string} A formatted duration string.
*/
function calculateDuration(connectionTime) {
const now = new Date();
const connectedAt = new Date(`${connectionTime} UTC`);
const durationMs = now - connectedAt;
const hours = Math.floor(durationMs / 1000 / 60 / 60);
const minutes = Math.floor((durationMs / 1000 / 60) % 60);
const seconds = Math.floor((durationMs / 1000) % 60);
const timeValues = [];
if (hours > 0) timeValues.push(`${hours}h`);
if (minutes > 0) timeValues.push(`${minutes}m`);
if (seconds > 0) timeValues.push(`${seconds}s`);
return timeValues.join(' ');
}
/**
* Load player data and update the players card.
* Fetches data from the server's player data endpoint and updates the DOM.
*/
export async function loadPlayers() {
const playersCard = document.getElementById('playersCard');
playersCard.style.backgroundColor = `${cardColor()}`;
try {
const response = await fetch('player_data.json');
const players = await response.json();
playersCard.innerHTML = '';
if (Object.keys(players).length > 0) {
for (const [name, info] of Object.entries(players)) {
const localTime = formatLocalTime(info.connection_time);
const duration = calculateDuration(info.connection_time);
const deathText = info.death_count === 1 ? 'death' : 'deaths';
playersCard.innerHTML += `
<div class="player-text">
<strong>${name}:</strong> ${localTime} (${duration}) ${info.death_count} ${deathText}
</div>
`;
}
} else {
playersCard.innerHTML = `<div class="player-text"><p>No Players Connected</p></div>`;
}
} catch (error) {
console.error(error);
playersCard.innerHTML = `
<p><b>Error fetching player data</b></p>
<p>Check the server logs for more information</p>
`;
playersCard.style.backgroundColor = `${errorColor()}`;
}
}
/**
* Load system metrics (CPU, memory, disk) and update corresponding charts.
* Fetches data from the server's metrics endpoint and updates the charts.
* In case of a fetch error, fallback data is used to update the charts,
* and canvas elements are styled with an error class.
*/
export async function loadMetrics() {
let data = {};
let isFallbackData = false;
try {
const response = await fetch('metrics.json');
data = await response.json();
} catch (error) {
console.error(error);
data = getFallbackMetricsData();
isFallbackData = true;
}
const canvases = document.querySelectorAll('canvas');
canvases.forEach(canvas => canvas.classList.toggle('error-canvas', isFallbackData));
updateCpuChart(data.cpu);
updateDiskChart(data.disk);
updateMemoryChart(data.memory);
}
/**
* Fallback metrics data in case of a fetch error.
* @returns {Object} Fallback data structure for CPU, disk, and memory.
*/
function getFallbackMetricsData() {
return {
cpu: { per_core_percent: [0, 0] },
disk: {
unknown_1: { percent: 0, used_bytes: 0, total_bytes: 0 },
unknown_2: { percent: 0, used_bytes: 0, total_bytes: 0 },
unknown_3: { percent: 0, used_bytes: 0, total_bytes: 0 }
},
memory: { total_bytes: 0, used_bytes: 0 }
};
}
/**
* Tooltip plugin configuration for Chart.js charts.
* @returns {Object} A configuration object for Chart.js tooltips.
*/
function getToolTipPlugin() {
return {
enabled: true,
mode: 'nearest',
padding: 10,
bodyFont: { size: 16 },
titleFont: { size: 18 }
}
}
/**
* Updates the CPU chart with the provided data.
* @param {Object} cpuData - The data for CPU usage per core.
*/
function updateCpuChart(cpuData) {
const cpuDataValues = [...cpuData.per_core_percent, 100];
// Update or initialize CPU chart
if (cpuChart) {
const currentCpuValues = cpuChart.data.datasets[0].data.slice(0, -1);
const hasChanged = cpuDataValues.some((value, i) => value !== currentCpuValues[i]);
if (hasChanged) {
cpuChart.data.datasets[0].data = [...cpuDataValues, 100];
cpuChart.update();
}
} else {
const chartData = {
labels: cpuData.per_core_percent.map((_, i) => `Core ${i + 1}`),
datasets: [
{
label: 'CPU Usage (%)',
data: cpuDataValues,
backgroundColor: '#42a5f5',
borderColor: '#1e88e5',
borderWidth: 1,
}
]
};
let cpuTooltipPlugin = getToolTipPlugin();
cpuTooltipPlugin.callbacks = {
label: (context) => {
//const label = context.chart.data.labels[context.dataIndex];
const value = context.parsed.x;
if (value === 0) return '';
return ` ${value}% Usage`;
}
};
let barChartOptions = getBarChartOptions();
barChartOptions.plugins.tooltip = cpuTooltipPlugin;
cpuChart = new Chart(document.getElementById('cpuChart'), {
type: 'bar',
data: chartData,
options: barChartOptions
});
}
}
/**
* Updates the Disk chart with the provided data.
* @param {Object} diskData - The data for disk usage.
*/
function updateDiskChart(diskData) {
const diskDataValues = [...Object.keys(diskData).map(disk => diskData[disk].percent), 100];
if (diskChart) {
const currentDiskValues = diskChart.data.datasets[0].data.slice(0, -1);
const hasChanged = diskDataValues.some((value, i) => value !== currentDiskValues[i]);
if (hasChanged) {
diskChart.data.datasets[0].data = [...diskDataValues, 100];
diskChart.update();
}
} else {
const diskLabels = Object.keys(diskData);
const diskChartData = {
labels: diskLabels,
datasets: [
{
label: 'Disk Usage (%)',
data: diskDataValues,
backgroundColor: '#ab47bc'
}
]
};
let diskTooltipPlugin = getToolTipPlugin();
diskTooltipPlugin.callbacks = {
label: (context) => {
// const label = context.chart.data.labels[context.dataIndex];
const percent = context.parsed.x.toFixed(2);
const index = context.dataIndex;
const totalGB = (diskData[diskLabels[index]].total_bytes / (1024 ** 3)).toFixed(2);
const usedGB = (diskData[diskLabels[index]].used_bytes / (1024 ** 3)).toFixed(2);
return ` ${usedGB}GB of ${totalGB}GB (${percent}%)`;
}
};
let barChartOptions = getBarChartOptions();
barChartOptions.plugins.tooltip = diskTooltipPlugin;
diskChart = new Chart(document.getElementById('diskChart'), {
type: 'bar',
data: diskChartData,
options: barChartOptions
});
}
}
/**
* Updates the Memory chart with the provided data.
* @param {Object} memoryData - The data for memory usage.
*/
function updateMemoryChart(memoryData) {
const totalMemoryGB = (memoryData.total_bytes / (1024 ** 3)).toFixed(2);
const usedMemoryGB = (memoryData.used_bytes / (1024 ** 3)).toFixed(2);
const memoryDataValues = [totalMemoryGB - usedMemoryGB, usedMemoryGB];
if (memoryChart) {
if (memoryChart.data.datasets[0].data[1] !== usedMemoryGB) {
memoryChart.data.datasets[0].data = memoryDataValues;
memoryChart.update();
}
} else {
const memoryChartData = {
labels: ['Available (GB)', 'Used (GB)'],
datasets: [
{
data: memoryDataValues,
backgroundColor: ['#32de84', 'rgb(255, 99, 132)'],
hoverOffset: -10,
borderColor: '#333'
}
]
};
let memoryTooltipPlugin = getToolTipPlugin();
memoryTooltipPlugin.callbacks = {
label: (context) => {
const label = context.chart.data.labels[context.dataIndex];
const usedGB = context.parsed.toFixed(2);
return ` ${usedGB}GB of ${totalMemoryGB}GB (${((context.parsed / totalMemoryGB) * 100).toFixed(2)}%)`;
}
}
memoryChart = new Chart(document.getElementById('memoryChart'), {
type: 'doughnut',
data: memoryChartData,
options: {
responsive: true,
plugins: {
legend: {
labels: {
color: textColor(),
font: { size: axisFontSize() }
}
},
datalabels: {
display: true,
color: 'white',
font: { size: dataLabelFontSize() },
formatter: (value, context) => {
const formattedValue = Math.round(value * 100) / 100;
const totalMemory = parseFloat(totalMemoryGB);
return `${formattedValue}GB\n(${((value / totalMemory) * 100).toFixed(2)}%)`;
}
},
tooltip: memoryTooltipPlugin,
}
}
});
}
}
/**
* General chart options for bar charts (used by CPU and Disk).
* @returns {Object} A configuration object for Chart.js.
*/
function getBarChartOptions() {
return {
indexAxis: 'y',
responsive: true,
scales: {
x: {
ticks: {
beginAtZero: true,
color: textColor(),
font: { size: axisFontSize() }
}
},
y: {
ticks: {
color: textColor(),
font: { size: axisFontSize() }
}
}
},
plugins: {
legend: { display: false },
datalabels: {
display: true,
color: 'white',
font: { size: dataLabelFontSize() },
formatter: (value) => {
if(value === 100 || value === 0) return '';
return value;
}
},
tooltip: getToolTipPlugin(),
}
};
}
/**
* Load status, player, and metrics data at a regular interval.
*/
export const load = () => {
loadStatus();
loadPlayers();
loadMetrics();
};
document.addEventListener("DOMContentLoaded", () => {
load();
setInterval(load, 10000); // Refresh data every 10 seconds
});