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 app = express();
const port = process.env.PORT || 3512;
require('./src/js/utils.js')
require('./src/js/utils.js');
app.set('trust proxy', true);
@ -971,7 +971,10 @@ app.post('/api/log', (req, res) => {
logData = req.body;
} else {
// 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

View File

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

View File

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

View File

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