File size: 15,572 Bytes
ec95e06 | 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 | import asyncio
import os
import re
import time
import uuid
import shutil
import aiohttp
import gc # Memory management ke liye garbage collector
import zipfile # ZIP file handle karne ke liye in-built library
import urllib3 # Zero-buffer strict low RAM downloding ke liye
from fastapi import FastAPI, BackgroundTasks, Request, File, UploadFile
from fastapi.middleware.cors import CORSMiddleware
from fastapi.responses import FileResponse, StreamingResponse
from pydantic import BaseModel
app = FastAPI()
app.add_middleware(
CORSMiddleware,
allow_origins=["*"],
allow_credentials=True,
allow_methods=["*"],
allow_headers=["*"],
)
tasks = {}
DATA_DIR = "/data"
os.makedirs(DATA_DIR, exist_ok=True)
class DownloadRequest(BaseModel):
url: str
def clean_filename(url: str) -> str:
"""URL se sahi extension aur filename nikalne ka jugaad"""
path = url.split("?")[0]
filename = path.split("/")[-1]
if not filename or "." not in filename:
return "downloaded_file.bin"
return filename
async def cleanup_old_files():
while True:
try:
now = time.time()
for filename in os.listdir(DATA_DIR):
filepath = os.path.join(DATA_DIR, filename)
if os.path.isfile(filepath):
if now - os.path.getmtime(filepath) > 86400:
os.remove(filepath)
for tid, tinfo in list(tasks.items()):
if tinfo.get("file_path") == filepath:
del tasks[tid]
except Exception as e:
print(f"Cleanup error: {e}")
await asyncio.sleep(3600)
@app.on_event("startup")
async def startup_event():
asyncio.create_task(cleanup_old_files())
def sync_download_worker(task_id: str, url: str):
"""Urllib3 pool se strict raw streaming taaki RAM me cache accumulate na ho"""
file_path = tasks[task_id]["file_path"]
try:
http = urllib3.PoolManager(block=True, maxsize=1)
response = http.request('GET', url, preload_content=False, timeout=None)
total_size = int(response.headers.get('Content-Length', 0))
tasks[task_id]["total_size"] = total_size
# Proper filename aur extension extraction (.apk wagera)
cd = response.headers.get('Content-Disposition')
if cd and 'filename=' in cd:
fname = re.findall('filename="([^"]+)"', cd)
if not fname:
fname = re.findall('filename=([^;]+)', cd)
if fname:
new_filename = fname[0]
file_path = os.path.join(DATA_DIR, f"{task_id}_{new_filename}")
tasks[task_id]["file_path"] = file_path
tasks[task_id]["original_filename"] = new_filename
downloaded = 0
start_time = time.time()
last_time = start_time
last_downloaded = 0
chunk_counter = 0
with open(file_path, 'wb') as f:
# 64KB strict buffer chunking, RAM me data holds hi nahi hoga
for chunk in response.stream(64 * 1024):
if not chunk:
break
f.write(chunk)
downloaded += len(chunk)
tasks[task_id]["downloaded"] = downloaded
current_time = time.time()
if current_time - last_time >= 1.0:
speed = (downloaded - last_downloaded) / (current_time - last_time)
tasks[task_id]["speed"] = speed
last_time = current_time
last_downloaded = downloaded
f.flush()
chunk_counter += 1
if chunk_counter % 10 == 0:
os.fsync(f.fileno())
del chunk
gc.collect() # Strict cleanup inside raw sync thread
response.release_conn()
tasks[task_id]["status"] = "completed"
tasks[task_id]["speed"] = 0.0
except Exception as e:
tasks[task_id]["status"] = "error"
tasks[task_id]["error"] = str(e)
finally:
gc.collect()
async def download_file(task_id: str, url: str):
# Loop block bypass karne ke liye execution ko framework thread pool me run karenge
loop = asyncio.get_event_loop()
await loop.run_in_executor(None, sync_download_worker, task_id, url)
@app.post("/start_download")
async def start_download(req: DownloadRequest, background_tasks: BackgroundTasks):
task_id = str(uuid.uuid4())
filename = clean_filename(req.url)
tasks[task_id] = {
"task_id": task_id,
"url": req.url,
"status": "downloading",
"total_size": 0,
"downloaded": 0,
"speed": 0.0,
"file_path": os.path.join(DATA_DIR, f"{task_id}_{filename}"),
"original_filename": filename,
"timestamp": time.time()
}
background_tasks.add_task(download_file, task_id, req.url)
return {"task_id": task_id}
@app.get("/status/{task_id}")
async def get_status(task_id: str):
if task_id not in tasks:
return {"error": "Task not found"}
return tasks[task_id]
@app.get("/download/{task_id}")
async def download(task_id: str):
if task_id not in tasks or tasks[task_id]["status"] != "completed":
return {"error": "File not ready"}
return FileResponse(tasks[task_id]["file_path"], filename=tasks[task_id].get("original_filename"))
@app.get("/stream/{task_id}")
async def stream(task_id: str, request: Request):
if task_id not in tasks or tasks[task_id]["status"] != "completed":
return {"error": "File not ready"}
file_path = tasks[task_id]["file_path"]
file_size = os.path.getsize(file_path)
range_header = request.headers.get("Range")
if range_header:
byte1, byte2 = 0, None
match = range_header.replace("bytes=", "").split("-")
if match[0]:
byte1 = int(match[0])
if len(match) > 1 and match[1]:
byte2 = int(match[1])
length = file_size - byte1
if byte2 is not None:
length = byte2 + 1 - byte1
def file_iterator(start, length):
with open(file_path, "rb") as f:
f.seek(start)
chunk_size = 64 * 1024
while length > 0:
read_size = min(chunk_size, length)
data = f.read(read_size)
if not data:
break
yield data
length -= len(data)
del data
gc.collect()
headers = {
"Content-Range": f"bytes {byte1}-{byte1+length-1}/{file_size}",
"Accept-Ranges": "bytes",
"Content-Length": str(length),
}
return StreamingResponse(file_iterator(byte1, length), status_code=206, headers=headers)
else:
return FileResponse(file_path)
@app.get("/storage")
async def get_storage():
total, used, free = shutil.disk_usage(DATA_DIR)
return {"total": total, "used": used, "free": free}
@app.post("/delete_all")
async def delete_all():
for filename in os.listdir(DATA_DIR):
filepath = os.path.join(DATA_DIR, filename)
try:
if os.path.isfile(filepath):
os.remove(filepath)
elif os.path.isdir(filepath):
shutil.rmtree(filepath)
except Exception as e:
print(f"Failed to delete {filepath}: {e}")
tasks.clear()
gc.collect()
return {"status": "success"}
@app.get("/history")
async def get_history():
return {"history": list(tasks.values())}
@app.post("/upload")
async def upload_file(file: UploadFile = File(...)):
task_id = str(uuid.uuid4())
original_filename = file.filename if file.filename else "uploaded_file.bin"
file_path = os.path.join(DATA_DIR, f"{task_id}_{original_filename}")
with open(file_path, "wb") as buffer:
while True:
chunk = await file.read(64 * 1024)
if not chunk:
break
buffer.write(chunk)
buffer.flush()
os.fsync(buffer.fileno())
del chunk
gc.collect()
await file.close()
file_size = os.path.getsize(file_path)
tasks[task_id] = {
"task_id": task_id,
"url": "local_upload",
"status": "completed",
"total_size": file_size,
"downloaded": file_size,
"speed": 0.0,
"file_path": file_path,
"original_filename": original_filename,
"timestamp": time.time()
}
gc.collect()
return {"task_id": task_id}
@app.post("/start_gofile_transfer")
async def start_gofile_transfer(req: DownloadRequest, background_tasks: BackgroundTasks):
task_id = str(uuid.uuid4())
filename = clean_filename(req.url)
tasks[task_id] = {
"task_id": task_id,
"url": req.url,
"status": "downloading",
"total_size": 0,
"downloaded": 0,
"speed": 0.0,
"file_path": os.path.join(DATA_DIR, f"{task_id}_{filename}"),
"original_filename": filename,
"gofile_url": None,
"timestamp": time.time()
}
background_tasks.add_task(process_gofile_transfer, task_id, req.url)
return {"task_id": task_id}
async def file_sender(file_path, chunk_size=64 * 1024):
with open(file_path, 'rb') as f:
while True:
chunk = f.read(chunk_size)
if not chunk:
break
yield chunk
del chunk
gc.collect()
def sync_gofile_download_part(task_id: str, url: str):
"""GoFile processing ke liye bhi same raw low RAM wrapper"""
file_path = tasks[task_id]["file_path"]
http = urllib3.PoolManager(block=True, maxsize=1)
response = http.request('GET', url, preload_content=False, timeout=None)
total_size = int(response.headers.get('Content-Length', 0))
tasks[task_id]["total_size"] = total_size
cd = response.headers.get('Content-Disposition')
if cd and 'filename=' in cd:
fname = re.findall('filename="([^"]+)"', cd)
if not fname:
fname = re.findall('filename=([^;]+)', cd)
if fname:
new_filename = fname[0]
file_path = os.path.join(DATA_DIR, f"{task_id}_{new_filename}")
tasks[task_id]["file_path"] = file_path
tasks[task_id]["original_filename"] = new_filename
downloaded = 0
start_time = time.time()
last_time = start_time
last_downloaded = 0
chunk_counter = 0
with open(file_path, 'wb') as f:
for chunk in response.stream(64 * 1024):
if not chunk:
break
f.write(chunk)
downloaded += len(chunk)
tasks[task_id]["downloaded"] = downloaded
current_time = time.time()
if current_time - last_time >= 1.0:
tasks[task_id]["speed"] = (downloaded - last_downloaded) / (current_time - last_time)
last_time = current_time
last_downloaded = downloaded
f.flush()
chunk_counter += 1
if chunk_counter % 10 == 0:
os.fsync(f.fileno())
del chunk
gc.collect()
response.release_conn()
async def process_gofile_transfer(task_id: str, url: str):
try:
loop = asyncio.get_event_loop()
await loop.run_in_executor(None, sync_gofile_download_part, task_id, url)
file_path = tasks[task_id]["file_path"]
tasks[task_id]["status"] = "uploading_to_gofile"
tasks[task_id]["speed"] = 0.0
async with aiohttp.ClientSession() as session:
async with session.get("https://api.gofile.io/servers") as resp:
servers_data = await resp.json()
server = servers_data["data"]["servers"][0]["name"]
upload_url = f"https://{server}.gofile.io/uploadFile"
data = aiohttp.FormData()
data.add_field('file', file_sender(file_path), filename=tasks[task_id]["original_filename"])
async with session.post(upload_url, data=data) as upload_resp:
upload_result = await upload_resp.json()
if upload_result["status"] == "ok":
tasks[task_id]["gofile_url"] = upload_result["data"]["downloadPage"]
tasks[task_id]["status"] = "completed"
else:
raise Exception("GoFile upload failed")
try:
os.remove(file_path)
except:
pass
except Exception as e:
tasks[task_id]["status"] = "error"
tasks[task_id]["error"] = str(e)
finally:
gc.collect()
# ==================== ZIP MANAGEMENT FEATURES ====================
@app.get("/list_zip/{task_id}")
async def list_zip_contents(task_id: str):
if task_id not in tasks:
return {"error": "Task not found"}
file_path = tasks[task_id]["file_path"]
if not os.path.exists(file_path):
return {"error": "File does not exist on server"}
if not zipfile.is_zipfile(file_path):
return {"error": "This file is not a valid ZIP archive"}
try:
with zipfile.ZipFile(file_path, 'r') as z:
file_list = []
for info in z.infolist():
file_list.append({
"filename": info.filename,
"file_size_mb": round(info.file_size / (1024 * 1024), 2),
"is_dir": info.is_dir()
})
return {"task_id": task_id, "total_files": len(file_list), "files": file_list}
except Exception as e:
return {"error": f"Failed to read ZIP: {str(e)}"}
@app.post("/extract_zip/{task_id}")
async def extract_zip_file(task_id: str, background_tasks: BackgroundTasks):
if task_id not in tasks:
return {"error": "Task not found"}
file_path = tasks[task_id]["file_path"]
if not os.path.exists(file_path):
return {"error": "File does not exist on server"}
if not zipfile.is_zipfile(file_path):
return {"error": "This file is not a valid ZIP archive"}
extract_folder = os.path.join(DATA_DIR, f"extracted_{task_id}")
os.makedirs(extract_folder, exist_ok=True)
tasks[task_id]["status"] = "extracting"
tasks[task_id]["extract_path"] = extract_folder
background_tasks.add_task(process_zip_extraction, task_id, file_path, extract_folder)
return {"status": "extraction_started", "task_id": task_id, "target_folder": extract_folder}
def process_zip_extraction(task_id: str, zip_path: str, target_dir: str):
try:
with zipfile.ZipFile(zip_path, 'r') as z:
file_counter = 0
for member in z.namelist():
z.extract(member, path=target_dir)
file_counter += 1
if file_counter % 10 == 0:
gc.collect()
tasks[task_id]["status"] = "extracted"
except Exception as e:
tasks[task_id]["status"] = "extraction_error"
tasks[task_id]["error"] = str(e)
finally:
gc.collect()
if __name__ == "__main__":
import uvicorn
uvicorn.run(app, host="0.0.0.0", port=7860) |