File size: 16,000 Bytes
b190b45 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 |
/**
* Crypto API Hub Self-Healing Module
*
* This module provides automatic recovery, fallback mechanisms,
* and health monitoring for the Crypto API Hub dashboard.
*
* Features:
* - Automatic API health checks
* - Fallback to alternative endpoints
* - Retry logic with exponential backoff
* - Data caching for offline resilience
* - Automatic error recovery
*/
class SelfHealingAPIHub {
constructor(config = {}) {
this.config = {
retryAttempts: config.retryAttempts || 3,
retryDelay: config.retryDelay || 1000,
healthCheckInterval: config.healthCheckInterval || 60000, // 1 minute
cacheExpiry: config.cacheExpiry || 300000, // 5 minutes
backendUrl: config.backendUrl || '/api',
enableAutoRecovery: config.enableAutoRecovery !== false,
enableCaching: config.enableCaching !== false,
...config
};
this.cache = new Map();
this.healthStatus = new Map();
this.failedEndpoints = new Map();
this.activeRecoveries = new Set();
if (this.config.enableAutoRecovery) {
this.startHealthMonitoring();
}
}
/**
* Start continuous health monitoring
*/
startHealthMonitoring() {
console.log('π₯ Self-Healing System: Health monitoring started');
setInterval(() => {
this.performHealthChecks();
this.cleanupFailedEndpoints();
this.cleanupExpiredCache();
}, this.config.healthCheckInterval);
}
/**
* Perform health checks on all registered endpoints
*/
async performHealthChecks() {
const endpoints = this.getRegisteredEndpoints();
for (const endpoint of endpoints) {
if (!this.activeRecoveries.has(endpoint)) {
await this.checkEndpointHealth(endpoint);
}
}
}
/**
* Check health of a specific endpoint
*/
async checkEndpointHealth(endpoint) {
try {
const response = await this.fetchWithTimeout(endpoint, {
method: 'HEAD',
timeout: 5000
});
this.healthStatus.set(endpoint, {
status: response.ok ? 'healthy' : 'degraded',
lastCheck: Date.now(),
responseTime: response.headers.get('X-Response-Time') || 'N/A'
});
if (response.ok && this.failedEndpoints.has(endpoint)) {
console.log(`β
Self-Healing: Endpoint recovered: ${endpoint}`);
this.failedEndpoints.delete(endpoint);
}
return response.ok;
} catch (error) {
this.healthStatus.set(endpoint, {
status: 'unhealthy',
lastCheck: Date.now(),
error: error.message
});
this.recordFailure(endpoint, error);
return false;
}
}
/**
* Fetch with automatic retry and fallback
*/
async fetchWithRecovery(url, options = {}) {
const cacheKey = `${options.method || 'GET'}:${url}`;
// Try cache first if enabled
if (this.config.enableCaching && options.method === 'GET') {
const cached = this.getFromCache(cacheKey);
if (cached) {
console.log(`πΎ Using cached data for: ${url}`);
return cached;
}
}
// Try primary endpoint with retry
for (let attempt = 1; attempt <= this.config.retryAttempts; attempt++) {
try {
const response = await this.fetchWithTimeout(url, options);
if (response.ok) {
const data = await response.json();
// Cache successful response
if (this.config.enableCaching && options.method === 'GET') {
this.setCache(cacheKey, data);
}
// Clear any failure records
if (this.failedEndpoints.has(url)) {
console.log(`β
Self-Healing: Recovery successful for ${url}`);
this.failedEndpoints.delete(url);
}
return { success: true, data, source: 'primary' };
}
// If response not OK, try fallback on last attempt
if (attempt === this.config.retryAttempts) {
return await this.tryFallback(url, options);
}
} catch (error) {
console.warn(`β οΈ Attempt ${attempt}/${this.config.retryAttempts} failed for ${url}:`, error.message);
if (attempt < this.config.retryAttempts) {
// Exponential backoff
await this.delay(this.config.retryDelay * Math.pow(2, attempt - 1));
} else {
// Last attempt - try fallback
return await this.tryFallback(url, options, error);
}
}
}
// All attempts failed
return this.handleFailure(url, options);
}
/**
* Try fallback endpoints
*/
async tryFallback(primaryUrl, options = {}, primaryError = null) {
console.log(`π Self-Healing: Attempting fallback for ${primaryUrl}`);
const fallbacks = this.getFallbackEndpoints(primaryUrl);
for (const fallbackUrl of fallbacks) {
try {
const response = await this.fetchWithTimeout(fallbackUrl, options);
if (response.ok) {
const data = await response.json();
console.log(`β
Self-Healing: Fallback successful using ${fallbackUrl}`);
// Cache fallback data
const cacheKey = `${options.method || 'GET'}:${primaryUrl}`;
this.setCache(cacheKey, data);
return { success: true, data, source: 'fallback', fallbackUrl };
}
} catch (error) {
console.warn(`β οΈ Fallback attempt failed for ${fallbackUrl}:`, error.message);
}
}
// No fallback worked - try backend proxy
return await this.tryBackendProxy(primaryUrl, options, primaryError);
}
/**
* Try backend proxy as last resort
*/
async tryBackendProxy(url, options = {}, originalError = null) {
console.log(`π Self-Healing: Attempting backend proxy for ${url}`);
try {
const proxyUrl = `${this.config.backendUrl}/proxy`;
const response = await fetch(proxyUrl, {
method: 'POST',
headers: {
'Content-Type': 'application/json',
},
body: JSON.stringify({
url,
method: options.method || 'GET',
headers: options.headers || {},
body: options.body
})
});
if (response.ok) {
const data = await response.json();
console.log(`β
Self-Healing: Backend proxy successful`);
return { success: true, data, source: 'backend-proxy' };
}
} catch (error) {
console.error(`β Backend proxy failed:`, error);
}
// Everything failed - return cached data if available
const cacheKey = `${options.method || 'GET'}:${url}`;
const cached = this.getFromCache(cacheKey, true); // Get even expired cache
if (cached) {
console.log(`πΎ Self-Healing: Using stale cache as last resort`);
return { success: true, data: cached, source: 'stale-cache', warning: 'Data may be outdated' };
}
return this.handleFailure(url, options, originalError);
}
/**
* Handle complete failure
*/
handleFailure(url, options, error) {
this.recordFailure(url, error);
return {
success: false,
error: error?.message || 'All recovery attempts failed',
url,
timestamp: Date.now(),
recoveryAttempts: this.config.retryAttempts,
suggestions: this.getRecoverySuggestions(url)
};
}
/**
* Record endpoint failure
*/
recordFailure(endpoint, error) {
if (!this.failedEndpoints.has(endpoint)) {
this.failedEndpoints.set(endpoint, {
count: 0,
firstFailure: Date.now(),
errors: []
});
}
const record = this.failedEndpoints.get(endpoint);
record.count++;
record.lastFailure = Date.now();
record.errors.push({
timestamp: Date.now(),
message: error?.message || 'Unknown error'
});
// Keep only last 10 errors
if (record.errors.length > 10) {
record.errors = record.errors.slice(-10);
}
console.error(`β Endpoint failure recorded: ${endpoint} (${record.count} failures)`);
}
/**
* Get recovery suggestions
*/
getRecoverySuggestions(url) {
return [
'Check your internet connection',
'Verify API key is valid and not expired',
'Check if API service is operational',
'Try again in a few moments',
'Consider using alternative data sources'
];
}
/**
* Get fallback endpoints for a given URL
*/
getFallbackEndpoints(url) {
const fallbacks = [];
// Define fallback mappings
const fallbackMap = {
'etherscan.io': ['blockchair.com/ethereum', 'ethplorer.io'],
'bscscan.com': ['api.bscscan.com'],
'coingecko.com': ['api.coinpaprika.com', 'api.coincap.io'],
'coinmarketcap.com': ['api.coingecko.com', 'api.coinpaprika.com'],
'cryptopanic.com': ['newsapi.org'],
};
// Find matching fallbacks
for (const [primary, alternatives] of Object.entries(fallbackMap)) {
if (url.includes(primary)) {
// Transform URL to fallback format
alternatives.forEach(alt => {
const fallbackUrl = this.transformToFallback(url, alt);
if (fallbackUrl) fallbacks.push(fallbackUrl);
});
}
}
return fallbacks;
}
/**
* Transform URL to fallback format
*/
transformToFallback(originalUrl, fallbackBase) {
// This is a simplified transformation
// In production, you'd need more sophisticated URL transformation logic
return null; // Override in specific implementations
}
/**
* Get registered endpoints
*/
getRegisteredEndpoints() {
// This should be populated with actual endpoints from SERVICES object
return Array.from(this.healthStatus.keys());
}
/**
* Fetch with timeout
*/
async fetchWithTimeout(url, options = {}) {
const timeout = options.timeout || 10000;
const controller = new AbortController();
const timeoutId = setTimeout(() => controller.abort(), timeout);
try {
const response = await fetch(url, {
...options,
signal: controller.signal
});
clearTimeout(timeoutId);
return response;
} catch (error) {
clearTimeout(timeoutId);
if (error.name === 'AbortError') {
throw new Error(`Request timeout after ${timeout}ms`);
}
throw error;
}
}
/**
* Cache management
*/
setCache(key, data) {
this.cache.set(key, {
data,
timestamp: Date.now(),
expiry: Date.now() + this.config.cacheExpiry
});
}
getFromCache(key, allowExpired = false) {
const cached = this.cache.get(key);
if (!cached) return null;
if (allowExpired || cached.expiry > Date.now()) {
return cached.data;
}
return null;
}
cleanupExpiredCache() {
const now = Date.now();
for (const [key, value] of this.cache.entries()) {
if (value.expiry < now) {
this.cache.delete(key);
}
}
}
/**
* Clean up old failed endpoints
*/
cleanupFailedEndpoints() {
const maxAge = 3600000; // 1 hour
const now = Date.now();
for (const [endpoint, record] of this.failedEndpoints.entries()) {
if (now - record.lastFailure > maxAge) {
console.log(`π§Ή Cleaning up old failure record: ${endpoint}`);
this.failedEndpoints.delete(endpoint);
}
}
}
/**
* Get system health status
*/
getHealthStatus() {
const total = this.healthStatus.size;
const healthy = Array.from(this.healthStatus.values()).filter(s => s.status === 'healthy').length;
const degraded = Array.from(this.healthStatus.values()).filter(s => s.status === 'degraded').length;
const unhealthy = Array.from(this.healthStatus.values()).filter(s => s.status === 'unhealthy').length;
return {
total,
healthy,
degraded,
unhealthy,
healthPercentage: total > 0 ? Math.round((healthy / total) * 100) : 0,
failedEndpoints: this.failedEndpoints.size,
cacheSize: this.cache.size,
lastCheck: Date.now()
};
}
/**
* Utility: Delay
*/
delay(ms) {
return new Promise(resolve => setTimeout(resolve, ms));
}
/**
* Manual recovery trigger
*/
async triggerRecovery(endpoint) {
console.log(`π§ Manual recovery triggered for: ${endpoint}`);
this.activeRecoveries.add(endpoint);
try {
const isHealthy = await this.checkEndpointHealth(endpoint);
if (isHealthy) {
this.failedEndpoints.delete(endpoint);
return { success: true, message: 'Endpoint recovered' };
} else {
return { success: false, message: 'Endpoint still unhealthy' };
}
} finally {
this.activeRecoveries.delete(endpoint);
}
}
/**
* Get diagnostics information
*/
getDiagnostics() {
return {
health: this.getHealthStatus(),
failedEndpoints: Array.from(this.failedEndpoints.entries()).map(([url, record]) => ({
url,
...record
})),
cache: {
size: this.cache.size,
entries: Array.from(this.cache.keys())
},
config: {
retryAttempts: this.config.retryAttempts,
retryDelay: this.config.retryDelay,
healthCheckInterval: this.config.healthCheckInterval,
cacheExpiry: this.config.cacheExpiry,
enableAutoRecovery: this.config.enableAutoRecovery,
enableCaching: this.config.enableCaching
}
};
}
}
// Export for use in other modules
if (typeof module !== 'undefined' && module.exports) {
module.exports = SelfHealingAPIHub;
}
|