unshorten/server/src/main.py

33 lines
769 B
Python
Raw Normal View History

2024-04-14 00:39:03 +00:00
"""Unshorten API"""
2024-04-13 22:41:22 +00:00
from typing import Optional
from urllib.parse import urlparse
2024-04-14 00:39:03 +00:00
from fastapi import FastAPI
from fastapi.middleware.cors import CORSMiddleware
from unshorteners import unshorten_twitter
2024-04-13 22:41:22 +00:00
2024-04-14 01:03:20 +00:00
UNSHORTEN = {
2024-04-14 00:15:11 +00:00
't.co': unshorten_twitter
}
2024-04-13 22:41:22 +00:00
app = FastAPI(docs_url=None, redoc_url=None)
app.add_middleware(
CORSMiddleware,
allow_origins=["*"],
2024-04-13 23:40:20 +00:00
allow_credentials=False,
allow_methods=["GET"],
allow_headers=["*"]
2024-04-13 22:41:22 +00:00
)
@app.get('/')
2024-04-13 23:41:10 +00:00
async def receive_url(url: Optional[str] = None):
2024-04-14 00:39:03 +00:00
"""Receives a URL to unshorten"""
2024-04-13 22:41:22 +00:00
if url is None:
return {"error": "no url provided"}
domain = urlparse(url).netloc
2024-04-14 01:03:20 +00:00
if domain not in UNSHORTEN:
2024-04-14 00:15:11 +00:00
return {"error": f"cannot unshorten {domain}"}
2024-04-14 00:39:03 +00:00
2024-04-14 01:03:20 +00:00
return UNSHORTEN[domain](url)