2025-08-11 20:52:14 -04:00
|
|
|
|
const EnhancedMinimalHeader = ({
|
|
|
|
|
|
status,
|
|
|
|
|
|
fingerprint,
|
|
|
|
|
|
verificationCode,
|
|
|
|
|
|
onDisconnect,
|
|
|
|
|
|
isConnected,
|
|
|
|
|
|
securityLevel,
|
|
|
|
|
|
sessionManager,
|
2025-08-17 02:22:55 -04:00
|
|
|
|
sessionTimeLeft,
|
|
|
|
|
|
webrtcManager
|
2025-08-11 20:52:14 -04:00
|
|
|
|
}) => {
|
2025-08-14 23:34:54 -04:00
|
|
|
|
const [currentTimeLeft, setCurrentTimeLeft] = React.useState(sessionTimeLeft || 0);
|
|
|
|
|
|
const [hasActiveSession, setHasActiveSession] = React.useState(false);
|
|
|
|
|
|
const [sessionType, setSessionType] = React.useState('unknown');
|
2025-08-17 02:22:55 -04:00
|
|
|
|
const [realSecurityLevel, setRealSecurityLevel] = React.useState(null);
|
2025-08-17 20:38:47 -04:00
|
|
|
|
const [lastSecurityUpdate, setLastSecurityUpdate] = React.useState(0);
|
2025-08-14 23:34:54 -04:00
|
|
|
|
|
2025-08-17 20:38:47 -04:00
|
|
|
|
// ============================================
|
|
|
|
|
|
// FIXED SECURITY UPDATE LOGIC
|
|
|
|
|
|
// ============================================
|
|
|
|
|
|
|
2025-08-14 23:34:54 -04:00
|
|
|
|
React.useEffect(() => {
|
2025-08-17 20:38:47 -04:00
|
|
|
|
let isUpdating = false;
|
|
|
|
|
|
let lastUpdateAttempt = 0;
|
|
|
|
|
|
|
|
|
|
|
|
const updateRealSecurityStatus = async () => {
|
|
|
|
|
|
const now = Date.now();
|
|
|
|
|
|
if (now - lastUpdateAttempt < 10000) {
|
|
|
|
|
|
return;
|
2025-08-14 23:34:54 -04:00
|
|
|
|
}
|
|
|
|
|
|
|
2025-08-17 20:38:47 -04:00
|
|
|
|
if (isUpdating) {
|
|
|
|
|
|
return;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
isUpdating = true;
|
|
|
|
|
|
lastUpdateAttempt = now;
|
|
|
|
|
|
|
2025-08-17 02:22:55 -04:00
|
|
|
|
try {
|
2025-08-17 20:38:47 -04:00
|
|
|
|
if (!webrtcManager || !isConnected) {
|
|
|
|
|
|
return;
|
|
|
|
|
|
}
|
2025-08-17 02:22:55 -04:00
|
|
|
|
|
2025-08-17 20:38:47 -04:00
|
|
|
|
const activeWebrtcManager = webrtcManager;
|
|
|
|
|
|
|
|
|
|
|
|
let realSecurityData = null;
|
|
|
|
|
|
|
|
|
|
|
|
if (typeof activeWebrtcManager.getRealSecurityLevel === 'function') {
|
|
|
|
|
|
realSecurityData = await activeWebrtcManager.getRealSecurityLevel();
|
|
|
|
|
|
} else if (typeof activeWebrtcManager.calculateAndReportSecurityLevel === 'function') {
|
|
|
|
|
|
realSecurityData = await activeWebrtcManager.calculateAndReportSecurityLevel();
|
|
|
|
|
|
} else {
|
|
|
|
|
|
realSecurityData = await window.EnhancedSecureCryptoUtils.calculateSecurityLevel(activeWebrtcManager);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if (window.DEBUG_MODE) {
|
|
|
|
|
|
console.log('🔐 REAL security level calculated:', {
|
|
|
|
|
|
level: realSecurityData?.level,
|
|
|
|
|
|
score: realSecurityData?.score,
|
|
|
|
|
|
passedChecks: realSecurityData?.passedChecks,
|
|
|
|
|
|
totalChecks: realSecurityData?.totalChecks,
|
|
|
|
|
|
isRealData: realSecurityData?.isRealData,
|
|
|
|
|
|
sessionType: realSecurityData?.sessionType,
|
|
|
|
|
|
maxPossibleScore: realSecurityData?.maxPossibleScore,
|
|
|
|
|
|
verificationResults: realSecurityData?.verificationResults ? Object.keys(realSecurityData.verificationResults) : []
|
|
|
|
|
|
});
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if (realSecurityData && realSecurityData.isRealData !== false) {
|
|
|
|
|
|
const currentScore = realSecurityLevel?.score || 0;
|
|
|
|
|
|
const newScore = realSecurityData.score || 0;
|
2025-08-17 02:22:55 -04:00
|
|
|
|
|
2025-08-17 20:38:47 -04:00
|
|
|
|
if (currentScore !== newScore || !realSecurityLevel) {
|
|
|
|
|
|
setRealSecurityLevel(realSecurityData);
|
|
|
|
|
|
setLastSecurityUpdate(now);
|
|
|
|
|
|
|
|
|
|
|
|
if (window.DEBUG_MODE) {
|
|
|
|
|
|
console.log('✅ Security level updated in header component:', {
|
|
|
|
|
|
oldScore: currentScore,
|
|
|
|
|
|
newScore: newScore,
|
|
|
|
|
|
sessionType: realSecurityData.sessionType
|
|
|
|
|
|
});
|
|
|
|
|
|
}
|
|
|
|
|
|
} else if (window.DEBUG_MODE) {
|
|
|
|
|
|
console.log('ℹ️ Security level unchanged, skipping update');
|
2025-08-17 02:22:55 -04:00
|
|
|
|
}
|
2025-08-17 20:38:47 -04:00
|
|
|
|
} else {
|
|
|
|
|
|
console.warn('⚠️ Security calculation returned invalid data');
|
2025-08-17 02:22:55 -04:00
|
|
|
|
}
|
2025-08-17 20:38:47 -04:00
|
|
|
|
|
2025-08-17 02:22:55 -04:00
|
|
|
|
} catch (error) {
|
2025-08-17 20:38:47 -04:00
|
|
|
|
console.error('❌ Error in real security calculation:', error);
|
|
|
|
|
|
} finally {
|
|
|
|
|
|
isUpdating = false;
|
2025-08-17 02:22:55 -04:00
|
|
|
|
}
|
|
|
|
|
|
};
|
|
|
|
|
|
|
2025-08-17 20:38:47 -04:00
|
|
|
|
if (isConnected) {
|
|
|
|
|
|
updateRealSecurityStatus();
|
|
|
|
|
|
|
|
|
|
|
|
if (!realSecurityLevel || realSecurityLevel.score < 50) {
|
|
|
|
|
|
const retryInterval = setInterval(() => {
|
|
|
|
|
|
if (!realSecurityLevel || realSecurityLevel.score < 50) {
|
|
|
|
|
|
updateRealSecurityStatus();
|
|
|
|
|
|
} else {
|
|
|
|
|
|
clearInterval(retryInterval);
|
|
|
|
|
|
}
|
|
|
|
|
|
}, 5000);
|
|
|
|
|
|
|
|
|
|
|
|
setTimeout(() => clearInterval(retryInterval), 30000);
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
const interval = setInterval(updateRealSecurityStatus, 30000);
|
|
|
|
|
|
|
2025-08-17 02:22:55 -04:00
|
|
|
|
return () => clearInterval(interval);
|
2025-08-17 20:38:47 -04:00
|
|
|
|
}, [webrtcManager, isConnected, lastSecurityUpdate, realSecurityLevel]);
|
2025-08-17 02:22:55 -04:00
|
|
|
|
|
2025-08-17 20:38:47 -04:00
|
|
|
|
// ============================================
|
|
|
|
|
|
// FIXED EVENT HANDLERS
|
|
|
|
|
|
// ============================================
|
2025-08-17 02:22:55 -04:00
|
|
|
|
|
2025-08-17 20:38:47 -04:00
|
|
|
|
React.useEffect(() => {
|
|
|
|
|
|
const handleSecurityUpdate = (event) => {
|
|
|
|
|
|
if (window.DEBUG_MODE) {
|
|
|
|
|
|
console.log('🔒 Security level update event received:', event.detail);
|
2025-08-17 02:22:55 -04:00
|
|
|
|
}
|
|
|
|
|
|
|
2025-08-17 20:38:47 -04:00
|
|
|
|
setTimeout(() => {
|
|
|
|
|
|
setLastSecurityUpdate(0);
|
|
|
|
|
|
}, 100);
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
const handleRealSecurityCalculated = (event) => {
|
|
|
|
|
|
if (window.DEBUG_MODE) {
|
|
|
|
|
|
console.log('🔐 Real security calculated event:', event.detail);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if (event.detail && event.detail.securityData) {
|
|
|
|
|
|
setRealSecurityLevel(event.detail.securityData);
|
|
|
|
|
|
setLastSecurityUpdate(Date.now());
|
|
|
|
|
|
}
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
document.addEventListener('security-level-updated', handleSecurityUpdate);
|
|
|
|
|
|
document.addEventListener('real-security-calculated', handleRealSecurityCalculated);
|
|
|
|
|
|
|
|
|
|
|
|
window.forceHeaderSecurityUpdate = (webrtcManager) => {
|
|
|
|
|
|
if (window.DEBUG_MODE) {
|
|
|
|
|
|
console.log('🔄 Force header security update called');
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if (webrtcManager && window.EnhancedSecureCryptoUtils) {
|
|
|
|
|
|
window.EnhancedSecureCryptoUtils.calculateSecurityLevel(webrtcManager)
|
|
|
|
|
|
.then(securityData => {
|
|
|
|
|
|
if (securityData && securityData.isRealData !== false) {
|
|
|
|
|
|
setRealSecurityLevel(securityData);
|
|
|
|
|
|
setLastSecurityUpdate(Date.now());
|
|
|
|
|
|
console.log('✅ Header security level force-updated');
|
|
|
|
|
|
}
|
|
|
|
|
|
})
|
|
|
|
|
|
.catch(error => {
|
|
|
|
|
|
console.error('❌ Force update failed:', error);
|
|
|
|
|
|
});
|
2025-08-17 02:22:55 -04:00
|
|
|
|
} else {
|
2025-08-17 20:38:47 -04:00
|
|
|
|
setLastSecurityUpdate(0);
|
2025-08-17 02:22:55 -04:00
|
|
|
|
}
|
2025-08-17 20:38:47 -04:00
|
|
|
|
};
|
2025-08-17 02:22:55 -04:00
|
|
|
|
|
2025-08-17 20:38:47 -04:00
|
|
|
|
return () => {
|
|
|
|
|
|
document.removeEventListener('security-level-updated', handleSecurityUpdate);
|
|
|
|
|
|
document.removeEventListener('real-security-calculated', handleRealSecurityCalculated);
|
2025-08-17 02:22:55 -04:00
|
|
|
|
};
|
2025-08-17 20:38:47 -04:00
|
|
|
|
}, []);
|
|
|
|
|
|
|
|
|
|
|
|
// ============================================
|
|
|
|
|
|
// REST of the component logic
|
|
|
|
|
|
// ============================================
|
|
|
|
|
|
|
|
|
|
|
|
React.useEffect(() => {
|
|
|
|
|
|
const updateSessionInfo = () => {
|
|
|
|
|
|
if (sessionManager) {
|
|
|
|
|
|
const isActive = sessionManager.hasActiveSession();
|
|
|
|
|
|
const timeLeft = sessionManager.getTimeLeft();
|
|
|
|
|
|
const currentSession = sessionManager.currentSession;
|
|
|
|
|
|
|
|
|
|
|
|
setHasActiveSession(isActive);
|
|
|
|
|
|
setCurrentTimeLeft(timeLeft);
|
|
|
|
|
|
setSessionType(currentSession?.type || 'unknown');
|
|
|
|
|
|
}
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
updateSessionInfo();
|
|
|
|
|
|
const interval = setInterval(updateSessionInfo, 1000);
|
|
|
|
|
|
return () => clearInterval(interval);
|
|
|
|
|
|
}, [sessionManager]);
|
2025-08-17 02:22:55 -04:00
|
|
|
|
|
2025-08-14 23:34:54 -04:00
|
|
|
|
React.useEffect(() => {
|
|
|
|
|
|
if (sessionManager?.hasActiveSession()) {
|
|
|
|
|
|
setCurrentTimeLeft(sessionManager.getTimeLeft());
|
|
|
|
|
|
setHasActiveSession(true);
|
|
|
|
|
|
} else {
|
|
|
|
|
|
setHasActiveSession(false);
|
2025-08-17 20:38:47 -04:00
|
|
|
|
setRealSecurityLevel(null);
|
|
|
|
|
|
setLastSecurityUpdate(0);
|
|
|
|
|
|
setSessionType('unknown');
|
2025-08-14 23:34:54 -04:00
|
|
|
|
}
|
|
|
|
|
|
}, [sessionManager, sessionTimeLeft]);
|
|
|
|
|
|
|
|
|
|
|
|
React.useEffect(() => {
|
|
|
|
|
|
const handleForceUpdate = (event) => {
|
|
|
|
|
|
if (sessionManager) {
|
|
|
|
|
|
const isActive = sessionManager.hasActiveSession();
|
|
|
|
|
|
const timeLeft = sessionManager.getTimeLeft();
|
|
|
|
|
|
const currentSession = sessionManager.currentSession;
|
|
|
|
|
|
|
|
|
|
|
|
setHasActiveSession(isActive);
|
|
|
|
|
|
setCurrentTimeLeft(timeLeft);
|
|
|
|
|
|
setSessionType(currentSession?.type || 'unknown');
|
|
|
|
|
|
}
|
|
|
|
|
|
};
|
|
|
|
|
|
|
2025-08-17 20:38:47 -04:00
|
|
|
|
// Connection cleanup handler (use existing event from module)
|
|
|
|
|
|
const handleConnectionCleaned = () => {
|
|
|
|
|
|
if (window.DEBUG_MODE) {
|
|
|
|
|
|
console.log('🧹 Connection cleaned - clearing security data in header');
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
setRealSecurityLevel(null);
|
|
|
|
|
|
setLastSecurityUpdate(0);
|
|
|
|
|
|
|
|
|
|
|
|
setHasActiveSession(false);
|
|
|
|
|
|
setCurrentTimeLeft(0);
|
|
|
|
|
|
setSessionType('unknown');
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
const handlePeerDisconnect = () => {
|
|
|
|
|
|
if (window.DEBUG_MODE) {
|
|
|
|
|
|
console.log('👋 Peer disconnect detected - clearing security data in header');
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
setRealSecurityLevel(null);
|
|
|
|
|
|
setLastSecurityUpdate(0);
|
|
|
|
|
|
};
|
|
|
|
|
|
|
2025-08-14 23:34:54 -04:00
|
|
|
|
document.addEventListener('force-header-update', handleForceUpdate);
|
2025-08-17 20:38:47 -04:00
|
|
|
|
document.addEventListener('peer-disconnect', handlePeerDisconnect);
|
|
|
|
|
|
document.addEventListener('connection-cleaned', handleConnectionCleaned);
|
|
|
|
|
|
|
|
|
|
|
|
return () => {
|
|
|
|
|
|
document.removeEventListener('force-header-update', handleForceUpdate);
|
|
|
|
|
|
document.removeEventListener('peer-disconnect', handlePeerDisconnect);
|
|
|
|
|
|
document.removeEventListener('connection-cleaned', handleConnectionCleaned);
|
|
|
|
|
|
};
|
2025-08-14 23:34:54 -04:00
|
|
|
|
}, [sessionManager]);
|
|
|
|
|
|
|
2025-08-17 20:38:47 -04:00
|
|
|
|
// ============================================
|
|
|
|
|
|
// SECURITY INDICATOR CLICK HANDLER
|
|
|
|
|
|
// ============================================
|
|
|
|
|
|
|
|
|
|
|
|
const handleSecurityClick = () => {
|
|
|
|
|
|
if (!realSecurityLevel) {
|
|
|
|
|
|
alert('Security verification in progress...\nPlease wait for real-time cryptographic verification to complete.');
|
|
|
|
|
|
return;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Detailed information about the REAL security check
|
|
|
|
|
|
let message = `🔒 REAL-TIME SECURITY VERIFICATION\n\n`;
|
|
|
|
|
|
message += `Security Level: ${realSecurityLevel.level} (${realSecurityLevel.score}%)\n`;
|
|
|
|
|
|
message += `Session Type: ${realSecurityLevel.sessionType || 'demo'}\n`;
|
|
|
|
|
|
message += `Verification Time: ${new Date(realSecurityLevel.timestamp).toLocaleTimeString()}\n`;
|
|
|
|
|
|
message += `Data Source: ${realSecurityLevel.isRealData ? 'Real Cryptographic Tests' : 'Simulated Data'}\n\n`;
|
|
|
|
|
|
|
|
|
|
|
|
if (realSecurityLevel.verificationResults) {
|
|
|
|
|
|
message += 'DETAILED CRYPTOGRAPHIC TESTS:\n';
|
|
|
|
|
|
message += '=' + '='.repeat(40) + '\n';
|
|
|
|
|
|
|
|
|
|
|
|
const passedTests = Object.entries(realSecurityLevel.verificationResults).filter(([key, result]) => result.passed);
|
|
|
|
|
|
const failedTests = Object.entries(realSecurityLevel.verificationResults).filter(([key, result]) => !result.passed);
|
|
|
|
|
|
|
|
|
|
|
|
if (passedTests.length > 0) {
|
|
|
|
|
|
message += '✅ PASSED TESTS:\n';
|
|
|
|
|
|
passedTests.forEach(([key, result]) => {
|
|
|
|
|
|
const testName = key.replace(/([A-Z])/g, ' $1').replace(/^./, str => str.toUpperCase());
|
|
|
|
|
|
message += ` ${testName}: ${result.details}\n`;
|
|
|
|
|
|
});
|
|
|
|
|
|
message += '\n';
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if (failedTests.length > 0) {
|
|
|
|
|
|
message += '❌ UNAVAILABLE/Failed TESTS:\n';
|
|
|
|
|
|
failedTests.forEach(([key, result]) => {
|
|
|
|
|
|
const testName = key.replace(/([A-Z])/g, ' $1').replace(/^./, str => str.toUpperCase());
|
|
|
|
|
|
message += ` ${testName}: ${result.details}\n`;
|
|
|
|
|
|
});
|
|
|
|
|
|
message += '\n';
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
message += `SUMMARY:\n`;
|
|
|
|
|
|
message += `Passed: ${realSecurityLevel.passedChecks}/${realSecurityLevel.totalChecks} tests\n`;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Add information about what is available in other sessions
|
|
|
|
|
|
message += `\n📋 WHAT'S AVAILABLE IN OTHER SESSIONS:\n`;
|
|
|
|
|
|
message += '=' + '='.repeat(40) + '\n';
|
|
|
|
|
|
|
|
|
|
|
|
if (realSecurityLevel.sessionType === 'demo') {
|
|
|
|
|
|
message += `🔒 BASIC SESSION (5,000 sat - $2.00):\n`;
|
|
|
|
|
|
message += ` • ECDSA Digital Signatures\n`;
|
|
|
|
|
|
message += ` • Metadata Protection\n`;
|
|
|
|
|
|
message += ` • Perfect Forward Secrecy\n`;
|
|
|
|
|
|
message += ` • Nested Encryption\n`;
|
|
|
|
|
|
message += ` • Packet Padding\n\n`;
|
|
|
|
|
|
|
|
|
|
|
|
message += `🚀 PREMIUM SESSION (20,000 sat - $8.00):\n`;
|
|
|
|
|
|
message += ` • All Basic + Enhanced features\n`;
|
|
|
|
|
|
message += ` • Traffic Obfuscation\n`;
|
|
|
|
|
|
message += ` • Fake Traffic Generation\n`;
|
|
|
|
|
|
message += ` • Decoy Channels\n`;
|
|
|
|
|
|
message += ` • Anti-Fingerprinting\n`;
|
|
|
|
|
|
message += ` • Message Chunking\n`;
|
|
|
|
|
|
message += ` • Advanced Replay Protection\n`;
|
|
|
|
|
|
} else if (realSecurityLevel.sessionType === 'basic') {
|
|
|
|
|
|
message += `🚀 PREMIUM SESSION (20,000 sat - $8.00):\n`;
|
|
|
|
|
|
message += ` • Traffic Obfuscation\n`;
|
|
|
|
|
|
message += ` • Fake Traffic Generation\n`;
|
|
|
|
|
|
message += ` • Decoy Channels\n`;
|
|
|
|
|
|
message += ` • Anti-Fingerprinting\n`;
|
|
|
|
|
|
message += ` • Message Chunking\n`;
|
|
|
|
|
|
message += ` • Advanced Replay Protection\n`;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
message += `\n${realSecurityLevel.details || 'Real cryptographic verification completed'}`;
|
|
|
|
|
|
|
|
|
|
|
|
if (realSecurityLevel.isRealData) {
|
|
|
|
|
|
message += '\n\n✅ This is REAL-TIME verification using actual cryptographic functions.';
|
|
|
|
|
|
} else {
|
|
|
|
|
|
message += '\n\n⚠️ Warning: This data may be simulated. Connection may not be fully established.';
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
alert(message);
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
// ============================================
|
|
|
|
|
|
// DISPLAY UTILITIES
|
|
|
|
|
|
// ============================================
|
|
|
|
|
|
|
2025-08-11 20:52:14 -04:00
|
|
|
|
const getStatusConfig = () => {
|
|
|
|
|
|
switch (status) {
|
|
|
|
|
|
case 'connected':
|
|
|
|
|
|
return {
|
2025-08-14 23:34:54 -04:00
|
|
|
|
text: 'Connected',
|
|
|
|
|
|
className: 'status-connected',
|
|
|
|
|
|
badgeClass: 'bg-green-500/10 text-green-400 border-green-500/20'
|
|
|
|
|
|
};
|
2025-08-11 20:52:14 -04:00
|
|
|
|
case 'verifying':
|
|
|
|
|
|
return {
|
2025-08-12 14:02:20 -04:00
|
|
|
|
text: 'Verifying...',
|
2025-08-11 20:52:14 -04:00
|
|
|
|
className: 'status-verifying',
|
|
|
|
|
|
badgeClass: 'bg-purple-500/10 text-purple-400 border-purple-500/20'
|
|
|
|
|
|
};
|
|
|
|
|
|
case 'connecting':
|
|
|
|
|
|
return {
|
2025-08-12 14:02:20 -04:00
|
|
|
|
text: 'Connecting...',
|
2025-08-11 20:52:14 -04:00
|
|
|
|
className: 'status-connecting',
|
|
|
|
|
|
badgeClass: 'bg-blue-500/10 text-blue-400 border-blue-500/20'
|
|
|
|
|
|
};
|
|
|
|
|
|
case 'retrying':
|
|
|
|
|
|
return {
|
2025-08-12 14:02:20 -04:00
|
|
|
|
text: 'Retrying...',
|
2025-08-11 20:52:14 -04:00
|
|
|
|
className: 'status-connecting',
|
|
|
|
|
|
badgeClass: 'bg-yellow-500/10 text-yellow-400 border-yellow-500/20'
|
|
|
|
|
|
};
|
|
|
|
|
|
case 'failed':
|
|
|
|
|
|
return {
|
2025-08-12 14:02:20 -04:00
|
|
|
|
text: 'Error',
|
2025-08-11 20:52:14 -04:00
|
|
|
|
className: 'status-failed',
|
|
|
|
|
|
badgeClass: 'bg-red-500/10 text-red-400 border-red-500/20'
|
|
|
|
|
|
};
|
|
|
|
|
|
case 'reconnecting':
|
|
|
|
|
|
return {
|
2025-08-12 14:02:20 -04:00
|
|
|
|
text: 'Reconnecting...',
|
2025-08-11 20:52:14 -04:00
|
|
|
|
className: 'status-connecting',
|
|
|
|
|
|
badgeClass: 'bg-yellow-500/10 text-yellow-400 border-yellow-500/20'
|
|
|
|
|
|
};
|
|
|
|
|
|
case 'peer_disconnected':
|
|
|
|
|
|
return {
|
2025-08-12 14:02:20 -04:00
|
|
|
|
text: 'Peer disconnected',
|
2025-08-11 20:52:14 -04:00
|
|
|
|
className: 'status-failed',
|
|
|
|
|
|
badgeClass: 'bg-orange-500/10 text-orange-400 border-orange-500/20'
|
|
|
|
|
|
};
|
|
|
|
|
|
default:
|
|
|
|
|
|
return {
|
2025-08-12 14:02:20 -04:00
|
|
|
|
text: 'Not connected',
|
2025-08-11 20:52:14 -04:00
|
|
|
|
className: 'status-disconnected',
|
|
|
|
|
|
badgeClass: 'bg-gray-500/10 text-gray-400 border-gray-500/20'
|
|
|
|
|
|
};
|
|
|
|
|
|
}
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
const config = getStatusConfig();
|
2025-08-17 02:22:55 -04:00
|
|
|
|
const displaySecurityLevel = realSecurityLevel || securityLevel;
|
2025-08-17 20:38:47 -04:00
|
|
|
|
|
|
|
|
|
|
const shouldShowTimer = hasActiveSession && currentTimeLeft > 0 && window.SessionTimer;
|
|
|
|
|
|
|
|
|
|
|
|
// ============================================
|
|
|
|
|
|
// DATA RELIABILITY INDICATOR
|
|
|
|
|
|
// ============================================
|
|
|
|
|
|
|
|
|
|
|
|
const getSecurityIndicatorDetails = () => {
|
|
|
|
|
|
if (!displaySecurityLevel) {
|
|
|
|
|
|
return {
|
|
|
|
|
|
tooltip: 'Security verification in progress...',
|
|
|
|
|
|
isVerified: false,
|
|
|
|
|
|
dataSource: 'loading'
|
|
|
|
|
|
};
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
const isRealData = displaySecurityLevel.isRealData !== false;
|
|
|
|
|
|
const baseTooltip = `${displaySecurityLevel.level} (${displaySecurityLevel.score}%)`;
|
|
|
|
|
|
|
|
|
|
|
|
if (isRealData) {
|
|
|
|
|
|
return {
|
|
|
|
|
|
tooltip: `${baseTooltip} - Real-time verification ✅`,
|
|
|
|
|
|
isVerified: true,
|
|
|
|
|
|
dataSource: 'real'
|
|
|
|
|
|
};
|
|
|
|
|
|
} else {
|
|
|
|
|
|
return {
|
|
|
|
|
|
tooltip: `${baseTooltip} - Estimated (connection establishing...)`,
|
|
|
|
|
|
isVerified: false,
|
|
|
|
|
|
dataSource: 'estimated'
|
|
|
|
|
|
};
|
|
|
|
|
|
}
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
const securityDetails = getSecurityIndicatorDetails();
|
|
|
|
|
|
|
|
|
|
|
|
// ============================================
|
|
|
|
|
|
// ADDING global methods for debugging
|
|
|
|
|
|
// ============================================
|
|
|
|
|
|
|
|
|
|
|
|
React.useEffect(() => {
|
|
|
|
|
|
window.debugHeaderSecurity = () => {
|
|
|
|
|
|
console.log('🔍 Header Security Debug:', {
|
|
|
|
|
|
realSecurityLevel,
|
|
|
|
|
|
lastSecurityUpdate,
|
|
|
|
|
|
isConnected,
|
|
|
|
|
|
webrtcManagerProp: !!webrtcManager,
|
|
|
|
|
|
windowWebrtcManager: !!window.webrtcManager,
|
|
|
|
|
|
cryptoUtils: !!window.EnhancedSecureCryptoUtils,
|
|
|
|
|
|
displaySecurityLevel: displaySecurityLevel,
|
|
|
|
|
|
securityDetails: securityDetails
|
|
|
|
|
|
});
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
return () => {
|
|
|
|
|
|
delete window.debugHeaderSecurity;
|
|
|
|
|
|
};
|
|
|
|
|
|
}, [realSecurityLevel, lastSecurityUpdate, isConnected, webrtcManager, displaySecurityLevel, securityDetails]);
|
|
|
|
|
|
|
|
|
|
|
|
// ============================================
|
|
|
|
|
|
// RENDER
|
|
|
|
|
|
// ============================================
|
2025-08-11 20:52:14 -04:00
|
|
|
|
|
|
|
|
|
|
return React.createElement('header', {
|
|
|
|
|
|
className: 'header-minimal sticky top-0 z-50'
|
|
|
|
|
|
}, [
|
|
|
|
|
|
React.createElement('div', {
|
|
|
|
|
|
key: 'container',
|
|
|
|
|
|
className: 'max-w-7xl mx-auto px-4 sm:px-6 lg:px-8'
|
|
|
|
|
|
}, [
|
|
|
|
|
|
React.createElement('div', {
|
|
|
|
|
|
key: 'content',
|
|
|
|
|
|
className: 'flex items-center justify-between h-16'
|
|
|
|
|
|
}, [
|
2025-08-14 23:34:54 -04:00
|
|
|
|
// Logo and Title
|
2025-08-11 20:52:14 -04:00
|
|
|
|
React.createElement('div', {
|
|
|
|
|
|
key: 'logo-section',
|
|
|
|
|
|
className: 'flex items-center space-x-2 sm:space-x-3'
|
|
|
|
|
|
}, [
|
|
|
|
|
|
React.createElement('div', {
|
|
|
|
|
|
key: 'logo',
|
|
|
|
|
|
className: 'icon-container w-8 h-8 sm:w-10 sm:h-10'
|
|
|
|
|
|
}, [
|
|
|
|
|
|
React.createElement('i', {
|
|
|
|
|
|
className: 'fas fa-shield-halved accent-orange text-sm sm:text-base'
|
|
|
|
|
|
})
|
|
|
|
|
|
]),
|
|
|
|
|
|
React.createElement('div', {
|
|
|
|
|
|
key: 'title-section'
|
|
|
|
|
|
}, [
|
|
|
|
|
|
React.createElement('h1', {
|
|
|
|
|
|
key: 'title',
|
|
|
|
|
|
className: 'text-lg sm:text-xl font-semibold text-primary'
|
2025-08-14 15:54:11 -04:00
|
|
|
|
}, 'SecureBit.chat'),
|
2025-08-11 20:52:14 -04:00
|
|
|
|
React.createElement('p', {
|
|
|
|
|
|
key: 'subtitle',
|
|
|
|
|
|
className: 'text-xs sm:text-sm text-muted hidden sm:block'
|
2025-08-17 16:04:45 -04:00
|
|
|
|
}, 'End-to-end freedom. v4.01.212')
|
2025-08-11 20:52:14 -04:00
|
|
|
|
])
|
|
|
|
|
|
]),
|
|
|
|
|
|
|
2025-08-14 23:34:54 -04:00
|
|
|
|
// Status and Controls - Responsive
|
2025-08-11 20:52:14 -04:00
|
|
|
|
React.createElement('div', {
|
|
|
|
|
|
key: 'status-section',
|
|
|
|
|
|
className: 'flex items-center space-x-2 sm:space-x-3'
|
|
|
|
|
|
}, [
|
2025-08-14 23:34:54 -04:00
|
|
|
|
// Session Timer
|
|
|
|
|
|
shouldShowTimer && React.createElement(window.SessionTimer, {
|
|
|
|
|
|
key: 'session-timer',
|
|
|
|
|
|
timeLeft: currentTimeLeft,
|
|
|
|
|
|
sessionType: sessionType,
|
|
|
|
|
|
sessionManager: sessionManager
|
|
|
|
|
|
}),
|
|
|
|
|
|
|
2025-08-17 02:22:55 -04:00
|
|
|
|
displaySecurityLevel && React.createElement('div', {
|
2025-08-11 20:52:14 -04:00
|
|
|
|
key: 'security-level',
|
|
|
|
|
|
className: 'hidden md:flex items-center space-x-2 cursor-pointer hover:opacity-80 transition-opacity duration-200',
|
|
|
|
|
|
onClick: handleSecurityClick,
|
2025-08-17 20:38:47 -04:00
|
|
|
|
title: securityDetails.tooltip
|
2025-08-11 20:52:14 -04:00
|
|
|
|
}, [
|
|
|
|
|
|
React.createElement('div', {
|
|
|
|
|
|
key: 'security-icon',
|
2025-08-17 20:38:47 -04:00
|
|
|
|
className: `w-6 h-6 rounded-full flex items-center justify-center relative ${
|
2025-08-17 02:22:55 -04:00
|
|
|
|
displaySecurityLevel.color === 'green' ? 'bg-green-500/20' :
|
2025-08-17 20:38:47 -04:00
|
|
|
|
displaySecurityLevel.color === 'orange' ? 'bg-orange-500/20' :
|
2025-08-17 02:22:55 -04:00
|
|
|
|
displaySecurityLevel.color === 'yellow' ? 'bg-yellow-500/20' : 'bg-red-500/20'
|
2025-08-17 20:38:47 -04:00
|
|
|
|
} ${securityDetails.isVerified ? '' : 'animate-pulse'}`
|
2025-08-11 20:52:14 -04:00
|
|
|
|
}, [
|
|
|
|
|
|
React.createElement('i', {
|
|
|
|
|
|
className: `fas fa-shield-alt text-xs ${
|
2025-08-17 02:22:55 -04:00
|
|
|
|
displaySecurityLevel.color === 'green' ? 'text-green-400' :
|
2025-08-17 20:38:47 -04:00
|
|
|
|
displaySecurityLevel.color === 'orange' ? 'text-orange-400' :
|
2025-08-17 02:22:55 -04:00
|
|
|
|
displaySecurityLevel.color === 'yellow' ? 'text-yellow-400' : 'text-red-400'
|
2025-08-11 20:52:14 -04:00
|
|
|
|
}`
|
|
|
|
|
|
})
|
|
|
|
|
|
]),
|
|
|
|
|
|
React.createElement('div', {
|
|
|
|
|
|
key: 'security-info',
|
|
|
|
|
|
className: 'flex flex-col'
|
|
|
|
|
|
}, [
|
|
|
|
|
|
React.createElement('div', {
|
|
|
|
|
|
key: 'security-level-text',
|
2025-08-17 20:38:47 -04:00
|
|
|
|
className: 'text-xs font-medium text-primary flex items-center space-x-1'
|
|
|
|
|
|
}, [
|
|
|
|
|
|
React.createElement('span', {}, `${displaySecurityLevel.level} (${displaySecurityLevel.score}%)`)
|
|
|
|
|
|
]),
|
2025-08-17 02:22:55 -04:00
|
|
|
|
React.createElement('div', {
|
2025-08-11 20:52:14 -04:00
|
|
|
|
key: 'security-details',
|
|
|
|
|
|
className: 'text-xs text-muted mt-1 hidden lg:block'
|
2025-08-17 20:38:47 -04:00
|
|
|
|
}, securityDetails.dataSource === 'real' ?
|
|
|
|
|
|
`${displaySecurityLevel.passedChecks || 0}/${displaySecurityLevel.totalChecks || 0} tests` :
|
|
|
|
|
|
(displaySecurityLevel.details || `Stage ${displaySecurityLevel.stage || 1}`)
|
|
|
|
|
|
),
|
2025-08-11 20:52:14 -04:00
|
|
|
|
React.createElement('div', {
|
|
|
|
|
|
key: 'security-progress',
|
|
|
|
|
|
className: 'w-16 h-1 bg-gray-600 rounded-full overflow-hidden'
|
|
|
|
|
|
}, [
|
|
|
|
|
|
React.createElement('div', {
|
|
|
|
|
|
key: 'progress-bar',
|
|
|
|
|
|
className: `h-full transition-all duration-500 ${
|
2025-08-17 02:22:55 -04:00
|
|
|
|
displaySecurityLevel.color === 'green' ? 'bg-green-400' :
|
2025-08-17 20:38:47 -04:00
|
|
|
|
displaySecurityLevel.color === 'orange' ? 'bg-orange-400' :
|
2025-08-17 02:22:55 -04:00
|
|
|
|
displaySecurityLevel.color === 'yellow' ? 'bg-yellow-400' : 'bg-red-400'
|
2025-08-11 20:52:14 -04:00
|
|
|
|
}`,
|
2025-08-17 02:22:55 -04:00
|
|
|
|
style: { width: `${displaySecurityLevel.score}%` }
|
2025-08-11 20:52:14 -04:00
|
|
|
|
})
|
|
|
|
|
|
])
|
|
|
|
|
|
])
|
|
|
|
|
|
]),
|
|
|
|
|
|
|
2025-08-14 23:34:54 -04:00
|
|
|
|
// Mobile Security Indicator
|
2025-08-17 02:22:55 -04:00
|
|
|
|
displaySecurityLevel && React.createElement('div', {
|
2025-08-11 20:52:14 -04:00
|
|
|
|
key: 'mobile-security',
|
|
|
|
|
|
className: 'md:hidden flex items-center'
|
|
|
|
|
|
}, [
|
|
|
|
|
|
React.createElement('div', {
|
|
|
|
|
|
key: 'mobile-security-icon',
|
2025-08-17 20:38:47 -04:00
|
|
|
|
className: `w-8 h-8 rounded-full flex items-center justify-center cursor-pointer hover:opacity-80 transition-opacity duration-200 relative ${
|
2025-08-17 02:22:55 -04:00
|
|
|
|
displaySecurityLevel.color === 'green' ? 'bg-green-500/20' :
|
2025-08-17 20:38:47 -04:00
|
|
|
|
displaySecurityLevel.color === 'orange' ? 'bg-orange-500/20' :
|
2025-08-17 02:22:55 -04:00
|
|
|
|
displaySecurityLevel.color === 'yellow' ? 'bg-yellow-500/20' : 'bg-red-500/20'
|
2025-08-17 20:38:47 -04:00
|
|
|
|
} ${securityDetails.isVerified ? '' : 'animate-pulse'}`,
|
|
|
|
|
|
title: securityDetails.tooltip,
|
2025-08-11 20:52:14 -04:00
|
|
|
|
onClick: handleSecurityClick
|
|
|
|
|
|
}, [
|
|
|
|
|
|
React.createElement('i', {
|
|
|
|
|
|
className: `fas fa-shield-alt text-sm ${
|
2025-08-17 02:22:55 -04:00
|
|
|
|
displaySecurityLevel.color === 'green' ? 'text-green-400' :
|
2025-08-17 20:38:47 -04:00
|
|
|
|
displaySecurityLevel.color === 'orange' ? 'text-orange-400' :
|
2025-08-17 02:22:55 -04:00
|
|
|
|
displaySecurityLevel.color === 'yellow' ? 'text-yellow-400' : 'text-red-400'
|
2025-08-11 20:52:14 -04:00
|
|
|
|
}`
|
|
|
|
|
|
})
|
|
|
|
|
|
])
|
|
|
|
|
|
]),
|
|
|
|
|
|
|
2025-08-14 23:34:54 -04:00
|
|
|
|
// Status Badge
|
2025-08-11 20:52:14 -04:00
|
|
|
|
React.createElement('div', {
|
|
|
|
|
|
key: 'status-badge',
|
|
|
|
|
|
className: `px-2 sm:px-3 py-1.5 rounded-lg border ${config.badgeClass} flex items-center space-x-1 sm:space-x-2`
|
|
|
|
|
|
}, [
|
|
|
|
|
|
React.createElement('span', {
|
|
|
|
|
|
key: 'status-dot',
|
|
|
|
|
|
className: `status-dot ${config.className}`
|
|
|
|
|
|
}),
|
|
|
|
|
|
React.createElement('span', {
|
|
|
|
|
|
key: 'status-text',
|
|
|
|
|
|
className: 'text-xs sm:text-sm font-medium'
|
|
|
|
|
|
}, config.text)
|
|
|
|
|
|
]),
|
|
|
|
|
|
|
2025-08-14 23:34:54 -04:00
|
|
|
|
// Disconnect Button
|
2025-08-11 20:52:14 -04:00
|
|
|
|
isConnected && React.createElement('button', {
|
|
|
|
|
|
key: 'disconnect-btn',
|
|
|
|
|
|
onClick: onDisconnect,
|
|
|
|
|
|
className: 'p-1.5 sm:px-3 sm:py-1.5 bg-red-500/10 hover:bg-red-500/20 text-red-400 border border-red-500/20 rounded-lg transition-all duration-200 text-sm'
|
|
|
|
|
|
}, [
|
|
|
|
|
|
React.createElement('i', {
|
|
|
|
|
|
className: 'fas fa-power-off sm:mr-2'
|
|
|
|
|
|
}),
|
|
|
|
|
|
React.createElement('span', {
|
|
|
|
|
|
className: 'hidden sm:inline'
|
2025-08-12 14:02:20 -04:00
|
|
|
|
}, 'Disconnect')
|
2025-08-11 20:52:14 -04:00
|
|
|
|
])
|
|
|
|
|
|
])
|
|
|
|
|
|
])
|
|
|
|
|
|
])
|
|
|
|
|
|
]);
|
|
|
|
|
|
};
|
|
|
|
|
|
|
2025-08-14 23:34:54 -04:00
|
|
|
|
window.EnhancedMinimalHeader = EnhancedMinimalHeader;
|