f2d35ca792
- JWT secret auto-generates and persists to <STORAGE_PATH>/.jwt_secret - Remove setup token: first admin setup is open until system initialized - Fix schema.sql: move CREATE EXTENSION pg_trgm/ltree to top - Update login UI and auth.js to remove setup token fields
71 lines
2.3 KiB
JavaScript
Executable File
71 lines
2.3 KiB
JavaScript
Executable File
/**
|
|
* OxiCloud - Shared format and escaping utilities
|
|
* Centralized global helpers for date/size/text formatting and XSS-safe escaping.
|
|
*/
|
|
|
|
function escapeHtml(str) {
|
|
if (typeof str !== 'string') return '';
|
|
return str
|
|
.replace(/&/g, '&')
|
|
.replace(/</g, '<')
|
|
.replace(/>/g, '>')
|
|
.replace(/\"/g, '"')
|
|
.replace(/'/g, ''');
|
|
}
|
|
|
|
function formatFileSize(bytes) {
|
|
if (bytes === 0) return '0 Bytes';
|
|
|
|
const k = 1024;
|
|
const sizes = ['Bytes', 'KB', 'MB', 'GB', 'TB'];
|
|
const i = Math.floor(Math.log(bytes) / Math.log(k));
|
|
|
|
return parseFloat((bytes / Math.pow(k, i)).toFixed(2)) + ' ' + sizes[i];
|
|
}
|
|
|
|
/// Formats a byte count for quota display. When bytes is 0, returns "∞" (unlimited).
|
|
function formatQuotaSize(bytes) {
|
|
if (bytes === 0) return '∞';
|
|
return formatFileSize(bytes);
|
|
}
|
|
|
|
function formatDateTime(value) {
|
|
if (!value) return '';
|
|
let dateValue;
|
|
if (value instanceof Date) {
|
|
dateValue = value;
|
|
} else if (typeof value === 'number') {
|
|
dateValue = new Date(value < 1e12 ? value * 1000 : value);
|
|
} else {
|
|
dateValue = new Date(value);
|
|
}
|
|
if (isNaN(dateValue.getTime())) return String(value);
|
|
return dateValue.toLocaleDateString() + ' ' +
|
|
dateValue.toLocaleTimeString([], { hour: '2-digit', minute: '2-digit' });
|
|
}
|
|
|
|
function formatDateShort(value) {
|
|
if (!value) return 'N/A';
|
|
const dateValue = typeof value === 'number' ? new Date(value * 1000) : new Date(value);
|
|
if (isNaN(dateValue.getTime())) return String(value);
|
|
return dateValue.toLocaleDateString(undefined, { year: 'numeric', month: 'short', day: 'numeric' });
|
|
}
|
|
|
|
function isTextViewable(mimeType) {
|
|
if (!mimeType) return false;
|
|
if (mimeType.startsWith('text/')) return true;
|
|
const textTypes = [
|
|
'application/json', 'application/xml', 'application/javascript',
|
|
'application/x-sh', 'application/x-yaml', 'application/toml',
|
|
'application/x-toml', 'application/sql',
|
|
];
|
|
return textTypes.includes(mimeType);
|
|
}
|
|
|
|
window.escapeHtml = escapeHtml;
|
|
window.formatFileSize = formatFileSize;
|
|
window.formatQuotaSize = formatQuotaSize;
|
|
window.formatDateTime = formatDateTime;
|
|
window.formatDateShort = formatDateShort;
|
|
window.isTextViewable = isTextViewable;
|