fix: issues with logging and functionality

This commit is contained in:
Rim 2025-04-02 07:58:21 -04:00
parent 952aa7a3b5
commit c74dd50f86
4 changed files with 41 additions and 31 deletions

7
app.js
View File

@ -6,7 +6,7 @@ const { logger } = require('./src/js/logger.js');
const favicon = require('serve-favicon'); const favicon = require('serve-favicon');
const app = express(); const app = express();
const port = process.env.PORT || 3512; const port = process.env.PORT || 3512;
require('./src/js/utils.js') require('./src/js/utils.js');
app.set('trust proxy', true); app.set('trust proxy', true);
@ -971,7 +971,10 @@ app.post('/api/log', (req, res) => {
logData = req.body; logData = req.body;
} else { } else {
// If no parsable data found, create a basic log entry // If no parsable data found, create a basic log entry
logData = { eventType: 'unknown', timestamp: global.Utils.toIsoString(new Date()) }; logData = {
eventType: 'unknown',
timestamp: global.Utils.toIsoString(new Date()),
};
} }
// Enrich log with server-side data // Enrich log with server-side data

View File

@ -156,11 +156,11 @@
<!-- Stats tab --> <!-- Stats tab -->
<div class="tab-content active" id="stats-tab"> <div class="tab-content active" id="stats-tab">
<div class="form-group"> <div class="form-group">
<label for="username">Username (e.g., User or User#1234567):</label> <label for="username">Username:</label>
<input <input
type="text" type="text"
id="username" id="username"
placeholder="Enter your Call of Duty username" /> placeholder="Enter your platform Username (e.g., Player or Player#1234567)" />
</div> </div>
<div class="form-group"> <div class="form-group">
@ -244,13 +244,11 @@
<!-- Matches tab --> <!-- Matches tab -->
<div class="tab-content" id="matches-tab"> <div class="tab-content" id="matches-tab">
<div class="form-group"> <div class="form-group">
<label for="matchUsername" <label for="matchUsername">Username:</label>
>Username (e.g., User or User#1234567):</label
>
<input <input
type="text" type="text"
id="matchUsername" id="matchUsername"
placeholder="Enter your Call of Duty username" /> placeholder="Enter your platform Username (e.g., Player or Player#1234567)" />
</div> </div>
<div class="form-group"> <div class="form-group">
@ -336,13 +334,11 @@
<!-- User tab --> <!-- User tab -->
<div class="tab-content" id="user-tab"> <div class="tab-content" id="user-tab">
<div class="form-group"> <div class="form-group">
<label for="userUsername" <label for="userUsername">Username:</label>
>Username (e.g., User or User#1234567):</label
>
<input <input
type="text" type="text"
id="userUsername" id="userUsername"
placeholder="Enter your Call of Duty username" /> placeholder="Enter your platform Username (e.g., Player or Player#1234567)" />
</div> </div>
<div class="form-group"> <div class="form-group">
@ -422,7 +418,7 @@
<div class="tab-content" id="other-tab"> <div class="tab-content" id="other-tab">
<div class="form-group"> <div class="form-group">
<label for="searchUsername" <label for="searchUsername"
>Username to Search (e.g., User or User#1234567):</label >Username to Search (e.g., Player or Player#1234567):</label
> >
<input <input
type="text" type="text"

View File

@ -143,7 +143,9 @@ async function fetchData(endpoint, requestData) {
); );
if (!response.ok) { if (!response.ok) {
throw new Error(data.message || `Error: ${response.status}`); throw new Error(
data.error || data.message || `Error: ${response.status}`
);
} }
if (data.error) { if (data.error) {

View File

@ -1,20 +1,29 @@
global.Utils = { global.Utils = {
toIsoString toIsoString,
}; };
function toIsoString(date) { function toIsoString(date) {
var tzo = -date.getTimezoneOffset(), var tzo = -date.getTimezoneOffset(),
dif = tzo >= 0 ? '+' : '-', dif = tzo >= 0 ? '+' : '-',
pad = function(num) { pad = function (num) {
return (num < 10 ? '0' : '') + num; return (num < 10 ? '0' : '') + num;
}; };
return date.getFullYear() + return (
'-' + pad(date.getMonth() + 1) + date.getFullYear() +
'-' + pad(date.getDate()) + '-' +
'T' + pad(date.getHours()) + pad(date.getMonth() + 1) +
':' + pad(date.getMinutes()) + '-' +
':' + pad(date.getSeconds()) + pad(date.getDate()) +
dif + pad(Math.floor(Math.abs(tzo) / 60)) + 'T' +
':' + pad(Math.abs(tzo) % 60); pad(date.getHours()) +
} ':' +
pad(date.getMinutes()) +
':' +
pad(date.getSeconds()) +
dif +
pad(Math.floor(Math.abs(tzo) / 60)) +
':' +
pad(Math.abs(tzo) % 60)
);
}