-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathapi.py
More file actions
440 lines (363 loc) · 14.8 KB
/
api.py
File metadata and controls
440 lines (363 loc) · 14.8 KB
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
"""
Idlix Downloader API - FastAPI REST API Wrapper
Created by: dewhush
Original by: sandrocods (https://github.com/sandrocods/IdlixDownloader)
"""
import os
import time
from typing import Optional
from datetime import datetime
from dotenv import load_dotenv
from fastapi import FastAPI, HTTPException, Depends, Header, BackgroundTasks
from fastapi.responses import JSONResponse, FileResponse
from pydantic import BaseModel, Field
from contextlib import asynccontextmanager
from idlix_service import IdlixService
# Load environment variables
load_dotenv()
# Configuration
APP_NAME = os.getenv("APP_NAME", "Idlix-Downloader-API")
APP_ENV = os.getenv("APP_ENV", "development")
API_KEY = os.getenv("API_KEY", "")
# Startup time for uptime calculation
START_TIME = None
# =============================================================================
# STARTUP BANNER
# =============================================================================
def print_banner():
banner = """
╔═══════════════════════════════════════════════════════════════════╗
║ ║
║ ██╗██████╗ ██╗ ██╗██╗ ██╗ █████╗ ██████╗ ██╗ ║
║ ██║██╔══██╗██║ ██║╚██╗██╔╝ ██╔══██╗██╔══██╗██║ ║
║ ██║██║ ██║██║ ██║ ╚███╔╝ ███████║██████╔╝██║ ║
║ ██║██║ ██║██║ ██║ ██╔██╗ ██╔══██║██╔═══╝ ██║ ║
║ ██║██████╔╝███████╗██║██╔╝ ██╗ ██║ ██║██║ ██║ ║
║ ╚═╝╚═════╝ ╚══════╝╚═╝╚═╝ ╚═╝ ╚═╝ ╚═╝╚═╝ ╚═╝ ║
║ ║
║ Created by: dewhush ║
║ Original: sandrocods/IdlixDownloader ║
║ ║
╚═══════════════════════════════════════════════════════════════════╝
"""
print(banner)
# =============================================================================
# LIFESPAN EVENTS
# =============================================================================
@asynccontextmanager
async def lifespan(app: FastAPI):
global START_TIME
print_banner()
START_TIME = time.time()
print(f"🚀 {APP_NAME} starting in {APP_ENV} mode...")
# Initialize service to detect active URL on startup
try:
service = IdlixService()
print(f"✅ Active IDLIX URL: {service.get_active_url()}")
except Exception as e:
print(f"⚠️ Failed to detect active URL: {e}")
yield
print(f"👋 {APP_NAME} shutting down...")
# =============================================================================
# FASTAPI APP
# =============================================================================
app = FastAPI(
title=APP_NAME,
description="REST API wrapper for IDLIX Downloader - Download movies from IDLIX",
version="1.0.0",
docs_url="/docs",
redoc_url="/redoc",
lifespan=lifespan
)
# =============================================================================
# AUTHENTICATION
# =============================================================================
async def verify_api_key(x_api_key: Optional[str] = Header(None)):
"""Verify API Key from header"""
if not API_KEY:
# If no API_KEY configured, skip authentication
return True
if not x_api_key:
raise HTTPException(
status_code=401,
detail="Missing API Key. Provide 'X-API-Key' header."
)
if x_api_key != API_KEY:
raise HTTPException(
status_code=403,
detail="Invalid API Key"
)
return True
# =============================================================================
# REQUEST/RESPONSE MODELS
# =============================================================================
class VideoUrlRequest(BaseModel):
url: str = Field(..., description="IDLIX movie URL", example="https://tv12.idlixku.com/movie/example/")
class StreamRequest(BaseModel):
url: str = Field(..., description="IDLIX movie URL")
quality_id: Optional[str] = Field(None, description="Quality ID from variant playlist (optional)")
class DownloadRequest(BaseModel):
url: str = Field(..., description="IDLIX movie URL")
quality_id: Optional[str] = Field(None, description="Quality ID from variant playlist (optional)")
embed_subtitle: bool = Field(True, description="Embed subtitle into video file")
class HealthResponse(BaseModel):
status: str
timestamp: str
class StatusResponse(BaseModel):
app_name: str
environment: str
uptime_seconds: float
active_idlix_url: str
version: str
class MovieItem(BaseModel):
url: str
title: str
year: str
type: str
poster: str
class FeaturedResponse(BaseModel):
status: bool
count: int
movies: list[MovieItem]
class VideoInfoResponse(BaseModel):
status: bool
video_id: Optional[str] = None
video_name: Optional[str] = None
poster: Optional[str] = None
message: Optional[str] = None
class QualityOption(BaseModel):
id: str
resolution: str
bandwidth: int
class StreamResponse(BaseModel):
status: bool
m3u8_url: Optional[str] = None
qualities: Optional[list[QualityOption]] = None
has_multiple_qualities: bool = False
subtitle_url: Optional[str] = None
message: Optional[str] = None
class DownloadResponse(BaseModel):
status: bool
file_path: Optional[str] = None
file_name: Optional[str] = None
message: Optional[str] = None
# =============================================================================
# ENDPOINTS
# =============================================================================
# -----------------------------------------------------------------------------
# Health & Status (No Auth Required)
# -----------------------------------------------------------------------------
@app.get("/health", response_model=HealthResponse, tags=["Health"])
async def health_check():
"""Health check endpoint - no authentication required"""
return {
"status": "healthy",
"timestamp": datetime.now().isoformat()
}
@app.get("/status", response_model=StatusResponse, tags=["Health"])
async def get_status(_: bool = Depends(verify_api_key)):
"""Get API status and configuration"""
try:
service = IdlixService()
active_url = service.get_active_url()
except Exception:
active_url = "unknown"
uptime = time.time() - START_TIME if START_TIME else 0
return {
"app_name": APP_NAME,
"environment": APP_ENV,
"uptime_seconds": round(uptime, 2),
"active_idlix_url": active_url,
"version": "1.0.0"
}
# -----------------------------------------------------------------------------
# V1 API Endpoints
# -----------------------------------------------------------------------------
@app.get("/v1/featured", response_model=FeaturedResponse, tags=["Movies"])
async def get_featured_movies(_: bool = Depends(verify_api_key)):
"""Get featured movies from IDLIX homepage"""
try:
service = IdlixService()
result = service.get_featured_movies()
if not result.get("status"):
raise HTTPException(
status_code=500,
detail=result.get("message", "Failed to fetch featured movies")
)
movies = result.get("featured_movie", [])
return {
"status": True,
"count": len(movies),
"movies": movies
}
except HTTPException:
raise
except Exception as e:
raise HTTPException(status_code=500, detail=str(e))
@app.post("/v1/video-info", response_model=VideoInfoResponse, tags=["Movies"])
async def get_video_info(
request: VideoUrlRequest,
_: bool = Depends(verify_api_key)
):
"""Get video information from IDLIX URL"""
try:
service = IdlixService()
result = service.get_video_info(request.url)
if not result.get("status"):
return JSONResponse(
status_code=400,
content={
"status": False,
"message": result.get("message", "Failed to get video info")
}
)
return {
"status": True,
"video_id": result.get("video_id"),
"video_name": result.get("video_name"),
"poster": result.get("poster")
}
except Exception as e:
raise HTTPException(status_code=500, detail=str(e))
@app.post("/v1/get-stream", response_model=StreamResponse, tags=["Streaming"])
async def get_stream_url(
request: StreamRequest,
_: bool = Depends(verify_api_key)
):
"""Get M3U8 streaming URL and quality options"""
try:
service = IdlixService()
# Get video info first
video_info = service.get_video_info(request.url)
if not video_info.get("status"):
return JSONResponse(
status_code=400,
content={
"status": False,
"message": video_info.get("message", "Failed to get video info")
}
)
# Get embed URL
embed_result = service.get_embed_url()
if not embed_result.get("status"):
return JSONResponse(
status_code=400,
content={
"status": False,
"message": embed_result.get("message", "Failed to get embed URL")
}
)
# Get M3U8 URL
m3u8_result = service.get_m3u8_url()
if not m3u8_result.get("status"):
return JSONResponse(
status_code=400,
content={
"status": False,
"message": m3u8_result.get("message", "Failed to get stream URL")
}
)
# Get subtitle URL
subtitle_result = service.get_subtitle_url()
subtitle_url = subtitle_result.get("subtitle") if subtitle_result.get("status") else None
# Process quality options
qualities = []
variant_playlist = m3u8_result.get("variant_playlist", [])
for v in variant_playlist:
qualities.append({
"id": v.get("id"),
"resolution": v.get("resolution"),
"bandwidth": v.get("bandwidth")
})
# If specific quality requested, set that m3u8 URL
final_m3u8_url = m3u8_result.get("m3u8_url")
if request.quality_id and variant_playlist:
for v in variant_playlist:
if v.get("id") == request.quality_id:
service.set_m3u8_url(v.get("uri"))
final_m3u8_url = service.get_current_m3u8_url()
break
return {
"status": True,
"m3u8_url": final_m3u8_url,
"qualities": qualities,
"has_multiple_qualities": len(qualities) > 1,
"subtitle_url": subtitle_url
}
except Exception as e:
raise HTTPException(status_code=500, detail=str(e))
@app.post("/v1/download", response_model=DownloadResponse, tags=["Download"])
async def download_video(
request: DownloadRequest,
_: bool = Depends(verify_api_key)
):
"""Download video from IDLIX URL"""
try:
service = IdlixService()
# Get video info first
video_info = service.get_video_info(request.url)
if not video_info.get("status"):
return JSONResponse(
status_code=400,
content={
"status": False,
"message": video_info.get("message", "Failed to get video info")
}
)
# Get embed URL
embed_result = service.get_embed_url()
if not embed_result.get("status"):
return JSONResponse(
status_code=400,
content={
"status": False,
"message": embed_result.get("message", "Failed to get embed URL")
}
)
# Get M3U8 URL
m3u8_result = service.get_m3u8_url()
if not m3u8_result.get("status"):
return JSONResponse(
status_code=400,
content={
"status": False,
"message": m3u8_result.get("message", "Failed to get stream URL")
}
)
# If specific quality requested, set that m3u8 URL
variant_playlist = m3u8_result.get("variant_playlist", [])
if request.quality_id and variant_playlist:
for v in variant_playlist:
if v.get("id") == request.quality_id:
service.set_m3u8_url(v.get("uri"))
break
# Download video
download_result = service.download_video(embed_subtitle=request.embed_subtitle)
if not download_result.get("status"):
return JSONResponse(
status_code=500,
content={
"status": False,
"message": download_result.get("message", "Download failed")
}
)
file_path = download_result.get("path")
return {
"status": True,
"file_path": file_path,
"file_name": os.path.basename(file_path) if file_path else None,
"message": "Download completed successfully"
}
except Exception as e:
raise HTTPException(status_code=500, detail=str(e))
# =============================================================================
# MAIN ENTRY
# =============================================================================
if __name__ == "__main__":
import uvicorn
uvicorn.run(
"api:app",
host="0.0.0.0",
port=8000,
reload=APP_ENV == "development"
)