Spaces:
Running
Running
File size: 10,622 Bytes
d44f790 1a3a89b d44f790 1a3a89b d44f790 63c8dab d44f790 17ef8a1 8d05140 63c8dab 8d05140 d44f790 7574917 8d05140 7574917 8d05140 7574917 8d05140 d44f790 8d05140 7574917 8d05140 7574917 17ef8a1 098389f 8d05140 7574917 0f15249 1a3a89b 7574917 8d05140 1a3a89b 8d05140 0f15249 8d05140 63c8dab 8d05140 1a3a89b 8d05140 0f15249 7574917 0f15249 7574917 8d05140 7574917 8d05140 7574917 8d05140 7574917 8d05140 7574917 8d05140 7574917 8d05140 1e60577 7574917 8d05140 1a3a89b 12a5c02 12b29e5 1a3a89b 63c8dab 1a3a89b 63c8dab 1a3a89b 63c8dab 1a3a89b 63c8dab 1a3a89b 63c8dab 1a3a89b 63c8dab 1a3a89b 63c8dab 1a3a89b 63c8dab 1a3a89b 63c8dab 7574917 63c8dab 7574917 d44f790 8d05140 7574917 8d05140 7574917 1a3a89b 7574917 1a3a89b 7574917 1a3a89b 7574917 1a3a89b 7574917 1a3a89b 7574917 1a3a89b 7574917 1a3a89b 7574917 1a3a89b d44f790 7574917 63c8dab 1a3a89b 63c8dab 1a3a89b 63c8dab 1a3a89b 63c8dab 1a3a89b 63c8dab | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 | import os
import sys
import subprocess
import importlib.util
import uuid
import json
from datetime import datetime
print("=" * 60)
print("π STARTING VIDEO PROJECT MANAGER")
print("=" * 60)
# Function to check and install packages
def ensure_package(package_name, import_name=None):
if import_name is None:
import_name = package_name
if importlib.util.find_spec(import_name) is None:
print(f"π¦ Installing {package_name}...")
try:
subprocess.check_call([sys.executable, "-m", "pip", "install", package_name, "--quiet"])
print(f"β
{package_name} installed successfully!")
return True
except Exception as e:
print(f"β Failed to install {package_name}: {e}")
return False
else:
print(f"β
{package_name} already installed")
return True
# Install required packages
ensure_package("gradio")
ensure_package("supabase")
ensure_package("python-dotenv")
ensure_package("fastapi")
ensure_package("uvicorn")
# Now import after ensuring they're installed
import gradio as gr
from supabase import create_client
from fastapi import FastAPI, Request
from fastapi.responses import JSONResponse
import uvicorn
from threading import Thread
import time
print("\n" + "=" * 60)
# =============================================
# SUPABASE CONNECTION
# =============================================
SUPABASE_URL = os.environ.get("SUPABASE_URL")
SUPABASE_KEY = os.environ.get("SUPABASE_KEY")
print(f"\nπ§ Supabase Configuration:")
print(f" URL: {'β
Set' if SUPABASE_URL else 'β Missing'}")
print(f" Key: {'β
Set' if SUPABASE_KEY else 'β Missing'}")
# Initialize Supabase client
supabase = None
if SUPABASE_URL and SUPABASE_KEY:
try:
supabase = create_client(SUPABASE_URL, SUPABASE_KEY)
print("β
Supabase client initialized successfully!")
# Test connection
try:
test_result = supabase.table("projects").select("count", count="exact").limit(1).execute()
print(f"β
Database connected! Projects found: {test_result.count}")
except Exception as e:
print(f"β οΈ Database connection test failed: {e}")
except Exception as e:
print(f"β Failed to connect to Supabase: {e}")
supabase = None
else:
print("β οΈ Supabase credentials missing - running in memory-only mode")
# =============================================
# CORE FUNCTIONS
# =============================================
def create_project(title, content, tags, image_prompt, channel):
"""Create a new project and save to Supabase"""
print(f"\nπ Creating project: {title}")
try:
# Generate proper UUID
project_id = str(uuid.uuid4())
folder_name = title.lower().replace(' ', '_').replace('/', '-')[:20]
project_data = {
"project_id": project_id,
"folder_name": folder_name,
"title": title,
"content": content[:5000],
"tags": tags,
"image_prompt": image_prompt,
"channel_details": channel,
"status": "created",
"created_at": datetime.now().isoformat()
}
print(f"πΎ Saving project with UUID: {project_id}")
if supabase:
result = supabase.table("projects").insert(project_data).execute()
print(f"β
Saved to database!")
return {
"status": "success",
"project_id": project_id,
"folder": folder_name,
"title": title,
"message": "Project created successfully in database!"
}
else:
return {
"status": "memory_only",
"project_id": project_id,
"folder": folder_name,
"title": title,
"message": "Project created in memory only (no database)"
}
except Exception as e:
print(f"β Error: {e}")
return {"status": "error", "message": str(e)}
def search_projects(term):
"""Search for projects in Supabase"""
print(f"\nπ Searching for: {term}")
if not supabase:
return [
["Demo Project 1", "memory", datetime.now().strftime("%Y-%m-%d"), "demo_1"],
]
try:
if term and term.strip():
result = supabase.table("projects")\
.select("title, status, created_at, folder_name")\
.ilike("title", f"%{term}%")\
.limit(20)\
.execute()
else:
result = supabase.table("projects")\
.select("title, status, created_at, folder_name")\
.limit(20)\
.order("created_at", desc=True)\
.execute()
projects = []
for p in result.data:
created = p.get("created_at", "")
if created and len(created) > 10:
created = created[:10]
projects.append([
p.get("title", "Untitled"),
p.get("status", "unknown"),
created,
p.get("folder_name", "")
])
return projects if projects else [["No projects found", "", "", ""]]
except Exception as e:
print(f"β Search error: {e}")
return [["Error", str(e)[:50], "", ""]]
def health_check():
"""Check system health"""
return {
"status": "healthy",
"supabase_connected": bool(supabase),
"timestamp": datetime.now().isoformat()
}
# =============================================
# CREATE FASTAPI APP
# =============================================
app = FastAPI()
@app.post("/api/create")
async def api_create(request: Request):
"""Direct API endpoint for creating projects"""
try:
data = await request.json()
if "data" in data and len(data["data"]) >= 5:
result = create_project(
data["data"][0],
data["data"][1],
data["data"][2],
data["data"][3],
data["data"][4]
)
return JSONResponse(content=result)
else:
return JSONResponse(
status_code=400,
content={"error": "Invalid data format. Expected: {\"data\": [title, content, tags, prompt, channel]}"}
)
except Exception as e:
return JSONResponse(
status_code=500,
content={"error": str(e)}
)
@app.post("/api/health")
async def api_health():
"""Health check endpoint"""
return JSONResponse(content=health_check())
@app.post("/api/search")
async def api_search(request: Request):
"""Search endpoint"""
try:
data = await request.json()
term = data.get("data", [""])[0] if data.get("data") else ""
result = search_projects(term)
return JSONResponse(content={"results": result})
except Exception as e:
return JSONResponse(
status_code=500,
content={"error": str(e)}
)
@app.get("/")
async def root():
"""Root endpoint redirects to Gradio"""
return {"message": "Video Project Manager API. Use /api/ endpoints. Access UI at /gradio"}
# =============================================
# MOUNT GRADIO APP TO FASTAPI
# =============================================
print("\nπ Creating Gradio interface...")
with gr.Blocks(title="Video Project Manager") as demo:
gr.Markdown("# π¬ Video Project Manager")
if supabase:
gr.Markdown("### β
Connected to Supabase")
else:
gr.Markdown("### β οΈ Running in Memory Mode (No Database)")
with gr.Tabs():
with gr.TabItem("π Create Project"):
with gr.Row():
with gr.Column():
title_input = gr.Textbox(label="Title", placeholder="Enter video title")
content_input = gr.Textbox(label="Content", lines=3, placeholder="Enter TTS content")
tags_input = gr.Textbox(label="Tags", placeholder="tag1, tag2, tag3")
image_input = gr.Textbox(label="Image Prompt", lines=2, placeholder="Describe images")
channel_input = gr.Textbox(label="Channel Details", value='{"platform": "youtube"}')
create_btn = gr.Button("π Create Project", variant="primary")
with gr.Column():
output = gr.JSON(label="Result")
with gr.TabItem("π Search"):
search_input = gr.Textbox(label="Search Term", placeholder="Enter search term")
search_btn = gr.Button("π Search", variant="secondary")
results = gr.Dataframe(
headers=["Title", "Status", "Date", "Folder"],
label="Search Results"
)
with gr.TabItem("π API Info"):
gr.Markdown("""
## API Endpoints
### Create Project
```bash
curl -X POST "https://yukee1992-video-project-manager.hf.space/api/create" \\
-H "Content-Type: application/json" \\
-d '{"data": ["Title", "Content", "tags", "prompt", "{}"]}'
```
### Health Check
```bash
curl -X POST "https://yukee1992-video-project-manager.hf.space/api/health" \\
-H "Content-Type: application/json" \\
-d '{}'
```
""")
# Gradio event handlers
create_btn.click(
fn=create_project,
inputs=[title_input, content_input, tags_input, image_input, channel_input],
outputs=[output]
)
search_btn.click(
fn=search_projects,
inputs=[search_input],
outputs=[results]
)
print("β
Gradio interface created")
# Mount Gradio app to FastAPI
app = gr.mount_gradio_app(app, demo, path="/")
# =============================================
# RUN
# =============================================
if __name__ == "__main__":
print("\n" + "=" * 60)
print("π Starting server on port 7860...")
print(" - UI: https://yukee1992-video-project-manager.hf.space")
print(" - API: https://yukee1992-video-project-manager.hf.space/api/")
print(" - Endpoints: /api/create, /api/health, /api/search")
print("=" * 60)
uvicorn.run(app, host="0.0.0.0", port=7860) |