Found the real cache issue :^)
This commit is contained in:
parent
c3ceb007f3
commit
4ac1fba240
21
app.py
21
app.py
@ -114,12 +114,11 @@ def download_and_upload_video(video_id, url, video_quality):
|
|||||||
)
|
)
|
||||||
|
|
||||||
logger.info(f"Successfully uploaded video {video_id} to CDN")
|
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 is not None:
|
||||||
if cache:
|
cache.set(f"{video_id}_uploaded", True, expire=CACHE_EXPIRATION_SECONDS)
|
||||||
cache.delete(video_id)
|
# Clear HTML cache for this video to ensure next view gets updated HTML
|
||||||
|
cache.delete(f"{video_id}_html")
|
||||||
logger.info(f"Cleared cache for video ID: {video_id}")
|
logger.info(f"Cleared cache for video ID: {video_id}")
|
||||||
|
|
||||||
return True
|
return True
|
||||||
@ -167,7 +166,7 @@ worker_thread.start()
|
|||||||
|
|
||||||
def is_video_in_cdn(video_id):
|
def is_video_in_cdn(video_id):
|
||||||
"""Check if video exists in CDN"""
|
"""Check if video exists in CDN"""
|
||||||
if cache and cache.get(f"{video_id}_uploaded"):
|
if cache is not None and cache.get(f"{video_id}_uploaded"):
|
||||||
logger.info(f"Video {video_id} is already uploaded to CDN (cached)")
|
logger.info(f"Video {video_id} is already uploaded to CDN (cached)")
|
||||||
return True
|
return True
|
||||||
|
|
||||||
@ -282,9 +281,9 @@ def get_oembed_url(params):
|
|||||||
def proxy(video_id):
|
def proxy(video_id):
|
||||||
logger.info(f"Received request for video ID: {video_id}")
|
logger.info(f"Received request for video ID: {video_id}")
|
||||||
|
|
||||||
if cache:
|
if cache is not None:
|
||||||
logging.info(f"Checking cache for video ID: {video_id}")
|
logging.info(f"Checking cache for video ID: {video_id}")
|
||||||
cached_html = cache.get(video_id)
|
cached_html = cache.get(f"{video_id}_html")
|
||||||
if cached_html is not None:
|
if cached_html is not None:
|
||||||
logger.info(f"Using cached response for video ID: {video_id}")
|
logger.info(f"Using cached response for video ID: {video_id}")
|
||||||
return Response(cached_html, mimetype="text/html") # type: ignore
|
return Response(cached_html, mimetype="text/html") # type: ignore
|
||||||
@ -311,7 +310,7 @@ def proxy(video_id):
|
|||||||
download_allowed = allow_download(params) if params else False
|
download_allowed = allow_download(params) if params else False
|
||||||
request_user_agent = request.headers.get('User-Agent', '').lower()
|
request_user_agent = request.headers.get('User-Agent', '').lower()
|
||||||
if download_allowed and 'discordbot' not in request_user_agent:
|
if download_allowed and 'discordbot' not in request_user_agent:
|
||||||
logger.info(f"Download ignored for video ID {video_id} due to user agent ({request_user_agent})")
|
logger.info(f"Video download ignored for {video_id} due to user agent ({request_user_agent})")
|
||||||
download_allowed = False
|
download_allowed = False
|
||||||
video_quality = get_video_quality(params) if params else None
|
video_quality = get_video_quality(params) if params else None
|
||||||
if download_allowed and video_quality is not None:
|
if download_allowed and video_quality is not None:
|
||||||
@ -360,9 +359,9 @@ if you want to download videos, please consider using a tool like nndownload: ht
|
|||||||
{og_tags_str}
|
{og_tags_str}
|
||||||
</head><body></body></html>"""
|
</head><body></body></html>"""
|
||||||
|
|
||||||
if cache:
|
if cache is not None:
|
||||||
logging.info(f"Caching response for video ID: {video_id}")
|
logging.info(f"Caching response for video ID: {video_id}")
|
||||||
cache.set(video_id, html_response, expire=CACHE_EXPIRATION_SECONDS)
|
cache.set(f"{video_id}_html", html_response, expire=CACHE_EXPIRATION_SECONDS)
|
||||||
|
|
||||||
logging.info(f"Returning response for video ID: {video_id}")
|
logging.info(f"Returning response for video ID: {video_id}")
|
||||||
return Response(html_response, mimetype="text/html")
|
return Response(html_response, mimetype="text/html")
|
||||||
|
Loading…
x
Reference in New Issue
Block a user