forked from rDrama/rDrama
1
0
Fork 0
master
Aevann1 2021-12-22 06:16:34 +02:00
parent a1bb58d847
commit 2b63e2dbb4
1 changed files with 9 additions and 8 deletions

View File

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