This commit is contained in:
MMaker 2025-02-25 18:21:29 -05:00
parent c456200ae0
commit 77f9545db6
Signed by: mmaker
GPG Key ID: CCE79B8FEDA40FB2

11
app.py
View File

@ -219,8 +219,11 @@ def get_oembed_url(params):
if not params:
return None
author_id = params.get('owner', {}).get('id')
author_name = params.get('owner', {}).get('nickname')
author_id = None
author_name = None
if params.get('owner'):
author_id = params['owner'].get('id')
author_name = params['owner'].get('nickname')
video_id = params.get('video', {}).get('id')
if not video_id:
@ -232,12 +235,12 @@ def get_oembed_url(params):
mylist_count = human_format(params.get('video', {}).get('count', {}).get('mylist')) or "n/a"
provder_stats = f"👁️ {view_count} 💬 {comment_count} ❤️ {like_count} 📝 {mylist_count}"
author_name_encoded = urllib.parse.quote(author_name)
author_name_encoded = urllib.parse.quote(author_name) if author_name else ""
provider_stats_encoded = urllib.parse.quote(provder_stats)
oembed_url = (
f"{HOST}/owoembed?"
f"author_id={author_id}&"
f"author_id={author_id if author_id else ''}&"
f"author_name={author_name_encoded}&"
f"video_id={video_id}&"
f"provider={provider_stats_encoded}"