File size: 19,021 Bytes
eebf5c4 |
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 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 |
#!/usr/bin/env python3
"""
API Gateway - دروازه API با قابلیت کش
Powerful API Gateway with intelligent caching and fallback
"""
from fastapi import FastAPI, HTTPException, Query, BackgroundTasks
from fastapi.middleware.cors import CORSMiddleware
from fastapi.responses import JSONResponse
from typing import List, Optional, Dict, Any
from pydantic import BaseModel
from datetime import datetime, timedelta
import logging
import sys
from pathlib import Path
# Add parent directory to path
sys.path.insert(0, str(Path(__file__).parent.parent))
from crypto_data_bank.database import get_db
from crypto_data_bank.orchestrator import get_orchestrator
from crypto_data_bank.collectors.free_price_collector import FreePriceCollector
from crypto_data_bank.collectors.rss_news_collector import RSSNewsCollector
from crypto_data_bank.collectors.sentiment_collector import SentimentCollector
from crypto_data_bank.ai.huggingface_models import get_analyzer
logging.basicConfig(level=logging.INFO)
logger = logging.getLogger(__name__)
# Initialize FastAPI
app = FastAPI(
title="Crypto Data Bank API Gateway",
description="🏦 Powerful Crypto Data Bank - FREE data aggregation from 200+ sources",
version="1.0.0",
docs_url="/docs",
redoc_url="/redoc"
)
# CORS Middleware
app.add_middleware(
CORSMiddleware,
allow_origins=["*"],
allow_credentials=True,
allow_methods=["*"],
allow_headers=["*"],
)
# Initialize components
db = get_db()
orchestrator = get_orchestrator()
price_collector = FreePriceCollector()
news_collector = RSSNewsCollector()
sentiment_collector = SentimentCollector()
ai_analyzer = get_analyzer()
# Application state
app_state = {
"startup_time": datetime.now(),
"background_collection_enabled": False
}
# Pydantic Models
class PriceResponse(BaseModel):
symbol: str
price: float
change24h: Optional[float] = None
volume24h: Optional[float] = None
marketCap: Optional[float] = None
source: str
timestamp: str
class NewsResponse(BaseModel):
title: str
description: Optional[str] = None
url: str
source: str
published_at: Optional[str] = None
coins: List[str] = []
sentiment: Optional[float] = None
class SentimentResponse(BaseModel):
overall_sentiment: str
sentiment_score: float
fear_greed_value: Optional[int] = None
confidence: float
timestamp: str
class HealthResponse(BaseModel):
status: str
database_status: str
background_collection: bool
uptime_seconds: float
total_prices: int
total_news: int
last_update: Optional[str] = None
# === ROOT ENDPOINT ===
@app.get("/")
async def root():
"""معلومات API - API Information"""
return {
"name": "Crypto Data Bank API Gateway",
"description": "🏦 Powerful FREE cryptocurrency data aggregation from 200+ sources",
"version": "1.0.0",
"features": [
"Real-time prices from 5+ free sources",
"News from 8+ RSS feeds",
"Market sentiment analysis",
"AI-powered news sentiment (HuggingFace models)",
"Intelligent caching and database storage",
"No API keys required for basic data"
],
"endpoints": {
"health": "/api/health",
"prices": "/api/prices",
"news": "/api/news",
"sentiment": "/api/sentiment",
"market_overview": "/api/market/overview",
"trending_coins": "/api/trending",
"ai_analysis": "/api/ai/analysis",
"documentation": "/docs"
},
"data_sources": {
"price_sources": ["CoinCap", "CoinGecko", "Binance Public", "Kraken", "CryptoCompare"],
"news_sources": ["CoinTelegraph", "CoinDesk", "Bitcoin Magazine", "Decrypt", "The Block", "CryptoPotato", "NewsBTC", "Bitcoinist"],
"sentiment_sources": ["Fear & Greed Index", "BTC Dominance", "Global Market Stats"],
"ai_models": ["FinBERT (sentiment)", "BART (classification)"]
},
"github": "https://github.com/nimazasinich/crypto-dt-source",
"timestamp": datetime.now().isoformat()
}
# === HEALTH & STATUS ===
@app.get("/api/health", response_model=HealthResponse)
async def health_check():
"""بررسی سلامت سیستم - Health check"""
try:
stats = db.get_statistics()
uptime = (datetime.now() - app_state["startup_time"]).total_seconds()
status = orchestrator.get_collection_status()
return HealthResponse(
status="healthy",
database_status="connected",
background_collection=app_state["background_collection_enabled"],
uptime_seconds=uptime,
total_prices=stats.get('prices_count', 0),
total_news=stats.get('news_count', 0),
last_update=status['last_collection'].get('prices')
)
except Exception as e:
logger.error(f"Health check failed: {e}")
raise HTTPException(status_code=500, detail=str(e))
@app.get("/api/stats")
async def get_statistics():
"""آمار کامل - Complete statistics"""
try:
db_stats = db.get_statistics()
collection_status = orchestrator.get_collection_status()
return {
"database": db_stats,
"collection": collection_status,
"uptime_seconds": (datetime.now() - app_state["startup_time"]).total_seconds(),
"timestamp": datetime.now().isoformat()
}
except Exception as e:
raise HTTPException(status_code=500, detail=str(e))
# === PRICE ENDPOINTS ===
@app.get("/api/prices")
async def get_prices(
symbols: Optional[str] = Query(None, description="Comma-separated symbols (e.g., BTC,ETH,SOL)"),
limit: int = Query(100, ge=1, le=500, description="Number of results"),
force_refresh: bool = Query(False, description="Force fresh data collection")
):
"""
دریافت قیمتهای رمزارز - Get cryptocurrency prices
- Uses cached database data by default (fast)
- Set force_refresh=true for live data (slower)
- Supports multiple symbols
"""
try:
symbol_list = symbols.split(',') if symbols else None
# Check cache first (unless force_refresh)
if not force_refresh:
cached_prices = db.get_latest_prices(symbol_list, limit)
if cached_prices:
logger.info(f"✅ Returning {len(cached_prices)} prices from cache")
return {
"success": True,
"source": "database_cache",
"count": len(cached_prices),
"data": cached_prices,
"timestamp": datetime.now().isoformat()
}
# Force refresh or no cache - collect fresh data
logger.info("📡 Collecting fresh price data...")
all_prices = await price_collector.collect_all_free_sources(symbol_list)
aggregated = price_collector.aggregate_prices(all_prices)
# Save to database
for price_data in aggregated:
try:
db.save_price(price_data['symbol'], price_data, 'api_request')
except:
pass
return {
"success": True,
"source": "live_collection",
"count": len(aggregated),
"data": aggregated,
"timestamp": datetime.now().isoformat()
}
except Exception as e:
logger.error(f"Error getting prices: {e}")
raise HTTPException(status_code=500, detail=str(e))
@app.get("/api/prices/{symbol}")
async def get_price_single(
symbol: str,
history_hours: int = Query(24, ge=1, le=168, description="Hours of price history")
):
"""دریافت قیمت و تاریخچه یک رمزارز - Get single crypto price and history"""
try:
# Get latest price
latest = db.get_latest_prices([symbol], 1)
if not latest:
# Try to collect fresh data
all_prices = await price_collector.collect_all_free_sources([symbol])
aggregated = price_collector.aggregate_prices(all_prices)
if aggregated:
latest = [aggregated[0]]
else:
raise HTTPException(status_code=404, detail=f"No data found for {symbol}")
# Get price history
history = db.get_price_history(symbol, history_hours)
return {
"success": True,
"symbol": symbol,
"current": latest[0],
"history": history,
"history_hours": history_hours,
"timestamp": datetime.now().isoformat()
}
except HTTPException:
raise
except Exception as e:
logger.error(f"Error getting price for {symbol}: {e}")
raise HTTPException(status_code=500, detail=str(e))
# === NEWS ENDPOINTS ===
@app.get("/api/news")
async def get_news(
limit: int = Query(50, ge=1, le=200, description="Number of news items"),
category: Optional[str] = Query(None, description="Filter by category"),
coin: Optional[str] = Query(None, description="Filter by coin symbol"),
force_refresh: bool = Query(False, description="Force fresh data collection")
):
"""
دریافت اخبار رمزارز - Get cryptocurrency news
- Uses cached database data by default
- Set force_refresh=true for latest news
- Filter by category or specific coin
"""
try:
# Check cache first
if not force_refresh:
cached_news = db.get_latest_news(limit, category)
if cached_news:
# Filter by coin if specified
if coin:
cached_news = [
n for n in cached_news
if coin.upper() in [c.upper() for c in n.get('coins', [])]
]
logger.info(f"✅ Returning {len(cached_news)} news from cache")
return {
"success": True,
"source": "database_cache",
"count": len(cached_news),
"data": cached_news,
"timestamp": datetime.now().isoformat()
}
# Collect fresh news
logger.info("📰 Collecting fresh news...")
all_news = await news_collector.collect_all_rss_feeds()
unique_news = news_collector.deduplicate_news(all_news)
# Filter by coin if specified
if coin:
unique_news = news_collector.filter_by_coins(unique_news, [coin])
# Save to database
for news_item in unique_news[:limit]:
try:
db.save_news(news_item)
except:
pass
return {
"success": True,
"source": "live_collection",
"count": len(unique_news[:limit]),
"data": unique_news[:limit],
"timestamp": datetime.now().isoformat()
}
except Exception as e:
logger.error(f"Error getting news: {e}")
raise HTTPException(status_code=500, detail=str(e))
@app.get("/api/trending")
async def get_trending_coins():
"""سکههای پرطرفدار - Get trending coins from news"""
try:
# Get recent news from database
recent_news = db.get_latest_news(100)
if not recent_news:
# Collect fresh news
all_news = await news_collector.collect_all_rss_feeds()
recent_news = news_collector.deduplicate_news(all_news)
# Get trending coins
trending = news_collector.get_trending_coins(recent_news)
return {
"success": True,
"trending_coins": trending,
"based_on_news": len(recent_news),
"timestamp": datetime.now().isoformat()
}
except Exception as e:
raise HTTPException(status_code=500, detail=str(e))
# === SENTIMENT ENDPOINTS ===
@app.get("/api/sentiment", response_model=Dict[str, Any])
async def get_market_sentiment(
force_refresh: bool = Query(False, description="Force fresh data collection")
):
"""
احساسات بازار - Get market sentiment
- Includes Fear & Greed Index
- BTC Dominance
- Global market stats
- Overall sentiment score
"""
try:
# Check cache first
if not force_refresh:
cached_sentiment = db.get_latest_sentiment()
if cached_sentiment:
logger.info("✅ Returning sentiment from cache")
return {
"success": True,
"source": "database_cache",
"data": cached_sentiment,
"timestamp": datetime.now().isoformat()
}
# Collect fresh sentiment
logger.info("😊 Collecting fresh sentiment data...")
sentiment_data = await sentiment_collector.collect_all_sentiment_data()
# Save to database
if sentiment_data.get('overall_sentiment'):
db.save_sentiment(sentiment_data['overall_sentiment'], 'api_request')
return {
"success": True,
"source": "live_collection",
"data": sentiment_data,
"timestamp": datetime.now().isoformat()
}
except Exception as e:
logger.error(f"Error getting sentiment: {e}")
raise HTTPException(status_code=500, detail=str(e))
# === MARKET OVERVIEW ===
@app.get("/api/market/overview")
async def get_market_overview():
"""نمای کلی بازار - Complete market overview"""
try:
# Get top prices
top_prices = db.get_latest_prices(None, 20)
if not top_prices:
# Collect fresh data
all_prices = await price_collector.collect_all_free_sources()
top_prices = price_collector.aggregate_prices(all_prices)[:20]
# Get latest sentiment
sentiment = db.get_latest_sentiment()
if not sentiment:
sentiment_data = await sentiment_collector.collect_all_sentiment_data()
sentiment = sentiment_data.get('overall_sentiment')
# Get latest news
latest_news = db.get_latest_news(10)
# Calculate market summary
total_market_cap = sum(p.get('marketCap', 0) for p in top_prices)
total_volume_24h = sum(p.get('volume24h', 0) for p in top_prices)
return {
"success": True,
"market_summary": {
"total_market_cap": total_market_cap,
"total_volume_24h": total_volume_24h,
"top_cryptocurrencies": len(top_prices),
},
"top_prices": top_prices[:10],
"sentiment": sentiment,
"latest_news": latest_news[:5],
"timestamp": datetime.now().isoformat()
}
except Exception as e:
raise HTTPException(status_code=500, detail=str(e))
# === AI ANALYSIS ENDPOINTS ===
@app.get("/api/ai/analysis")
async def get_ai_analysis(
symbol: Optional[str] = Query(None, description="Filter by symbol"),
limit: int = Query(50, ge=1, le=200)
):
"""تحلیلهای هوش مصنوعی - Get AI analyses"""
try:
analyses = db.get_ai_analyses(symbol, limit)
return {
"success": True,
"count": len(analyses),
"data": analyses,
"timestamp": datetime.now().isoformat()
}
except Exception as e:
raise HTTPException(status_code=500, detail=str(e))
@app.post("/api/ai/analyze/news")
async def analyze_news_with_ai(
text: str = Query(..., description="News text to analyze")
):
"""تحلیل احساسات یک خبر با AI - Analyze news sentiment with AI"""
try:
result = await ai_analyzer.analyze_news_sentiment(text)
return {
"success": True,
"analysis": result,
"timestamp": datetime.now().isoformat()
}
except Exception as e:
raise HTTPException(status_code=500, detail=str(e))
# === BACKGROUND COLLECTION CONTROL ===
@app.post("/api/collection/start")
async def start_background_collection(background_tasks: BackgroundTasks):
"""شروع جمعآوری پسزمینه - Start background data collection"""
if app_state["background_collection_enabled"]:
return {
"success": False,
"message": "Background collection already running"
}
background_tasks.add_task(orchestrator.start_background_collection)
app_state["background_collection_enabled"] = True
return {
"success": True,
"message": "Background collection started",
"intervals": orchestrator.intervals,
"timestamp": datetime.now().isoformat()
}
@app.post("/api/collection/stop")
async def stop_background_collection():
"""توقف جمعآوری پسزمینه - Stop background data collection"""
if not app_state["background_collection_enabled"]:
return {
"success": False,
"message": "Background collection not running"
}
await orchestrator.stop_background_collection()
app_state["background_collection_enabled"] = False
return {
"success": True,
"message": "Background collection stopped",
"timestamp": datetime.now().isoformat()
}
@app.get("/api/collection/status")
async def get_collection_status():
"""وضعیت جمعآوری - Collection status"""
return orchestrator.get_collection_status()
# === STARTUP & SHUTDOWN ===
@app.on_event("startup")
async def startup_event():
"""رویداد راهاندازی - Startup event"""
logger.info("🚀 Starting Crypto Data Bank API Gateway...")
logger.info("🏦 Powerful FREE data aggregation from 200+ sources")
# Auto-start background collection
try:
await orchestrator.start_background_collection()
app_state["background_collection_enabled"] = True
logger.info("✅ Background collection started automatically")
except Exception as e:
logger.error(f"Failed to start background collection: {e}")
@app.on_event("shutdown")
async def shutdown_event():
"""رویداد خاموشی - Shutdown event"""
logger.info("🛑 Shutting down Crypto Data Bank API Gateway...")
if app_state["background_collection_enabled"]:
await orchestrator.stop_background_collection()
logger.info("✅ Shutdown complete")
if __name__ == "__main__":
import uvicorn
print("\n" + "="*70)
print("🏦 Crypto Data Bank API Gateway")
print("="*70)
print("\n🚀 Starting server...")
print("📍 URL: http://localhost:8888")
print("📖 Docs: http://localhost:8888/docs")
print("\n" + "="*70 + "\n")
uvicorn.run(
"api_gateway:app",
host="0.0.0.0",
port=8888,
reload=False,
log_level="info"
)
|