giphy: remove giphy
This commit is contained in:
parent
fd2b2f9380
commit
b6af1fd1f3
3 changed files with 0 additions and 26 deletions
|
@ -15,7 +15,6 @@ from .users import *
|
|||
from .votes import *
|
||||
from .feeds import *
|
||||
from .awards import *
|
||||
from .giphy import *
|
||||
from .volunteer import *
|
||||
if app.debug:
|
||||
from .dev import *
|
||||
|
|
|
@ -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())
|
|
@ -618,7 +618,6 @@ def thumbnail_thread(pid):
|
|||
|
||||
@app.post("/is_repost")
|
||||
def api_is_repost():
|
||||
|
||||
url = request.values.get('url')
|
||||
if not url: abort(400)
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue