fix add video for local files
Some checks failed
Build Docker Image / build (push) Has been cancelled

This commit is contained in:
sudacode 2025-02-26 15:30:53 -08:00
parent ce605006f5
commit 0b00dc5ddf
Signed by: sudacode
SSH Key Fingerprint: SHA256:lT5C2bB398DcX6daCF/gYFNSTK3y+Du3oTGUnYzfTEw

View File

@ -6,7 +6,6 @@ from urllib.parse import urlparse
from flask import Blueprint, abort, current_app, g, jsonify, request
from sqlalchemy import inspect
from sqlalchemy.exc import SQLAlchemyError
from yt_dlp import YoutubeDL
from app.database import get_db_session
from app.models import SavedQueue, WatchHistory
@ -69,10 +68,31 @@ def add_video():
current_app.logger.error("Missing video_url field")
return jsonify(message="Missing video_url field"), 400
video_url = data.get("video_url")
# Check if it's a local directory or file path (not starting with http/https)
is_local_path = not video_url.startswith("http://") and not video_url.startswith(
"https://"
)
if is_local_path:
current_app.logger.info(f"Processing local path: {video_url}")
# Create basic metadata for local path
sanitized_data = {
"video_url": video_url,
"video_name": video_url.split("/")[-1] or "Local Directory",
"channel_url": "local://",
"channel_name": "Local Media",
"category": "Local",
"view_count": 0,
"subscribers": 0,
"thumbnail_url": "",
"upload_date": None,
}
else:
# Regular YouTube URL processing
# Validate video URL format and allowed domains
if not is_valid_url(
data.get("video_url"), allowed_domains=["youtube.com", "youtu.be"]
):
if not is_valid_url(video_url, allowed_domains=["youtube.com", "youtu.be"]):
current_app.logger.error("Invalid video URL format or domain")
return jsonify(message="Invalid video URL"), 400
@ -81,7 +101,7 @@ def add_video():
current_app.logger.info(
"Only video_url provided. Fetching additional information..."
)
video_info = fetch_video_info(data["video_url"])
video_info = fetch_video_info(video_url)
if not video_info:
return jsonify(message="Failed to fetch video information"), 400
@ -91,7 +111,8 @@ def add_video():
# Validate all required fields exist
if not all(
k in data for k in ["video_url", "video_name", "channel_url", "channel_name"]
k in data
for k in ["video_url", "video_name", "channel_url", "channel_name"]
):
current_app.logger.error("Missing required fields after fetching")
return jsonify(message="Missing required fields"), 400