diff --git a/iwm_browser/main.py b/iwm_browser/main.py index e27485d..40659f9 100644 --- a/iwm_browser/main.py +++ b/iwm_browser/main.py @@ -279,31 +279,6 @@ async def showUser(user_id: int): THUMB_URL=THUMB_URL, ) -@app.get("/embed/level/{level_id}", response_class=HTMLResponse) -async def embed_level(level_id: int): - template = template_env.get_template("levelCard_embed.html") - - try: - rq = httpx.get(BASE_URL + "/api/v1/map/" + str(level_id), timeout=10, proxies=PROXIES) - if rq.status_code == 503: - return error_template.render(reason="Server is unavailable right now") - searchResults = rq.json() - print(rq.url) - except httpx.ReadTimeout: - return error_template.render(reason="Server timed out") - except json.decoder.JSONDecodeError: - return error_template.render( - reason="Failed to parse server response.", details=rq.text - ) - except Exception as exc: - print(exc) - return error_template.render(reason="Uncaught exception", details=exc) - - return template.render( - map=searchResults, - THUMB_URL=THUMB_URL, - ) - def start(): """Launched with `poetry run start` at root level""" diff --git a/iwm_browser/templates/levelCard_embed.html b/iwm_browser/templates/levelCard_embed.html deleted file mode 100644 index 99ed4f3..0000000 --- a/iwm_browser/templates/levelCard_embed.html +++ /dev/null @@ -1,27 +0,0 @@ - - - - IWM Browser - - - - - - - - - {% include "levelCard.html" %} - - diff --git a/iwm_browser/templates/searchBar.html b/iwm_browser/templates/searchBar.html index fd8a122..d535c84 100644 --- a/iwm_browser/templates/searchBar.html +++ b/iwm_browser/templates/searchBar.html @@ -1,9 +1,7 @@