From 20f1e4d9c2fbf5c80149b617c0bf32147a024480 Mon Sep 17 00:00:00 2001 From: Aevann1 Date: Thu, 6 Jan 2022 19:57:59 +0200 Subject: [PATCH] webm fix --- files/routes/comments.py | 2 ++ files/routes/posts.py | 4 +++- files/routes/settings.py | 1 + 3 files changed, 6 insertions(+), 1 deletion(-) diff --git a/files/routes/comments.py b/files/routes/comments.py index 1273af972..c7d7c5692 100644 --- a/files/routes/comments.py +++ b/files/routes/comments.py @@ -206,6 +206,7 @@ def api_comment(v): with open("video.mp4", 'rb') as f: try: url = requests.request("POST", "https://api.imgur.com/3/upload", headers={'Authorization': f'Client-ID {IMGUR_KEY}'}, files=[('video', f)]).json()['data']['link'] except: return {"error": "Imgur error"}, 400 + if url.endswith('.'): url += 'mp4' body += f"\n\n{url}" else: return {"error": f"Image/Video files only"}, 400 @@ -706,6 +707,7 @@ def edit_comment(cid, v): with open("video.mp4", 'rb') as f: try: url = requests.request("POST", "https://api.imgur.com/3/upload", headers={'Authorization': f'Client-ID {IMGUR_KEY}'}, files=[('video', f)]).json()['data']['link'] except: return {"error": "Imgur error"}, 400 + if url.endswith('.'): url += 'mp4' body += f"\n\n{url}" else: return {"error": f"Image/Video files only"}, 400 diff --git a/files/routes/posts.py b/files/routes/posts.py index 47960107a..dda9e3606 100644 --- a/files/routes/posts.py +++ b/files/routes/posts.py @@ -85,7 +85,6 @@ def publish(pid, v): @app.get("/submit") @auth_required def submit_get(v): - if not v or v.oldsite: template = '' else: template = 'CHRISTMAS/' return render_template(f"{template}submit.html", @@ -452,6 +451,7 @@ def edit_post(pid, v): with open("video.mp4", 'rb') as f: try: url = requests.request("POST", "https://api.imgur.com/3/upload", headers={'Authorization': f'Client-ID {IMGUR_KEY}'}, files=[('video', f)]).json()['data']['link'] except: return {"error": "Imgur error"}, 400 + if url.endswith('.'): url += 'mp4' body += f"\n\n{url}" else: return {"error": f"Image/Video files only"}, 400 @@ -944,6 +944,7 @@ def submit_post(v): with open("video.mp4", 'rb') as f: try: url = requests.request("POST", "https://api.imgur.com/3/upload", headers={'Authorization': f'Client-ID {IMGUR_KEY}'}, files=[('video', f)]).json()['data']['link'] except: return {"error": "Imgur error"}, 400 + if url.endswith('.'): url += 'mp4' body += f"\n\n{url}" else: if request.headers.get("Authorization"): return {"error": f"Image/Video files only"}, 400 @@ -1040,6 +1041,7 @@ def submit_post(v): with open("video.mp4", 'rb') as f: try: url = requests.request("POST", "https://api.imgur.com/3/upload", headers={'Authorization': f'Client-ID {IMGUR_KEY}'}, files=[('video', f)]).json()['data']['link'] except: return {"error": "Imgur error"}, 400 + if url.endswith('.'): url += 'mp4' new_post.url = url else: if request.headers.get("Authorization"): return {"error": f"File type not allowed"}, 400 diff --git a/files/routes/settings.py b/files/routes/settings.py index 381867d3f..fd40a41d0 100644 --- a/files/routes/settings.py +++ b/files/routes/settings.py @@ -303,6 +303,7 @@ def settings_profile_post(v): with open("video.mp4", 'rb') as f: try: url = requests.request("POST", "https://api.imgur.com/3/upload", headers={'Authorization': f'Client-ID {IMGUR_KEY}'}, files=[('video', f)]).json()['data']['link'] except: return {"error": "Imgur error"}, 400 + if url.endswith('.'): url += 'mp4' bio += f"\n\n{url}" else: if request.headers.get("Authorization"): return {"error": f"Image/Video files only"}, 400