forked from rDrama/rDrama
1
0
Fork 0

Merge branch 'frost' into dasher

master
kek7198 2021-12-21 22:25:44 -06:00
commit d8c4075f17
2 changed files with 10 additions and 9 deletions

View File

@ -58,7 +58,7 @@ app.config["RATELIMIT_ENABLED"] = True
app.config["RATELIMIT_DEFAULTS_DEDUCT_WHEN"]=lambda:True
app.config["RATELIMIT_DEFAULTS_EXEMPT_WHEN"]=lambda:False
app.config["RATELIMIT_HEADERS_ENABLED"]=True
app.config["CACHE_TYPE"] = "filesystem"
app.config["CACHE_TYPE"] = "redis"
app.config["CACHE_DIR"] = "cache"
app.config["RATELIMIT_STORAGE_URL"] = environ.get("REDIS_URL", "redis://localhost")
app.config['MAIL_SERVER'] = 'smtp.gmail.com'

View File

@ -577,18 +577,19 @@ def edit_post(pid, v):
@auth_required
def get_post_title(v):
url = request.values.get("url", None)
if not url: abort(400)
abort(400)
# url = request.values.get("url", None)
# if not url: abort(400)
try: x = requests.get(url, headers=titleheaders, timeout=5)
except: abort(400)
# try: x = requests.get(url, headers=titleheaders, timeout=5)
# except: abort(400)
soup = BeautifulSoup(x.content, 'html.parser')
# soup = BeautifulSoup(x.content, 'html.parser')
title = soup.find('title')
if not title: abort(400)
# title = soup.find('title')
# if not title: abort(400)
return {"url": url, "title": title.string}
# return {"url": url, "title": title.string}
def archiveorg(url):