-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
227 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,141 @@ | ||
# coding=utf-8 | ||
# Copyright 2024 XiaHan | ||
# | ||
# Use of this source code is governed by an MIT-style | ||
# license that can be found in the LICENSE file or at | ||
# https://opensource.org/licenses/MIT. | ||
|
||
import os | ||
import shutil | ||
import tempfile | ||
from typing import Dict, Literal | ||
from urllib.parse import urljoin | ||
from fastapi import FastAPI, Request | ||
|
||
import httpx | ||
from olah.constants import CHUNK_SIZE, WORKER_API_TIMEOUT | ||
|
||
from olah.utils.rule_utils import check_cache_rules_hf | ||
from olah.utils.repo_utils import get_org_repo | ||
from olah.utils.file_utils import make_dirs | ||
|
||
|
||
async def tree_cache_generator(save_path: str): | ||
yield {} | ||
with open(save_path, "rb") as f: | ||
while True: | ||
chunk = f.read(CHUNK_SIZE) | ||
if not chunk: | ||
break | ||
yield chunk | ||
|
||
|
||
async def tree_proxy_cache( | ||
app: FastAPI, | ||
repo_type: Literal["models", "datasets", "spaces"], | ||
org: str, | ||
repo: str, | ||
commit: str, | ||
request: Request, | ||
): | ||
# save | ||
repos_path = app.app_settings.repos_path | ||
save_dir = os.path.join( | ||
repos_path, f"api/{repo_type}/{org}/{repo}/tree/{commit}" | ||
) | ||
save_path = os.path.join(save_dir, "tree.json") | ||
make_dirs(save_path) | ||
|
||
# url | ||
org_repo = get_org_repo(org, repo) | ||
tree_url = urljoin( | ||
app.app_settings.config.hf_url_base(), | ||
f"/api/{repo_type}/{org_repo}/tree/{commit}", | ||
) | ||
headers = {} | ||
if "authorization" in request.headers: | ||
headers["authorization"] = request.headers["authorization"] | ||
async with httpx.AsyncClient() as client: | ||
response = await client.request( | ||
method="GET", | ||
url=tree_url, | ||
headers=headers, | ||
timeout=WORKER_API_TIMEOUT, | ||
follow_redirects=True, | ||
) | ||
if response.status_code == 200: | ||
with open(save_path, "wb") as tree_file: | ||
tree_file.write(response.content) | ||
else: | ||
raise Exception( | ||
f"Cannot get the branch info from the url {tree_url}, status: {response.status_code}" | ||
) | ||
|
||
|
||
async def tree_proxy_generator( | ||
app: FastAPI, | ||
headers: Dict[str, str], | ||
tree_url: str, | ||
allow_cache: bool, | ||
save_path: str, | ||
): | ||
async with httpx.AsyncClient(follow_redirects=True) as client: | ||
content_chunks = [] | ||
async with client.stream( | ||
method="GET", | ||
url=tree_url, | ||
headers=headers, | ||
timeout=WORKER_API_TIMEOUT, | ||
) as response: | ||
response_headers = response.headers | ||
yield response_headers | ||
|
||
async for raw_chunk in response.aiter_raw(): | ||
if not raw_chunk: | ||
continue | ||
content_chunks.append(raw_chunk) | ||
yield raw_chunk | ||
|
||
content = bytearray() | ||
for chunk in content_chunks: | ||
content += chunk | ||
with open(save_path, "wb") as f: | ||
f.write(bytes(content)) | ||
|
||
|
||
async def tree_generator( | ||
app: FastAPI, | ||
repo_type: Literal["models", "datasets", "spaces"], | ||
org: str, | ||
repo: str, | ||
commit: str, | ||
request: Request, | ||
): | ||
headers = {k: v for k, v in request.headers.items()} | ||
headers.pop("host") | ||
|
||
# save | ||
repos_path = app.app_settings.repos_path | ||
save_dir = os.path.join( | ||
repos_path, f"api/{repo_type}/{org}/{repo}/tree/{commit}" | ||
) | ||
save_path = os.path.join(save_dir, "tree.json") | ||
make_dirs(save_path) | ||
|
||
use_cache = os.path.exists(save_path) | ||
allow_cache = await check_cache_rules_hf(app, repo_type, org, repo) | ||
|
||
org_repo = get_org_repo(org, repo) | ||
tree_url = urljoin( | ||
app.app_settings.config.hf_url_base(), | ||
f"/api/{repo_type}/{org_repo}/tree/{commit}", | ||
) | ||
# proxy | ||
if use_cache: | ||
async for item in tree_cache_generator(app, save_path): | ||
yield item | ||
else: | ||
async for item in tree_proxy_generator( | ||
app, headers, tree_url, allow_cache, save_path | ||
): | ||
yield item |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters