Cache video CDN status

This commit is contained in:
MMaker 2025-02-27 11:12:42 -05:00
parent 8f222ff957
commit 1963ba53d9
Signed by: mmaker
GPG Key ID: CCE79B8FEDA40FB2

5
app.py
View File

@ -109,6 +109,8 @@ def download_and_upload_video(video_id, url, video_quality):
)
logger.info(f"Successfully uploaded video {video_id} to CDN")
if cache:
cache.set(f"{video_id}_uploaded", True, expire=CACHE_EXPIRATION_SECONDS)
# Clear cache for this video to ensure next view gets updated HTML
if cache:
@ -160,6 +162,9 @@ worker_thread.start()
def is_video_in_cdn(video_id):
"""Check if video exists in CDN"""
if cache and cache.get(f"{video_id}_uploaded"):
return True
if not s3_client:
return False