giphy: remove giphy

This commit is contained in:
justcool393 2023-01-20 01:57:01 -06:00 committed by Ben Rog-Wilhelm
parent fd2b2f9380
commit b6af1fd1f3
3 changed files with 0 additions and 26 deletions

View file

@ -15,7 +15,6 @@ from .users import *
from .votes import * from .votes import *
from .feeds import * from .feeds import *
from .awards import * from .awards import *
from .giphy import *
from .volunteer import * from .volunteer import *
if app.debug: if app.debug:
from .dev import * from .dev import *

View file

@ -1,24 +0,0 @@
from flask import *
from os import environ
import requests
from files.helpers.wrappers import *
from files.__main__ import app
GIPHY_KEY = environ.get('GIPHY_KEY').rstrip()
@app.get("/giphy")
@app.get("/giphy<path>")
@auth_required
def giphy(v=None, path=None):
searchTerm = request.values.get("searchTerm", "").strip()
limit = int(request.values.get("limit", 48))
if searchTerm and limit:
url = f"https://api.giphy.com/v1/gifs/search?q={searchTerm}&api_key={GIPHY_KEY}&limit={limit}"
elif searchTerm and not limit:
url = f"https://api.giphy.com/v1/gifs/search?q={searchTerm}&api_key={GIPHY_KEY}&limit=48"
else:
url = f"https://api.giphy.com/v1/gifs?api_key={GIPHY_KEY}&limit=48"
return jsonify(requests.get(url, timeout=5).json())

View file

@ -618,7 +618,6 @@ def thumbnail_thread(pid):
@app.post("/is_repost") @app.post("/is_repost")
def api_is_repost(): def api_is_repost():
url = request.values.get('url') url = request.values.get('url')
if not url: abort(400) if not url: abort(400)