Spaces:
Runtime error
Runtime error
import requests | |
from bs4 import BeautifulSoup | |
import json | |
import os | |
import time | |
import traceback | |
import psycopg2 | |
from dotenv import load_dotenv | |
import warnings | |
from fastapi import FastAPI, HTTPException | |
from fastapi.middleware.cors import CORSMiddleware | |
from fastapi.responses import FileResponse | |
from fastapi.staticfiles import StaticFiles | |
from pydantic import BaseModel | |
from typing import Dict, List, Optional | |
load_dotenv() | |
warnings.filterwarnings("ignore") | |
app = FastAPI(title="3GPP Document Finder API", | |
description="API to find 3GPP documents based on TSG document IDs") | |
app.mount("/static", StaticFiles(directory="static"), name="static") | |
origins = [ | |
"*", | |
] | |
app.add_middleware( | |
CORSMiddleware, | |
allow_origins=origins, | |
allow_credentials=True, | |
allow_methods=["*"], | |
allow_headers=["*"], | |
) | |
class DocRequest(BaseModel): | |
doc_id: str | |
release: Optional[int] = None | |
class DocResponse(BaseModel): | |
doc_id: str | |
url: str | |
search_time: float | |
class BatchDocRequest(BaseModel): | |
doc_ids: List[str] | |
release: Optional[int] = None | |
class BatchDocResponse(BaseModel): | |
results: Dict[str, str] | |
missing: List[str] | |
search_time: float | |
class TsgDocFinder: | |
def __init__(self): | |
self.main_ftp_url = "https://www.3gpp.org/ftp" | |
self.host = os.environ.get("PGSQL_HOST") | |
self.port = os.environ.get("PGSQL_PORT") | |
self.user = os.environ.get("PGSQL_USER") | |
self.password = os.environ.get("PGSQL_PASSWORD") | |
self.database = os.environ.get("PGSQL_DATABASE") | |
self.conn = self.connect() | |
self.indexer = self.load_indexer() | |
def connect(self): | |
"""Établit une connexion à la base de données PostgreSQL""" | |
try: | |
self.conn = psycopg2.connect( | |
host=self.host, | |
port=self.port, | |
user=self.user, | |
password=self.password, | |
dbname=self.database | |
) | |
return self.conn | |
except Exception as e: | |
print(f"Erreur de connexion à la base de données: {e}") | |
return None | |
def load_indexer(self): | |
"""Load existing index if available""" | |
if not self.conn: | |
self.conn = self.connect() | |
if self.conn is None: | |
raise HTTPException(status_code=500, detail="Connexion à la base de donnée impossible") | |
cursor = self.conn.cursor() | |
try: | |
cursor.execute("SELECT doc_id, url FROM document_position") | |
rows = cursor.fetchall() | |
doc = {doc_id: url for doc_id, url in rows} | |
except: | |
raise HTTPException(status_code=500, detail="Erreur lors de la récupération") | |
finally: | |
cursor.close() | |
return doc | |
def get_workgroup(self, doc): | |
main_tsg = "tsg_ct" if doc[0] == "C" else "tsg_sa" if doc[0] == "S" else None | |
if main_tsg is None: | |
return None, None, None | |
workgroup = f"WG{int(doc[1])}" if doc[1].isnumeric() else main_tsg.upper() | |
return main_tsg, workgroup, doc | |
def find_workgroup_url(self, main_tsg, workgroup): | |
"""Find the URL for the specific workgroup""" | |
response = requests.get(f"{self.main_ftp_url}/{main_tsg}", verify=False) | |
soup = BeautifulSoup(response.text, 'html.parser') | |
for item in soup.find_all("tr"): | |
link = item.find("a") | |
if link and workgroup in link.get_text(): | |
return f"{self.main_ftp_url}/{main_tsg}/{link.get_text()}" | |
return f"{self.main_ftp_url}/{main_tsg}/{workgroup}" | |
def get_docs_from_url(self, url): | |
"""Get list of documents/directories from a URL""" | |
try: | |
response = requests.get(url, verify=False, timeout=10) | |
soup = BeautifulSoup(response.text, "html.parser") | |
return [item.get_text() for item in soup.select("tr td a")] | |
except Exception as e: | |
print(f"Error accessing {url}: {e}") | |
return [] | |
def search_document(self, doc_id: str, release = None): | |
"""Search for a specific document by its ID""" | |
original_id = doc_id | |
# Check if already indexed | |
if original_id in self.indexer: | |
return self.indexer[original_id] | |
for doc in self.indexer: | |
if original_id.startswith(doc): | |
return self.indexer[doc] | |
# Parse the document ID | |
main_tsg, workgroup, doc = self.get_workgroup(doc_id) | |
if not main_tsg: | |
return f"Could not parse document ID: {doc_id}" | |
print(f"Searching for {original_id} (parsed as {doc}) in {main_tsg}/{workgroup}...") | |
# Find the workgroup URL | |
wg_url = self.find_workgroup_url(main_tsg, workgroup) | |
if not wg_url: | |
return f"Could not find workgroup for {doc_id}" | |
# Search in the workgroup directories | |
meeting_folders = self.get_docs_from_url(wg_url) | |
for folder in meeting_folders: | |
meeting_url = f"{wg_url}/{folder}" | |
meeting_contents = self.get_docs_from_url(meeting_url) | |
key = "docs" if "docs" in [x.lower() for x in meeting_contents] else "tdocs" if "tdocs" in [x.lower() for x in meeting_contents] else None | |
if key is not None: | |
docs_url = f"{meeting_url}/{key}" | |
print(f"Checking {docs_url}...") | |
files = self.get_docs_from_url(docs_url) | |
# Check for the document in the main Docs folder | |
for file in files: | |
if doc in file.lower() or original_id in file: | |
doc_url = f"{docs_url}/{file}" | |
self.indexer[original_id] = doc_url | |
return doc_url | |
# Check in ZIP subfolder if it exists | |
if "zip" in [x for x in files]: | |
zip_url = f"{docs_url}/zip" | |
print(f"Checking {zip_url}...") | |
zip_files = self.get_docs_from_url(zip_url) | |
for file in zip_files: | |
if doc in file.lower() or original_id in file: | |
doc_url = f"{zip_url}/{file}" | |
self.indexer[original_id] = doc_url | |
return doc_url | |
return f"Document {doc_id} not found" | |
class SpecDocFinder: | |
def __init__(self): | |
self.chars = "0123456789abcdefghijklmnopqrstuvwxyz" | |
def search_document(self, doc_id, release): | |
series = doc_id.split(".")[0] | |
while len(series) < 2: | |
series = "0" + series | |
url = f"https://www.3gpp.org/ftp/Specs/archive/{series}_series/{doc_id}" | |
response = requests.get(url, verify=False) | |
soup = BeautifulSoup(response.text, 'html.parser') | |
items = soup.find_all("tr")[1:] | |
version_found = None | |
if release is None: | |
try: | |
item = items[-1].find("a") | |
except Exception as e: | |
traceback.print_exc(e) | |
return f"Unable to find specification {doc_id} : {e}" | |
a, b, c = [_ for _ in item.get_text().split("-")[1].replace(".zip", "")] | |
version = f"{self.chars.index(a)}.{self.chars.index(b)}.{self.chars.index(c)}" | |
version_found = (version, item.get("href")) | |
_, spec_url = version_found | |
return spec_url if version_found is not None else f"Specification {doc_id} not found" | |
else: | |
for item in items: | |
x = item.find("a") | |
if f"{doc_id.replace('.', '')}-{self.chars[int(release)]}" in x.get_text(): | |
a, b, c = [_ for _ in x.get_text().split("-")[1].replace(".zip", "")] | |
version = f"{self.chars.index(a)}.{self.chars.index(b)}.{self.chars.index(c)}" | |
version_found = (version, x.get("href")) | |
_, spec_url = version_found | |
return spec_url if version_found is not None else f"Specification {doc_id} not found" | |
async def main_menu(): | |
return FileResponse(os.path.join("templates", "index.html")) | |
def find_document(request: DocRequest): | |
start_time = time.time() | |
finder = TsgDocFinder() if request.doc_id[0].isalpha() else SpecDocFinder() | |
print(finder) | |
result = finder.search_document(request.doc_id, request.release) | |
print(result) | |
if "not found" not in result and "Could not" not in result: | |
return DocResponse( | |
doc_id=request.doc_id, | |
url=result, | |
search_time=time.time() - start_time | |
) | |
else: | |
raise HTTPException(status_code=404, detail=result) | |
def find_documents_batch(request: BatchDocRequest): | |
start_time = time.time() | |
results = {} | |
missing = [] | |
for doc_id in request.doc_ids: | |
finder = TsgDocFinder() if doc_id[0].isalpha() else SpecDocFinder() | |
result = finder.search_document(doc_id) | |
if "not found" not in result and "Could not" not in result: | |
results[doc_id] = result | |
else: | |
missing.append(doc_id) | |
return BatchDocResponse( | |
results=results, | |
missing=missing, | |
search_time=time.time() - start_time | |
) |