@gguf/claw
Version:
WhatsApp gateway CLI (Baileys web) with Pi RPC agent
34 lines (33 loc) • 1.28 kB
JavaScript
//#region src/commands/status-all/format.ts
const formatAge = (ms) => {
if (!ms || ms < 0) return "unknown";
const minutes = Math.round(ms / 6e4);
if (minutes < 1) return "just now";
if (minutes < 60) return `${minutes}m ago`;
const hours = Math.round(minutes / 60);
if (hours < 48) return `${hours}h ago`;
return `${Math.round(hours / 24)}d ago`;
};
const formatDuration = (ms) => {
if (ms == null || !Number.isFinite(ms)) return "unknown";
if (ms < 1e3) return `${Math.round(ms)}ms`;
return `${(ms / 1e3).toFixed(1)}s`;
};
function formatGatewayAuthUsed(auth) {
const hasToken = Boolean(auth?.token?.trim());
const hasPassword = Boolean(auth?.password?.trim());
if (hasToken && hasPassword) return "token+password";
if (hasToken) return "token";
if (hasPassword) return "password";
return "none";
}
function redactSecrets(text) {
if (!text) return text;
let out = text;
out = out.replace(/(\b(?:access[_-]?token|refresh[_-]?token|token|password|secret|api[_-]?key)\b\s*[:=]\s*)("?)([^"\\s]+)("?)/gi, "$1$2***$4");
out = out.replace(/\bBearer\s+[A-Za-z0-9._-]+\b/g, "Bearer ***");
out = out.replace(/\bsk-[A-Za-z0-9]{10,}\b/g, "sk-***");
return out;
}
//#endregion
export { redactSecrets as i, formatDuration as n, formatGatewayAuthUsed as r, formatAge as t };