Compare commits
11 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| c00d6100c2 | |||
| 86f18cc410 | |||
| 254c391c89 | |||
| a0631c6280 | |||
| 1806e0823f | |||
| ea5a0004da | |||
| e3d3df9ecb | |||
| a14210c458 | |||
| f0b129a27e | |||
| 9ddc0d9eb2 | |||
| 834e21b331 |
+31
@@ -0,0 +1,31 @@
|
|||||||
|
# Timezone
|
||||||
|
TZ=Asia/Tokyo
|
||||||
|
|
||||||
|
# Enable authentication (required)
|
||||||
|
# 1 = enabled, 0 = disabled
|
||||||
|
PLEXPLAYLISTSYNC_AUTH_ENABLED=1
|
||||||
|
|
||||||
|
# Login username/password (required if auth enabled)
|
||||||
|
PLEXPLAYLISTSYNC_AUTH_USERNAME=USERNAME
|
||||||
|
PLEXPLAYLISTSYNC_AUTH_PASSWORD=CHANGE_PASSWORD
|
||||||
|
|
||||||
|
# Strongly recommended: stable token signing secret (or tokens will become invalid after container restart)
|
||||||
|
# Use a sufficiently long random string
|
||||||
|
PLEXPLAYLISTSYNC_AUTH_TOKEN_SECRET=REPLACE_WITH_A_RANDOM_STRING
|
||||||
|
|
||||||
|
# Token TTL seconds (optional)
|
||||||
|
PLEXPLAYLISTSYNC_AUTH_TOKEN_TTL_SECONDS=86400
|
||||||
|
|
||||||
|
# CORS allowlist (optional)
|
||||||
|
# Default is empty (CORS disabled; same-origin only).
|
||||||
|
# Accepts comma-separated list or a JSON array.
|
||||||
|
# Example:
|
||||||
|
# PLEXPLAYLISTSYNC_CORS_ALLOWED_ORIGINS=http://localhost:5173,http://127.0.0.1:5173
|
||||||
|
# or
|
||||||
|
# PLEXPLAYLISTSYNC_CORS_ALLOWED_ORIGINS=["https://your.domain"]
|
||||||
|
PLEXPLAYLISTSYNC_CORS_ALLOWED_ORIGINS=
|
||||||
|
|
||||||
|
# Allow cookies/credentials for allowlisted origins (optional)
|
||||||
|
# 1 = enabled, 0 = disabled
|
||||||
|
# Note: if origins contains '*', credentials will be forced off.
|
||||||
|
PLEXPLAYLISTSYNC_CORS_ALLOW_CREDENTIALS=0
|
||||||
+11
@@ -62,6 +62,9 @@ local_settings.py
|
|||||||
db.sqlite3
|
db.sqlite3
|
||||||
db.sqlite3-journal
|
db.sqlite3-journal
|
||||||
|
|
||||||
|
# App runtime logs
|
||||||
|
app/logs/
|
||||||
|
|
||||||
# Flask stuff:
|
# Flask stuff:
|
||||||
instance/
|
instance/
|
||||||
.webassets-cache
|
.webassets-cache
|
||||||
@@ -176,3 +179,11 @@ cython_debug/
|
|||||||
|
|
||||||
# Built Visual Studio Code Extensions
|
# Built Visual Studio Code Extensions
|
||||||
*.vsix
|
*.vsix
|
||||||
|
|
||||||
|
# data
|
||||||
|
data/*
|
||||||
|
playlists/*
|
||||||
|
docker-compose.yml
|
||||||
|
|
||||||
|
# Local dev config may contain Plex token
|
||||||
|
app/config.json
|
||||||
@@ -1,28 +0,0 @@
|
|||||||
{
|
|
||||||
"theme": "auto",
|
|
||||||
"token": "",
|
|
||||||
"server_url": "",
|
|
||||||
"server_scheme": "http",
|
|
||||||
"server_port": "32400",
|
|
||||||
"timeout": 9,
|
|
||||||
"library_name": "",
|
|
||||||
"sync_mode": "local_force",
|
|
||||||
"local_path": "playlists",
|
|
||||||
"path_rules": [],
|
|
||||||
"path_mapping": {
|
|
||||||
"mode": "SIMPLE",
|
|
||||||
"simple": [],
|
|
||||||
"regex": {
|
|
||||||
"local_pre": [],
|
|
||||||
"local_post": [],
|
|
||||||
"remote_pre": [],
|
|
||||||
"remote_post": []
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"schedule_mode": "DISABLED",
|
|
||||||
"schedule_cron": "",
|
|
||||||
"schedule_daily_time": "00:00",
|
|
||||||
"schedule_weekly_days": [0],
|
|
||||||
"schedule_weekly_time": "00:00",
|
|
||||||
"schedule_auto_watch": false
|
|
||||||
}
|
|
||||||
+147
-20
@@ -1,11 +1,12 @@
|
|||||||
import os
|
import os
|
||||||
|
import json
|
||||||
from datetime import datetime
|
from datetime import datetime
|
||||||
from typing import Sequence
|
from typing import Sequence
|
||||||
|
|
||||||
from fastapi import FastAPI, Form, HTTPException, Query, Request
|
from fastapi import FastAPI, Form, HTTPException, Query, Request
|
||||||
from fastapi.middleware.cors import CORSMiddleware
|
from fastapi.middleware.cors import CORSMiddleware
|
||||||
import asyncio
|
import asyncio
|
||||||
from fastapi.responses import FileResponse, HTMLResponse, RedirectResponse, StreamingResponse
|
from fastapi.responses import FileResponse, HTMLResponse, RedirectResponse, StreamingResponse, JSONResponse
|
||||||
from fastapi.staticfiles import StaticFiles
|
from fastapi.staticfiles import StaticFiles
|
||||||
from fastapi.templating import Jinja2Templates
|
from fastapi.templating import Jinja2Templates
|
||||||
from pydantic import BaseModel, Field
|
from pydantic import BaseModel, Field
|
||||||
@@ -13,13 +14,137 @@ from pydantic import BaseModel, Field
|
|||||||
from app.utils.config import server_config
|
from app.utils.config import server_config
|
||||||
from app.utils.local_playlist import load_local_playlist, scan_local_playlists
|
from app.utils.local_playlist import load_local_playlist, scan_local_playlists
|
||||||
from app.utils.logger import logger
|
from app.utils.logger import logger
|
||||||
from app.utils.playlist_merge import SyncMode, TEST_PLAYLIST_DIR, sync_all_playlists
|
from app.utils.playlist_merge import SyncMode, SYNC_ARTIFACTS_DIR, sync_all_playlists
|
||||||
from app.utils.plex_client import plex_client
|
from app.utils.plex_client import plex_client
|
||||||
from app.utils.scheduler import start_scheduler, update_scheduler_job, get_next_run_time, validate_cron_expression
|
from app.utils.scheduler import start_scheduler, update_scheduler_job, get_next_run_time, validate_cron_expression
|
||||||
from app.utils.sync_manager import sync_manager
|
from app.utils.sync_manager import sync_manager
|
||||||
|
from app.utils.auth import load_auth_config, issue_token, verify_token
|
||||||
|
|
||||||
app = FastAPI()
|
app = FastAPI()
|
||||||
|
|
||||||
|
|
||||||
|
def _parse_cors_allowed_origins(raw: str | None) -> list[str]:
|
||||||
|
if not raw:
|
||||||
|
return []
|
||||||
|
|
||||||
|
value = raw.strip()
|
||||||
|
if not value:
|
||||||
|
return []
|
||||||
|
|
||||||
|
if value == "*":
|
||||||
|
return ["*"]
|
||||||
|
|
||||||
|
try:
|
||||||
|
if value.startswith("["):
|
||||||
|
parsed = json.loads(value)
|
||||||
|
if isinstance(parsed, list):
|
||||||
|
origins = [str(item).strip() for item in parsed]
|
||||||
|
else:
|
||||||
|
origins = [str(parsed).strip()]
|
||||||
|
else:
|
||||||
|
origins = [part.strip() for part in value.split(",")]
|
||||||
|
except Exception:
|
||||||
|
logger.warning(
|
||||||
|
"Invalid PLEXPLAYLISTSYNC_CORS_ALLOWED_ORIGINS; CORS will be disabled."
|
||||||
|
)
|
||||||
|
return []
|
||||||
|
|
||||||
|
return [origin for origin in origins if origin]
|
||||||
|
|
||||||
|
|
||||||
|
def _env_truthy(name: str, default: str = "0") -> bool:
|
||||||
|
value = os.getenv(name, default)
|
||||||
|
return str(value).strip().lower() in {"1", "true", "yes", "y", "on"}
|
||||||
|
|
||||||
|
|
||||||
|
_CORS_ALLOWED_ORIGINS = _parse_cors_allowed_origins(
|
||||||
|
os.getenv("PLEXPLAYLISTSYNC_CORS_ALLOWED_ORIGINS", "")
|
||||||
|
)
|
||||||
|
_CORS_ALLOW_CREDENTIALS = (
|
||||||
|
False
|
||||||
|
if "*" in _CORS_ALLOWED_ORIGINS
|
||||||
|
else _env_truthy("PLEXPLAYLISTSYNC_CORS_ALLOW_CREDENTIALS", "0")
|
||||||
|
)
|
||||||
|
|
||||||
|
# --- Optional API Authentication (username/password) ---
|
||||||
|
AUTH_CONFIG = load_auth_config()
|
||||||
|
|
||||||
|
|
||||||
|
class LoginPayload(BaseModel):
|
||||||
|
username: str
|
||||||
|
password: str
|
||||||
|
|
||||||
|
|
||||||
|
@app.get("/api/auth/config")
|
||||||
|
async def get_auth_config():
|
||||||
|
return {"enabled": AUTH_CONFIG.enabled}
|
||||||
|
|
||||||
|
|
||||||
|
@app.post("/api/auth/login")
|
||||||
|
async def api_login(payload: LoginPayload):
|
||||||
|
if not AUTH_CONFIG.enabled:
|
||||||
|
raise HTTPException(status_code=400, detail="Authentication is disabled")
|
||||||
|
|
||||||
|
if payload.username != AUTH_CONFIG.username or payload.password != AUTH_CONFIG.password:
|
||||||
|
raise HTTPException(status_code=401, detail="Invalid credentials")
|
||||||
|
|
||||||
|
token = issue_token(AUTH_CONFIG, payload.username)
|
||||||
|
return {
|
||||||
|
"token": token,
|
||||||
|
"username": payload.username,
|
||||||
|
"expires_in": AUTH_CONFIG.token_ttl_seconds,
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@app.get("/api/auth/me")
|
||||||
|
async def api_me(request: Request):
|
||||||
|
if not AUTH_CONFIG.enabled:
|
||||||
|
return {"username": ""}
|
||||||
|
|
||||||
|
auth_header = request.headers.get("authorization", "")
|
||||||
|
if auth_header.lower().startswith("bearer "):
|
||||||
|
token = auth_header.split(" ", 1)[1].strip()
|
||||||
|
else:
|
||||||
|
token = ""
|
||||||
|
|
||||||
|
payload = verify_token(AUTH_CONFIG, token) if token else None
|
||||||
|
if not payload:
|
||||||
|
raise HTTPException(status_code=401, detail="Unauthorized")
|
||||||
|
return {"username": payload.get("u", "")}
|
||||||
|
|
||||||
|
|
||||||
|
@app.post("/api/auth/logout")
|
||||||
|
async def api_logout():
|
||||||
|
# Stateless token auth; client clears token.
|
||||||
|
return {"status": "success"}
|
||||||
|
|
||||||
|
|
||||||
|
_AUTH_API_WHITELIST = {
|
||||||
|
"/api/auth/config",
|
||||||
|
"/api/auth/login",
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@app.middleware("http")
|
||||||
|
async def auth_middleware(request: Request, call_next):
|
||||||
|
if AUTH_CONFIG.enabled and request.url.path.startswith("/api"):
|
||||||
|
if request.method.upper() == "OPTIONS":
|
||||||
|
return await call_next(request)
|
||||||
|
if request.url.path not in _AUTH_API_WHITELIST:
|
||||||
|
auth_header = request.headers.get("authorization", "")
|
||||||
|
token = ""
|
||||||
|
if auth_header.lower().startswith("bearer "):
|
||||||
|
token = auth_header.split(" ", 1)[1].strip()
|
||||||
|
|
||||||
|
# For endpoints like EventSource(SSE) where custom headers are not available.
|
||||||
|
if not token:
|
||||||
|
token = request.query_params.get("access_token", "").strip()
|
||||||
|
|
||||||
|
if not token or not verify_token(AUTH_CONFIG, token):
|
||||||
|
return JSONResponse(status_code=401, content={"detail": "Unauthorized"})
|
||||||
|
|
||||||
|
return await call_next(request)
|
||||||
|
|
||||||
@app.on_event("startup")
|
@app.on_event("startup")
|
||||||
async def startup_event():
|
async def startup_event():
|
||||||
sync_manager.set_event_loop(asyncio.get_running_loop())
|
sync_manager.set_event_loop(asyncio.get_running_loop())
|
||||||
@@ -27,8 +152,8 @@ async def startup_event():
|
|||||||
|
|
||||||
app.add_middleware(
|
app.add_middleware(
|
||||||
CORSMiddleware,
|
CORSMiddleware,
|
||||||
allow_origins=["*"],
|
allow_origins=_CORS_ALLOWED_ORIGINS,
|
||||||
allow_credentials=True,
|
allow_credentials=_CORS_ALLOW_CREDENTIALS,
|
||||||
allow_methods=["*"],
|
allow_methods=["*"],
|
||||||
allow_headers=["*"],
|
allow_headers=["*"],
|
||||||
)
|
)
|
||||||
@@ -499,8 +624,8 @@ async def api_connect(payload: ConnectRequest):
|
|||||||
async def api_playlists(server: str = Query(..., pattern="(?i)^(local|cloud)$"), local_path: str | None = None):
|
async def api_playlists(server: str = Query(..., pattern="(?i)^(local|cloud)$"), local_path: str | None = None):
|
||||||
server_type = server.lower()
|
server_type = server.lower()
|
||||||
if server_type == "local":
|
if server_type == "local":
|
||||||
resolved_path = local_path or server_config.local_path
|
# local_path is intentionally fixed; ignore query overrides.
|
||||||
server_config.set_and_save_config(local_path=resolved_path)
|
resolved_path = server_config.local_path
|
||||||
playlists = _scan_local_playlists_with_meta(resolved_path)
|
playlists = _scan_local_playlists_with_meta(resolved_path)
|
||||||
return {"playlists": [item.model_dump() for item in playlists]}
|
return {"playlists": [item.model_dump() for item in playlists]}
|
||||||
|
|
||||||
@@ -542,7 +667,8 @@ async def api_sync(payload: SyncRequest):
|
|||||||
except ValueError as exc:
|
except ValueError as exc:
|
||||||
raise HTTPException(status_code=400, detail=str(exc))
|
raise HTTPException(status_code=400, detail=str(exc))
|
||||||
|
|
||||||
local_dir = payload.local_path or server_config.local_path
|
# local_path is intentionally fixed; ignore request overrides.
|
||||||
|
local_dir = server_config.local_path
|
||||||
|
|
||||||
# Use sync_manager to execute sync, ensuring state is updated
|
# Use sync_manager to execute sync, ensuring state is updated
|
||||||
try:
|
try:
|
||||||
@@ -567,7 +693,7 @@ async def api_sync(payload: SyncRequest):
|
|||||||
"conflict_count": conflict_count,
|
"conflict_count": conflict_count,
|
||||||
"delete_count": deleted_count,
|
"delete_count": deleted_count,
|
||||||
"playlist_count": len(results),
|
"playlist_count": len(results),
|
||||||
"output_dir": TEST_PLAYLIST_DIR,
|
"output_dir": SYNC_ARTIFACTS_DIR,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@@ -611,23 +737,24 @@ def _build_home_context(
|
|||||||
|
|
||||||
# 显示主页
|
# 显示主页
|
||||||
@app.get("/", response_class=HTMLResponse)
|
@app.get("/", response_class=HTMLResponse)
|
||||||
async def home(request: Request, local_path: str = "playlist"):
|
async def home(request: Request, local_path: str = "playlists"):
|
||||||
index_path = os.path.join(FRONTEND_DIST_PATH, "index.html")
|
index_path = os.path.join(FRONTEND_DIST_PATH, "index.html")
|
||||||
if os.path.exists(index_path):
|
if os.path.exists(index_path):
|
||||||
return FileResponse(index_path)
|
return FileResponse(index_path)
|
||||||
|
|
||||||
context = _build_home_context(request, local_path or server_config.local_path)
|
# local_path is intentionally fixed; ignore query overrides.
|
||||||
|
context = _build_home_context(request, server_config.local_path)
|
||||||
return templates.TemplateResponse("home.html", context)
|
return templates.TemplateResponse("home.html", context)
|
||||||
|
|
||||||
|
|
||||||
@app.post("/sync", response_class=HTMLResponse)
|
@app.post("/sync", response_class=HTMLResponse)
|
||||||
async def trigger_sync(request: Request, mode: str = Form(...), local_path: str = Form("playlist")):
|
async def trigger_sync(request: Request, mode: str = Form(...), local_path: str = Form("playlists")):
|
||||||
try:
|
try:
|
||||||
sync_mode = SyncMode(mode)
|
sync_mode = SyncMode(mode)
|
||||||
except ValueError:
|
except ValueError:
|
||||||
context = _build_home_context(
|
context = _build_home_context(
|
||||||
request,
|
request,
|
||||||
local_path,
|
server_config.local_path,
|
||||||
message=f"未知的同步策略:{mode}",
|
message=f"未知的同步策略:{mode}",
|
||||||
message_type="danger",
|
message_type="danger",
|
||||||
selected_mode=mode,
|
selected_mode=mode,
|
||||||
@@ -636,17 +763,17 @@ async def trigger_sync(request: Request, mode: str = Form(...), local_path: str
|
|||||||
|
|
||||||
try:
|
try:
|
||||||
results = sync_all_playlists(
|
results = sync_all_playlists(
|
||||||
local_dir=local_path,
|
local_dir=server_config.local_path,
|
||||||
mode=sync_mode,
|
mode=sync_mode,
|
||||||
test_folder=TEST_PLAYLIST_DIR,
|
test_folder=SYNC_ARTIFACTS_DIR,
|
||||||
)
|
)
|
||||||
merged_count = sum(len(item.merged_paths) for item in results)
|
merged_count = sum(len(item.merged_paths) for item in results)
|
||||||
conflict_count = sum(len(item.conflicts) for item in results)
|
conflict_count = sum(len(item.conflicts) for item in results)
|
||||||
deleted_count = sum(1 for item in results if item.action == "deleted")
|
deleted_count = sum(1 for item in results if item.action == "deleted")
|
||||||
context = _build_home_context(
|
context = _build_home_context(
|
||||||
request,
|
request,
|
||||||
local_path,
|
server_config.local_path,
|
||||||
message="同步完成,输出已写入测试目录用于验证。",
|
message="同步完成,输出已写入同步工作目录(Artifacts)。",
|
||||||
message_type="success",
|
message_type="success",
|
||||||
sync_result={
|
sync_result={
|
||||||
"mode": sync_mode.value,
|
"mode": sync_mode.value,
|
||||||
@@ -658,7 +785,7 @@ async def trigger_sync(request: Request, mode: str = Form(...), local_path: str
|
|||||||
"conflict_count": conflict_count,
|
"conflict_count": conflict_count,
|
||||||
"delete_count": deleted_count,
|
"delete_count": deleted_count,
|
||||||
"playlist_count": len(results),
|
"playlist_count": len(results),
|
||||||
"output_dir": TEST_PLAYLIST_DIR,
|
"output_dir": SYNC_ARTIFACTS_DIR,
|
||||||
},
|
},
|
||||||
selected_mode=sync_mode.value,
|
selected_mode=sync_mode.value,
|
||||||
)
|
)
|
||||||
@@ -667,7 +794,7 @@ async def trigger_sync(request: Request, mode: str = Form(...), local_path: str
|
|||||||
logger.warning(f"Sync failed: {exc}")
|
logger.warning(f"Sync failed: {exc}")
|
||||||
context = _build_home_context(
|
context = _build_home_context(
|
||||||
request,
|
request,
|
||||||
local_path,
|
server_config.local_path,
|
||||||
message=f"同步失败:{exc}",
|
message=f"同步失败:{exc}",
|
||||||
message_type="danger",
|
message_type="danger",
|
||||||
selected_mode=sync_mode.value,
|
selected_mode=sync_mode.value,
|
||||||
@@ -678,7 +805,7 @@ async def trigger_sync(request: Request, mode: str = Form(...), local_path: str
|
|||||||
@app.post("/path-rules", response_class=HTMLResponse)
|
@app.post("/path-rules", response_class=HTMLResponse)
|
||||||
async def save_path_rules(
|
async def save_path_rules(
|
||||||
request: Request,
|
request: Request,
|
||||||
local_path: str = Form("playlist"),
|
local_path: str = Form("playlists"),
|
||||||
pattern: list[str] | None = Form(None),
|
pattern: list[str] | None = Form(None),
|
||||||
replacement: list[str] | None = Form(None),
|
replacement: list[str] | None = Form(None),
|
||||||
):
|
):
|
||||||
@@ -696,7 +823,7 @@ async def save_path_rules(
|
|||||||
|
|
||||||
context = _build_home_context(
|
context = _build_home_context(
|
||||||
request,
|
request,
|
||||||
local_path,
|
server_config.local_path,
|
||||||
message="正则规则已保存并会在同步前应用。",
|
message="正则规则已保存并会在同步前应用。",
|
||||||
message_type="success",
|
message_type="success",
|
||||||
)
|
)
|
||||||
|
|||||||
@@ -0,0 +1,104 @@
|
|||||||
|
import base64
|
||||||
|
import hashlib
|
||||||
|
import hmac
|
||||||
|
import json
|
||||||
|
import os
|
||||||
|
import time
|
||||||
|
from dataclasses import dataclass
|
||||||
|
|
||||||
|
from app.utils.logger import logger
|
||||||
|
|
||||||
|
|
||||||
|
def _parse_bool(value: str | None, default: bool = False) -> bool:
|
||||||
|
if value is None:
|
||||||
|
return default
|
||||||
|
return value.strip().lower() in {"1", "true", "yes", "y", "on"}
|
||||||
|
|
||||||
|
|
||||||
|
def _b64url_encode(data: bytes) -> str:
|
||||||
|
return base64.urlsafe_b64encode(data).decode("utf-8").rstrip("=")
|
||||||
|
|
||||||
|
|
||||||
|
def _b64url_decode(data: str) -> bytes:
|
||||||
|
padding = "=" * (-len(data) % 4)
|
||||||
|
return base64.urlsafe_b64decode((data + padding).encode("utf-8"))
|
||||||
|
|
||||||
|
|
||||||
|
@dataclass(frozen=True)
|
||||||
|
class AuthConfig:
|
||||||
|
enabled: bool
|
||||||
|
username: str
|
||||||
|
password: str
|
||||||
|
token_secret: bytes
|
||||||
|
token_ttl_seconds: int
|
||||||
|
|
||||||
|
|
||||||
|
def load_auth_config() -> AuthConfig:
|
||||||
|
enabled = _parse_bool(os.environ.get("PLEXPLAYLISTSYNC_AUTH_ENABLED"), default=False)
|
||||||
|
username = os.environ.get("PLEXPLAYLISTSYNC_AUTH_USERNAME", "").strip()
|
||||||
|
password = os.environ.get("PLEXPLAYLISTSYNC_AUTH_PASSWORD", "")
|
||||||
|
ttl = int(os.environ.get("PLEXPLAYLISTSYNC_AUTH_TOKEN_TTL_SECONDS", "86400"))
|
||||||
|
ttl = max(60, ttl)
|
||||||
|
|
||||||
|
secret_env = os.environ.get("PLEXPLAYLISTSYNC_AUTH_TOKEN_SECRET", "").strip()
|
||||||
|
if secret_env:
|
||||||
|
token_secret = secret_env.encode("utf-8")
|
||||||
|
elif enabled:
|
||||||
|
# If auth is enabled but no explicit secret is set, fall back to an ephemeral secret.
|
||||||
|
# This means tokens become invalid after restart, which is acceptable for this project.
|
||||||
|
token_secret = os.urandom(32)
|
||||||
|
logger.warning(
|
||||||
|
"PLEXPLAYLISTSYNC_AUTH_TOKEN_SECRET not set; using ephemeral secret (tokens reset on restart)."
|
||||||
|
)
|
||||||
|
else:
|
||||||
|
token_secret = b""
|
||||||
|
|
||||||
|
if enabled:
|
||||||
|
if not username or not password:
|
||||||
|
raise RuntimeError(
|
||||||
|
"Auth enabled but missing credentials: please set PLEXPLAYLISTSYNC_AUTH_USERNAME and PLEXPLAYLISTSYNC_AUTH_PASSWORD."
|
||||||
|
)
|
||||||
|
|
||||||
|
return AuthConfig(
|
||||||
|
enabled=enabled,
|
||||||
|
username=username,
|
||||||
|
password=password,
|
||||||
|
token_secret=token_secret,
|
||||||
|
token_ttl_seconds=ttl,
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
def issue_token(config: AuthConfig, username: str) -> str:
|
||||||
|
now = int(time.time())
|
||||||
|
payload = {"u": username, "exp": now + config.token_ttl_seconds}
|
||||||
|
payload_bytes = json.dumps(payload, separators=(",", ":"), ensure_ascii=False).encode("utf-8")
|
||||||
|
payload_b64 = _b64url_encode(payload_bytes)
|
||||||
|
|
||||||
|
sig = hmac.new(config.token_secret, payload_b64.encode("utf-8"), hashlib.sha256).digest()
|
||||||
|
sig_b64 = _b64url_encode(sig)
|
||||||
|
return f"{payload_b64}.{sig_b64}"
|
||||||
|
|
||||||
|
|
||||||
|
def verify_token(config: AuthConfig, token: str) -> dict | None:
|
||||||
|
try:
|
||||||
|
payload_b64, sig_b64 = token.split(".", 1)
|
||||||
|
except ValueError:
|
||||||
|
return None
|
||||||
|
|
||||||
|
try:
|
||||||
|
expected_sig = hmac.new(
|
||||||
|
config.token_secret, payload_b64.encode("utf-8"), hashlib.sha256
|
||||||
|
).digest()
|
||||||
|
actual_sig = _b64url_decode(sig_b64)
|
||||||
|
if not hmac.compare_digest(expected_sig, actual_sig):
|
||||||
|
return None
|
||||||
|
|
||||||
|
payload = json.loads(_b64url_decode(payload_b64).decode("utf-8"))
|
||||||
|
exp = int(payload.get("exp", 0))
|
||||||
|
if exp <= int(time.time()):
|
||||||
|
return None
|
||||||
|
if not payload.get("u"):
|
||||||
|
return None
|
||||||
|
return payload
|
||||||
|
except Exception:
|
||||||
|
return None
|
||||||
+34
-4
@@ -1,5 +1,7 @@
|
|||||||
import os
|
import os
|
||||||
import zipfile
|
import zipfile
|
||||||
|
import hashlib
|
||||||
|
import re
|
||||||
from datetime import datetime
|
from datetime import datetime
|
||||||
from typing import List
|
from typing import List
|
||||||
from app.utils.logger import logger
|
from app.utils.logger import logger
|
||||||
@@ -7,11 +9,39 @@ from app.utils.config import server_config
|
|||||||
from app.utils.local_playlist import load_local_playlist
|
from app.utils.local_playlist import load_local_playlist
|
||||||
from app.utils.plex_client import plex_client
|
from app.utils.plex_client import plex_client
|
||||||
|
|
||||||
# Default backup directory
|
# Default backup directory (repo root /backups)
|
||||||
BACKUP_DIR = os.path.abspath(
|
DEFAULT_BACKUP_DIR = os.path.abspath(
|
||||||
os.path.join(os.path.dirname(__file__), "..", "..", "backups")
|
os.path.join(os.path.dirname(__file__), "..", "..", "backups")
|
||||||
)
|
)
|
||||||
|
|
||||||
|
# Allow Docker / users to relocate backups for centralized host backup.
|
||||||
|
# Example: /app/data/backup
|
||||||
|
BACKUP_DIR = os.path.abspath(
|
||||||
|
os.environ.get("PLEXPLAYLISTSYNC_BACKUP_DIR", DEFAULT_BACKUP_DIR)
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
def _safe_zip_entry_name(name: str, extension: str = ".m3u8") -> str:
|
||||||
|
"""Return a safe zip entry filename.
|
||||||
|
|
||||||
|
Prevents zip-slip style paths and avoids problematic characters.
|
||||||
|
"""
|
||||||
|
|
||||||
|
original = (name or "").strip()
|
||||||
|
base = os.path.basename(original)
|
||||||
|
base = re.sub(r"[\x00-\x1f\x7f]", "_", base)
|
||||||
|
invalid = set('<>:"/\\|?*')
|
||||||
|
cleaned = "".join(("_" if ch in invalid else ch) for ch in base).strip().strip(". ")
|
||||||
|
if not cleaned:
|
||||||
|
cleaned = "playlist"
|
||||||
|
|
||||||
|
cleaned = cleaned[:160].rstrip().strip(". ")
|
||||||
|
if cleaned != original:
|
||||||
|
digest = hashlib.sha1(original.encode("utf-8", errors="ignore")).hexdigest()[:8]
|
||||||
|
cleaned = f"{cleaned}__{digest}"
|
||||||
|
|
||||||
|
return f"{cleaned}{extension}"
|
||||||
|
|
||||||
|
|
||||||
def ensure_backup_dir():
|
def ensure_backup_dir():
|
||||||
"""Ensure the backup directory exists."""
|
"""Ensure the backup directory exists."""
|
||||||
@@ -112,7 +142,7 @@ def backup_local_playlists(local_path: str) -> str | None:
|
|||||||
|
|
||||||
# Get the playlist name without extension and add .m3u8 extension
|
# Get the playlist name without extension and add .m3u8 extension
|
||||||
playlist_name = os.path.splitext(entry.name)[0]
|
playlist_name = os.path.splitext(entry.name)[0]
|
||||||
archive_name = f"{playlist_name}.m3u8"
|
archive_name = _safe_zip_entry_name(playlist_name)
|
||||||
|
|
||||||
# Write to zip
|
# Write to zip
|
||||||
zipf.writestr(archive_name, content)
|
zipf.writestr(archive_name, content)
|
||||||
@@ -211,7 +241,7 @@ def backup_cloud_playlists(library_name: str) -> str | None:
|
|||||||
|
|
||||||
if len(lines) > 1: # More than just #EXTM3U
|
if len(lines) > 1: # More than just #EXTM3U
|
||||||
content = "\n".join(lines)
|
content = "\n".join(lines)
|
||||||
archive_name = f"{playlist.title}.m3u8"
|
archive_name = _safe_zip_entry_name(getattr(playlist, "title", "playlist"))
|
||||||
zipf.writestr(archive_name, content)
|
zipf.writestr(archive_name, content)
|
||||||
playlist_count += 1
|
playlist_count += 1
|
||||||
|
|
||||||
|
|||||||
+45
-16
@@ -2,7 +2,27 @@ import json
|
|||||||
import os
|
import os
|
||||||
from app.utils.logger import logger
|
from app.utils.logger import logger
|
||||||
|
|
||||||
|
|
||||||
|
def _redact_for_log(value: object) -> object:
|
||||||
|
if not isinstance(value, dict):
|
||||||
|
return value
|
||||||
|
redacted = dict(value)
|
||||||
|
for key in ("token", "password"):
|
||||||
|
if key in redacted and redacted.get(key):
|
||||||
|
redacted[key] = "***"
|
||||||
|
return redacted
|
||||||
|
|
||||||
|
|
||||||
|
def _redact_server_config_dict(state: dict) -> dict:
|
||||||
|
if not isinstance(state, dict):
|
||||||
|
return {}
|
||||||
|
redacted = dict(state)
|
||||||
|
if redacted.get("token"):
|
||||||
|
redacted["token"] = "***"
|
||||||
|
return redacted
|
||||||
|
|
||||||
DEFAULT_SYNC_MODE = "merge_local_primary"
|
DEFAULT_SYNC_MODE = "merge_local_primary"
|
||||||
|
LOCAL_PLAYLISTS_FOLDER = "playlists"
|
||||||
DEFAULT_PATH_MAPPING = {
|
DEFAULT_PATH_MAPPING = {
|
||||||
"mode": "SIMPLE",
|
"mode": "SIMPLE",
|
||||||
"simple": [],
|
"simple": [],
|
||||||
@@ -14,10 +34,22 @@ DEFAULT_PATH_MAPPING = {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
CONFIG_PATH = os.path.abspath(
|
DEFAULT_CONFIG_PATH = os.path.abspath(
|
||||||
os.path.join(os.path.dirname(__file__), "..", "config.json")
|
os.path.join(os.path.dirname(__file__), "..", "config.json")
|
||||||
)
|
)
|
||||||
|
|
||||||
|
# Allow Docker / users to relocate config for backup convenience.
|
||||||
|
# Example: /app/data/config/config.json
|
||||||
|
CONFIG_PATH = os.path.abspath(
|
||||||
|
os.environ.get("PLEXPLAYLISTSYNC_CONFIG_PATH", DEFAULT_CONFIG_PATH)
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
def _ensure_parent_dir(file_path: str) -> None:
|
||||||
|
parent = os.path.dirname(os.path.abspath(file_path))
|
||||||
|
if parent and not os.path.isdir(parent):
|
||||||
|
os.makedirs(parent, exist_ok=True)
|
||||||
|
|
||||||
|
|
||||||
class ServerConfig:
|
class ServerConfig:
|
||||||
|
|
||||||
@@ -30,16 +62,18 @@ class ServerConfig:
|
|||||||
self.timeout = 9
|
self.timeout = 9
|
||||||
self.library_name = ""
|
self.library_name = ""
|
||||||
self.sync_mode = DEFAULT_SYNC_MODE
|
self.sync_mode = DEFAULT_SYNC_MODE
|
||||||
self.local_path = "playlist"
|
# Local playlists folder is intentionally fixed and not part of config.
|
||||||
|
# Docker volume should mount host ./playlists -> container /app/playlists.
|
||||||
|
self.local_path = LOCAL_PLAYLISTS_FOLDER
|
||||||
self.path_rules: list[dict[str, str]] = [] # Legacy field for backward compatibility
|
self.path_rules: list[dict[str, str]] = [] # Legacy field for backward compatibility
|
||||||
self.path_mapping: dict = DEFAULT_PATH_MAPPING.copy()
|
self.path_mapping: dict = DEFAULT_PATH_MAPPING.copy()
|
||||||
self.schedule_mode = "DISABLED"
|
self.schedule_mode = "DISABLED"
|
||||||
self.schedule_cron = ""
|
self.schedule_cron = ""
|
||||||
self.schedule_daily_time = "02:00"
|
self.schedule_daily_time = "00:00"
|
||||||
self.schedule_weekly_days = [0]
|
self.schedule_weekly_days = [0]
|
||||||
self.schedule_weekly_time = "03:00"
|
self.schedule_weekly_time = "00:00"
|
||||||
self.schedule_auto_watch = False
|
self.schedule_auto_watch = False
|
||||||
self.backup_enabled = False
|
self.backup_enabled = True
|
||||||
self.backup_retention_count = 5
|
self.backup_retention_count = 5
|
||||||
self.load()
|
self.load()
|
||||||
|
|
||||||
@@ -47,7 +81,7 @@ class ServerConfig:
|
|||||||
try:
|
try:
|
||||||
with open(CONFIG_PATH, "r", encoding="utf-8") as f:
|
with open(CONFIG_PATH, "r", encoding="utf-8") as f:
|
||||||
config = json.load(f)
|
config = json.load(f)
|
||||||
logger.debug(f"Loaded server config: {config}")
|
logger.debug(f"Loaded server config: {_redact_for_log(config)}")
|
||||||
except FileNotFoundError:
|
except FileNotFoundError:
|
||||||
# 如果配置文件不存在,使用默认值
|
# 如果配置文件不存在,使用默认值
|
||||||
self.save()
|
self.save()
|
||||||
@@ -66,7 +100,8 @@ class ServerConfig:
|
|||||||
self.timeout = config.get("timeout", 9)
|
self.timeout = config.get("timeout", 9)
|
||||||
self.library_name = config.get("library_name", "")
|
self.library_name = config.get("library_name", "")
|
||||||
self.sync_mode = config.get("sync_mode", DEFAULT_SYNC_MODE)
|
self.sync_mode = config.get("sync_mode", DEFAULT_SYNC_MODE)
|
||||||
self.local_path = config.get("local_path", "playlist")
|
# local_path is fixed by design and not configurable.
|
||||||
|
self.local_path = LOCAL_PLAYLISTS_FOLDER
|
||||||
self.path_rules = config.get("path_rules", []) or []
|
self.path_rules = config.get("path_rules", []) or []
|
||||||
|
|
||||||
# Load path_mapping with default fallback
|
# Load path_mapping with default fallback
|
||||||
@@ -94,9 +129,10 @@ class ServerConfig:
|
|||||||
self.backup_enabled = config.get("backup_enabled", False)
|
self.backup_enabled = config.get("backup_enabled", False)
|
||||||
self.backup_retention_count = config.get("backup_retention_count", 5)
|
self.backup_retention_count = config.get("backup_retention_count", 5)
|
||||||
logger.info(f"Server config loaded.")
|
logger.info(f"Server config loaded.")
|
||||||
logger.debug(f"Current server config: {self.__dict__}")
|
logger.debug(f"Current server config: {_redact_server_config_dict(self.__dict__)}")
|
||||||
|
|
||||||
def save(self):
|
def save(self):
|
||||||
|
_ensure_parent_dir(CONFIG_PATH)
|
||||||
config = {
|
config = {
|
||||||
"theme": self.theme,
|
"theme": self.theme,
|
||||||
"token": self.token,
|
"token": self.token,
|
||||||
@@ -106,7 +142,6 @@ class ServerConfig:
|
|||||||
"timeout": self.timeout,
|
"timeout": self.timeout,
|
||||||
"library_name": self.library_name,
|
"library_name": self.library_name,
|
||||||
"sync_mode": self.sync_mode,
|
"sync_mode": self.sync_mode,
|
||||||
"local_path": self.local_path,
|
|
||||||
"path_rules": self.path_rules,
|
"path_rules": self.path_rules,
|
||||||
"path_mapping": self.path_mapping,
|
"path_mapping": self.path_mapping,
|
||||||
"schedule_mode": self.schedule_mode,
|
"schedule_mode": self.schedule_mode,
|
||||||
@@ -121,7 +156,7 @@ class ServerConfig:
|
|||||||
with open(CONFIG_PATH, "w", encoding="utf-8") as f:
|
with open(CONFIG_PATH, "w", encoding="utf-8") as f:
|
||||||
json.dump(config, f, indent=4, ensure_ascii=False)
|
json.dump(config, f, indent=4, ensure_ascii=False)
|
||||||
logger.info(f"Server config saved.")
|
logger.info(f"Server config saved.")
|
||||||
logger.debug(f"Saved server config: {config}")
|
logger.debug(f"Saved server config: {_redact_for_log(config)}")
|
||||||
|
|
||||||
def set_url(self, url: str) -> None:
|
def set_url(self, url: str) -> None:
|
||||||
self.url = url
|
self.url = url
|
||||||
@@ -144,9 +179,6 @@ class ServerConfig:
|
|||||||
def set_sync_mode(self, sync_mode: str) -> None:
|
def set_sync_mode(self, sync_mode: str) -> None:
|
||||||
self.sync_mode = sync_mode
|
self.sync_mode = sync_mode
|
||||||
|
|
||||||
def set_local_path(self, local_path: str) -> None:
|
|
||||||
self.local_path = local_path or "playlist"
|
|
||||||
|
|
||||||
def set_theme(self, theme: str) -> None:
|
def set_theme(self, theme: str) -> None:
|
||||||
# check theme is valid
|
# check theme is valid
|
||||||
if theme not in ["auto", "dark", "light"]:
|
if theme not in ["auto", "dark", "light"]:
|
||||||
@@ -208,7 +240,6 @@ class ServerConfig:
|
|||||||
timeout: int | None = None,
|
timeout: int | None = None,
|
||||||
library_name: str | None = None,
|
library_name: str | None = None,
|
||||||
sync_mode: str | None = None,
|
sync_mode: str | None = None,
|
||||||
local_path: str | None = None,
|
|
||||||
path_rules: list[dict[str, str]] | None = None,
|
path_rules: list[dict[str, str]] | None = None,
|
||||||
path_mapping: dict | None = None,
|
path_mapping: dict | None = None,
|
||||||
) -> None:
|
) -> None:
|
||||||
@@ -228,8 +259,6 @@ class ServerConfig:
|
|||||||
self.set_library(library_name)
|
self.set_library(library_name)
|
||||||
if sync_mode is not None:
|
if sync_mode is not None:
|
||||||
self.set_sync_mode(sync_mode)
|
self.set_sync_mode(sync_mode)
|
||||||
if local_path is not None:
|
|
||||||
self.set_local_path(local_path)
|
|
||||||
if path_rules is not None:
|
if path_rules is not None:
|
||||||
self.set_path_rules(path_rules)
|
self.set_path_rules(path_rules)
|
||||||
if path_mapping is not None:
|
if path_mapping is not None:
|
||||||
|
|||||||
+90
-40
@@ -12,10 +12,13 @@ from app.utils.plex_client import plex_client
|
|||||||
from merge3 import Merge3
|
from merge3 import Merge3
|
||||||
|
|
||||||
|
|
||||||
TEST_PLAYLIST_DIR = os.path.abspath(
|
SYNC_ARTIFACTS_DIR = os.path.abspath(
|
||||||
os.path.join(os.path.dirname(__file__), "..", "test_playlists")
|
os.path.join(os.path.dirname(__file__), "..", "..", "data", "sync_artifacts")
|
||||||
)
|
)
|
||||||
|
|
||||||
|
# Backward-compat alias (older API / logs used this name).
|
||||||
|
TEST_PLAYLIST_DIR = SYNC_ARTIFACTS_DIR
|
||||||
|
|
||||||
|
|
||||||
class ConflictResolutionStrategy(str, Enum):
|
class ConflictResolutionStrategy(str, Enum):
|
||||||
LOCAL_PRIORITY = "local_priority"
|
LOCAL_PRIORITY = "local_priority"
|
||||||
@@ -159,9 +162,37 @@ class MergeResult:
|
|||||||
conflicts: list[dict]
|
conflicts: list[dict]
|
||||||
|
|
||||||
|
|
||||||
def _ensure_test_dir(folder: str = TEST_PLAYLIST_DIR) -> str:
|
def _ensure_dir(path: str) -> str:
|
||||||
os.makedirs(folder, exist_ok=True)
|
os.makedirs(path, exist_ok=True)
|
||||||
return folder
|
return path
|
||||||
|
|
||||||
|
|
||||||
|
def _safe_folder_name(name: str, max_len: int = 120) -> str:
|
||||||
|
"""Make a filesystem-safe folder name (especially for Windows hosts).
|
||||||
|
|
||||||
|
This is used for artifacts folders persisted to the host.
|
||||||
|
"""
|
||||||
|
|
||||||
|
if not name:
|
||||||
|
return "(unnamed)"
|
||||||
|
|
||||||
|
# Windows-disallowed characters plus path separators.
|
||||||
|
invalid = set('<>:"/\\|?*')
|
||||||
|
cleaned = "".join(("_" if ch in invalid else ch) for ch in name).strip()
|
||||||
|
if not cleaned:
|
||||||
|
cleaned = "(unnamed)"
|
||||||
|
if len(cleaned) > max_len:
|
||||||
|
cleaned = cleaned[:max_len].rstrip()
|
||||||
|
return cleaned
|
||||||
|
|
||||||
|
|
||||||
|
def _playlist_artifact_dir(artifacts_root: str, playlist_name: str) -> str:
|
||||||
|
return os.path.join(artifacts_root, _safe_folder_name(playlist_name))
|
||||||
|
|
||||||
|
|
||||||
|
def _artifact_file(playlist_folder: str, category: str, filename: str) -> str:
|
||||||
|
category_dir = _ensure_dir(os.path.join(playlist_folder, category))
|
||||||
|
return os.path.join(category_dir, filename)
|
||||||
|
|
||||||
|
|
||||||
def _read_text_if_exists(path: str) -> tuple[str, bool]:
|
def _read_text_if_exists(path: str) -> tuple[str, bool]:
|
||||||
@@ -174,26 +205,27 @@ def _read_text_if_exists(path: str) -> tuple[str, bool]:
|
|||||||
return "", False
|
return "", False
|
||||||
|
|
||||||
|
|
||||||
def _save_playlist_to_folder(filename: str, paths: Sequence[str], folder: str) -> str:
|
def _save_playlist_text(path: str, text: str) -> str:
|
||||||
_ensure_test_dir(folder)
|
"""Write text if changed (avoid triggering unnecessary file events)."""
|
||||||
file_path = os.path.join(folder, filename)
|
|
||||||
logger.info(f"Saving playlist to: {file_path}")
|
|
||||||
|
|
||||||
new_content = save_paths(paths)
|
_ensure_dir(os.path.dirname(path))
|
||||||
|
|
||||||
# Check if content has changed before writing to avoid triggering unnecessary file events
|
if os.path.exists(path):
|
||||||
if os.path.exists(file_path):
|
|
||||||
try:
|
try:
|
||||||
with open(file_path, "r", encoding="utf-8") as f:
|
with open(path, "r", encoding="utf-8") as file:
|
||||||
current_content = f.read()
|
if file.read() == text:
|
||||||
if current_content == new_content:
|
return path
|
||||||
return file_path
|
|
||||||
except OSError:
|
except OSError:
|
||||||
pass
|
pass
|
||||||
|
|
||||||
with open(file_path, "w", encoding="utf-8") as file:
|
with open(path, "w", encoding="utf-8") as file:
|
||||||
file.write(new_content)
|
file.write(text)
|
||||||
return file_path
|
return path
|
||||||
|
|
||||||
|
|
||||||
|
def _save_playlist_paths(path: str, paths: Sequence[str]) -> str:
|
||||||
|
logger.info(f"Saving playlist to: {path}")
|
||||||
|
return _save_playlist_text(path, save_paths(paths))
|
||||||
|
|
||||||
|
|
||||||
def _normalize_inputs(
|
def _normalize_inputs(
|
||||||
@@ -205,9 +237,9 @@ def _normalize_inputs(
|
|||||||
local_paths = load_paths(local_text)
|
local_paths = load_paths(local_text)
|
||||||
remote_paths = load_paths(remote_text)
|
remote_paths = load_paths(remote_text)
|
||||||
|
|
||||||
_save_playlist_to_folder("base_playlist.m3u8", base_paths, folder)
|
_save_playlist_paths(_artifact_file(folder, "base", "base_prev.m3u8"), base_paths)
|
||||||
_save_playlist_to_folder("local_input.m3u8", local_paths, folder)
|
_save_playlist_paths(_artifact_file(folder, "inputs", "local_input.m3u8"), local_paths)
|
||||||
_save_playlist_to_folder("remote_input.m3u8", remote_paths, folder)
|
_save_playlist_paths(_artifact_file(folder, "inputs", "remote_input.m3u8"), remote_paths)
|
||||||
|
|
||||||
return base_paths, local_paths, remote_paths
|
return base_paths, local_paths, remote_paths
|
||||||
|
|
||||||
@@ -275,14 +307,13 @@ def _write_results(
|
|||||||
else:
|
else:
|
||||||
remote_lines = list(merged_lines)
|
remote_lines = list(merged_lines)
|
||||||
|
|
||||||
_save_playlist_to_folder("local_result.m3u8", local_lines, folder)
|
_save_playlist_paths(_artifact_file(folder, "outputs", "local_result.m3u8"), local_lines)
|
||||||
_save_playlist_to_folder("remote_result.m3u8", remote_lines, folder)
|
_save_playlist_paths(_artifact_file(folder, "outputs", "remote_result.m3u8"), remote_lines)
|
||||||
_save_playlist_to_folder("base_next.m3u8", merged_lines, folder)
|
_save_playlist_paths(_artifact_file(folder, "base", "base_next.m3u8"), merged_lines)
|
||||||
|
|
||||||
|
|
||||||
def _write_delete_marker(playlist: str, folder: str) -> str:
|
def _write_delete_marker(playlist: str, folder: str) -> str:
|
||||||
_ensure_test_dir(folder)
|
marker_path = _artifact_file(folder, "meta", "delete.txt")
|
||||||
marker_path = os.path.join(folder, "delete.txt")
|
|
||||||
with open(marker_path, "w", encoding="utf-8") as file:
|
with open(marker_path, "w", encoding="utf-8") as file:
|
||||||
file.write(f"delete playlist {playlist}")
|
file.write(f"delete playlist {playlist}")
|
||||||
return marker_path
|
return marker_path
|
||||||
@@ -418,7 +449,7 @@ def merge_playlists(
|
|||||||
local_text: str,
|
local_text: str,
|
||||||
remote_text: str,
|
remote_text: str,
|
||||||
strategy: ConflictResolutionStrategy = ConflictResolutionStrategy.LOCAL_PRIORITY,
|
strategy: ConflictResolutionStrategy = ConflictResolutionStrategy.LOCAL_PRIORITY,
|
||||||
test_folder: str = TEST_PLAYLIST_DIR,
|
test_folder: str = SYNC_ARTIFACTS_DIR,
|
||||||
compiled_rules: CompiledRegexRules | None = None,
|
compiled_rules: CompiledRegexRules | None = None,
|
||||||
) -> MergeResult:
|
) -> MergeResult:
|
||||||
"""Merge playlists using diff3 and resolve conflicts per strategy.
|
"""Merge playlists using diff3 and resolve conflicts per strategy.
|
||||||
@@ -494,19 +525,42 @@ def _load_local_playlists(local_dir: str) -> dict[str, str]:
|
|||||||
def _load_playlist_snapshots(playlist: str, folder: str) -> tuple[str, str, str, bool, bool]:
|
def _load_playlist_snapshots(playlist: str, folder: str) -> tuple[str, str, str, bool, bool]:
|
||||||
"""Load base/local/remote texts for a playlist from its test folder."""
|
"""Load base/local/remote texts for a playlist from its test folder."""
|
||||||
|
|
||||||
playlist_folder = os.path.join(folder, playlist)
|
playlist_folder = _playlist_artifact_dir(folder, playlist)
|
||||||
|
|
||||||
|
# Prefer new organized layout.
|
||||||
base_text, base_exists = _read_text_if_exists(
|
base_text, base_exists = _read_text_if_exists(
|
||||||
os.path.join(playlist_folder, "base_next.m3u8")
|
os.path.join(playlist_folder, "base", "base_next.m3u8")
|
||||||
)
|
)
|
||||||
if not base_text:
|
if not base_text:
|
||||||
alt_text, _ = _read_text_if_exists(
|
alt_text, alt_exists = _read_text_if_exists(
|
||||||
os.path.join(playlist_folder, "base_playlist.m3u8")
|
os.path.join(playlist_folder, "base", "base_prev.m3u8")
|
||||||
)
|
)
|
||||||
base_text = base_text or alt_text
|
base_text = base_text or alt_text
|
||||||
|
base_exists = base_exists or alt_exists
|
||||||
|
|
||||||
|
# Backward-compat: legacy flat file layout.
|
||||||
|
if not base_text:
|
||||||
|
legacy_text, legacy_exists = _read_text_if_exists(
|
||||||
|
os.path.join(playlist_folder, "base_next.m3u8")
|
||||||
|
)
|
||||||
|
base_text = base_text or legacy_text
|
||||||
|
base_exists = base_exists or legacy_exists
|
||||||
|
if not base_text:
|
||||||
|
legacy_text, legacy_exists = _read_text_if_exists(
|
||||||
|
os.path.join(playlist_folder, "base_playlist.m3u8")
|
||||||
|
)
|
||||||
|
base_text = base_text or legacy_text
|
||||||
|
base_exists = base_exists or legacy_exists
|
||||||
|
|
||||||
remote_text, remote_exists = _read_text_if_exists(
|
remote_text, remote_exists = _read_text_if_exists(
|
||||||
os.path.join(playlist_folder, "remote_input.m3u8")
|
os.path.join(playlist_folder, "inputs", "remote_input.m3u8")
|
||||||
)
|
)
|
||||||
|
if not remote_text:
|
||||||
|
legacy_remote, legacy_exists = _read_text_if_exists(
|
||||||
|
os.path.join(playlist_folder, "remote_input.m3u8")
|
||||||
|
)
|
||||||
|
remote_text = remote_text or legacy_remote
|
||||||
|
remote_exists = remote_exists or legacy_exists
|
||||||
|
|
||||||
return base_text, remote_text, playlist_folder, remote_exists, base_exists
|
return base_text, remote_text, playlist_folder, remote_exists, base_exists
|
||||||
|
|
||||||
@@ -748,7 +802,7 @@ def _compile_simple_mapping_rules(simple_mappings: list[dict]) -> CompiledRegexR
|
|||||||
|
|
||||||
|
|
||||||
def sync_all_playlists(
|
def sync_all_playlists(
|
||||||
local_dir: str, mode: SyncMode, test_folder: str = TEST_PLAYLIST_DIR
|
local_dir: str, mode: SyncMode, test_folder: str = SYNC_ARTIFACTS_DIR
|
||||||
) -> list[PlaylistSyncResult]:
|
) -> list[PlaylistSyncResult]:
|
||||||
"""Synchronize all playlists that can be matched by name.
|
"""Synchronize all playlists that can be matched by name.
|
||||||
|
|
||||||
@@ -795,18 +849,14 @@ def sync_all_playlists(
|
|||||||
legacy_compiled_rules = _compile_regex_rules(server_config.path_rules)
|
legacy_compiled_rules = _compile_regex_rules(server_config.path_rules)
|
||||||
logger.info("Using legacy path_rules for preprocessing")
|
logger.info("Using legacy path_rules for preprocessing")
|
||||||
|
|
||||||
_ensure_test_dir(test_folder)
|
_ensure_dir(test_folder)
|
||||||
logger.info(f"Syncing playlists to test folder: {test_folder}")
|
logger.info(f"Sync artifacts folder: {test_folder}")
|
||||||
local_playlists = _load_local_playlists(local_dir)
|
local_playlists = _load_local_playlists(local_dir)
|
||||||
remote_playlists = _fetch_remote_playlists()
|
remote_playlists = _fetch_remote_playlists()
|
||||||
playlist_names: set[str] = set(local_playlists.keys())
|
playlist_names: set[str] = set(local_playlists.keys())
|
||||||
|
|
||||||
playlist_names.update(remote_playlists.keys())
|
playlist_names.update(remote_playlists.keys())
|
||||||
|
|
||||||
for entry in os.scandir(test_folder):
|
|
||||||
if entry.is_dir():
|
|
||||||
playlist_names.add(entry.name)
|
|
||||||
|
|
||||||
results: list[PlaylistSyncResult] = []
|
results: list[PlaylistSyncResult] = []
|
||||||
|
|
||||||
for playlist in sorted(playlist_names):
|
for playlist in sorted(playlist_names):
|
||||||
|
|||||||
@@ -79,9 +79,7 @@ class PlexClient:
|
|||||||
# Update the base URL and connection status
|
# Update the base URL and connection status
|
||||||
self.base_url = build_plex_url(scheme, url, port)
|
self.base_url = build_plex_url(scheme, url, port)
|
||||||
self.connected = True
|
self.connected = True
|
||||||
logger.info(
|
logger.info(f"Connected to Plex server at {self.base_url}.")
|
||||||
f"Connected to Plex server at {self.base_url} with token: {self.token}"
|
|
||||||
)
|
|
||||||
return self.server, self.token
|
return self.server, self.token
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
logger.warning(f"Failed to connect to Plex server: {str(e)}")
|
logger.warning(f"Failed to connect to Plex server: {str(e)}")
|
||||||
@@ -106,9 +104,7 @@ class PlexClient:
|
|||||||
self.token = account.authenticationToken
|
self.token = account.authenticationToken
|
||||||
|
|
||||||
self.server = PlexServer(self.base_url, self.token, timeout=timeout)
|
self.server = PlexServer(self.base_url, self.token, timeout=timeout)
|
||||||
logger.debug(
|
logger.debug(f"Connected to Plex server with username: {username}.")
|
||||||
f"Connected to Plex server with username: {username}, token: {self.token}"
|
|
||||||
)
|
|
||||||
return self.server, self.token
|
return self.server, self.token
|
||||||
|
|
||||||
def _connect_with_token(
|
def _connect_with_token(
|
||||||
@@ -124,7 +120,7 @@ class PlexClient:
|
|||||||
self.base_url = build_plex_url(scheme, url, port)
|
self.base_url = build_plex_url(scheme, url, port)
|
||||||
|
|
||||||
self.server = PlexServer(self.base_url, token, timeout=timeout)
|
self.server = PlexServer(self.base_url, token, timeout=timeout)
|
||||||
logger.debug(f"Connected to Plex server with token: {token}")
|
logger.debug("Connected to Plex server with token.")
|
||||||
return self.server, token
|
return self.server, token
|
||||||
|
|
||||||
def _connect_check(self):
|
def _connect_check(self):
|
||||||
|
|||||||
@@ -2,6 +2,8 @@ import threading
|
|||||||
import asyncio
|
import asyncio
|
||||||
import json
|
import json
|
||||||
import os
|
import os
|
||||||
|
import hashlib
|
||||||
|
import re
|
||||||
from datetime import datetime
|
from datetime import datetime
|
||||||
from app.utils.logger import logger
|
from app.utils.logger import logger
|
||||||
from app.utils.playlist_merge import sync_all_playlists, SyncMode
|
from app.utils.playlist_merge import sync_all_playlists, SyncMode
|
||||||
@@ -136,16 +138,16 @@ class SyncManager:
|
|||||||
try:
|
try:
|
||||||
if action == "synced":
|
if action == "synced":
|
||||||
# 1. Write Local
|
# 1. Write Local
|
||||||
local_result_path = os.path.join(output_dir, "local_result.m3u8")
|
local_result_path = os.path.join(output_dir, "outputs", "local_result.m3u8")
|
||||||
if os.path.exists(local_result_path):
|
if os.path.exists(local_result_path):
|
||||||
tracks = load_local_playlist(local_result_path)
|
tracks = load_local_playlist(local_result_path)
|
||||||
dest_path = os.path.join(server_config.local_path, f"{playlist_name}.m3u8")
|
dest_path = self._safe_local_playlist_path(server_config.local_path, playlist_name, ".m3u8")
|
||||||
# Ensure directory exists
|
# Ensure directory exists
|
||||||
os.makedirs(os.path.dirname(dest_path), exist_ok=True)
|
os.makedirs(os.path.dirname(dest_path), exist_ok=True)
|
||||||
write_local_playlist(dest_path, tracks)
|
write_local_playlist(dest_path, tracks)
|
||||||
|
|
||||||
# 2. Write Remote (Plex)
|
# 2. Write Remote (Plex)
|
||||||
remote_result_path = os.path.join(output_dir, "remote_result.m3u8")
|
remote_result_path = os.path.join(output_dir, "outputs", "remote_result.m3u8")
|
||||||
if os.path.exists(remote_result_path):
|
if os.path.exists(remote_result_path):
|
||||||
tracks = load_local_playlist(remote_result_path)
|
tracks = load_local_playlist(remote_result_path)
|
||||||
if server_config.library_name:
|
if server_config.library_name:
|
||||||
@@ -156,10 +158,10 @@ class SyncManager:
|
|||||||
|
|
||||||
elif action == "deleted":
|
elif action == "deleted":
|
||||||
# Delete Local
|
# Delete Local
|
||||||
dest_path = os.path.join(server_config.local_path, f"{playlist_name}.m3u8")
|
dest_path = self._safe_local_playlist_path(server_config.local_path, playlist_name, ".m3u8")
|
||||||
delete_local_playlist(dest_path)
|
delete_local_playlist(dest_path)
|
||||||
# Also check for .m3u
|
# Also check for .m3u
|
||||||
dest_path_m3u = os.path.join(server_config.local_path, f"{playlist_name}.m3u")
|
dest_path_m3u = self._safe_local_playlist_path(server_config.local_path, playlist_name, ".m3u")
|
||||||
delete_local_playlist(dest_path_m3u)
|
delete_local_playlist(dest_path_m3u)
|
||||||
|
|
||||||
# Delete Remote
|
# Delete Remote
|
||||||
@@ -167,6 +169,54 @@ class SyncManager:
|
|||||||
except Exception as e:
|
except Exception as e:
|
||||||
logger.error(f"Error applying sync result for playlist {playlist_name}: {e}")
|
logger.error(f"Error applying sync result for playlist {playlist_name}: {e}")
|
||||||
|
|
||||||
|
@staticmethod
|
||||||
|
def _safe_local_playlist_path(local_dir: str, playlist_name: str, extension: str) -> str:
|
||||||
|
base_dir = os.path.abspath(local_dir or "")
|
||||||
|
if not base_dir:
|
||||||
|
raise ValueError("Local playlist directory is not configured")
|
||||||
|
|
||||||
|
original = (playlist_name or "").strip()
|
||||||
|
# Drop any path components.
|
||||||
|
name = os.path.basename(original)
|
||||||
|
# Remove control chars.
|
||||||
|
name = re.sub(r"[\x00-\x1f\x7f]", "_", name)
|
||||||
|
# Replace path separators and Windows-invalid characters.
|
||||||
|
invalid = set('<>:"/\\|?*')
|
||||||
|
cleaned = "".join(("_" if ch in invalid else ch) for ch in name).strip().strip(". ")
|
||||||
|
|
||||||
|
windows_reserved = {
|
||||||
|
"CON", "PRN", "AUX", "NUL",
|
||||||
|
*(f"COM{i}" for i in range(1, 10)),
|
||||||
|
*(f"LPT{i}" for i in range(1, 10)),
|
||||||
|
}
|
||||||
|
|
||||||
|
needs_hash = False
|
||||||
|
if not cleaned:
|
||||||
|
cleaned = "playlist"
|
||||||
|
needs_hash = True
|
||||||
|
if cleaned.upper() in windows_reserved:
|
||||||
|
needs_hash = True
|
||||||
|
if cleaned != original:
|
||||||
|
needs_hash = True
|
||||||
|
|
||||||
|
cleaned = cleaned[:160].rstrip().strip(". ")
|
||||||
|
if not cleaned:
|
||||||
|
cleaned = "playlist"
|
||||||
|
needs_hash = True
|
||||||
|
|
||||||
|
if needs_hash:
|
||||||
|
digest = hashlib.sha1(original.encode("utf-8", errors="ignore")).hexdigest()[:8]
|
||||||
|
cleaned = f"{cleaned}__{digest}"
|
||||||
|
|
||||||
|
filename = f"{cleaned}{extension}"
|
||||||
|
candidate = os.path.abspath(os.path.join(base_dir, filename))
|
||||||
|
|
||||||
|
# Ensure the final path stays within base_dir.
|
||||||
|
if os.path.commonpath([base_dir, candidate]) != base_dir:
|
||||||
|
raise ValueError("Refusing to write outside local playlist directory")
|
||||||
|
|
||||||
|
return candidate
|
||||||
|
|
||||||
def _complete_sync(self, status, error=None):
|
def _complete_sync(self, status, error=None):
|
||||||
with self._lock:
|
with self._lock:
|
||||||
self._last_status = status
|
self._last_status = status
|
||||||
|
|||||||
@@ -1,15 +0,0 @@
|
|||||||
services:
|
|
||||||
plex-playlist-sync:
|
|
||||||
build: .
|
|
||||||
command: uvicorn app.main:app --host 0.0.0.0 --port 8080 --reload
|
|
||||||
ports:
|
|
||||||
- "8888:8080"
|
|
||||||
volumes:
|
|
||||||
- PATH_TO_YOUR_PLAYLISTS:/app/playlists
|
|
||||||
- PATH_TO_YOUR_BACKUP:/app/backup
|
|
||||||
environment:
|
|
||||||
- PYTHONUNBUFFERED=1
|
|
||||||
- PYTHONDONTWRITEBYTECODE=1
|
|
||||||
- LOG_LEVEL=INFO
|
|
||||||
- TZ=${TZ:-Asia/Tokyo}
|
|
||||||
restart: unless-stopped
|
|
||||||
@@ -0,0 +1,36 @@
|
|||||||
|
services:
|
||||||
|
plex-playlist-sync:
|
||||||
|
build: .
|
||||||
|
command: uvicorn app.main:app --host 0.0.0.0 --port 8080 --no-server-header
|
||||||
|
ports:
|
||||||
|
- "8888:8080"
|
||||||
|
volumes:
|
||||||
|
- PATH_TO_YOUR_PLAYLISTS:/app/playlists
|
||||||
|
- PATH_TO_DATA/backup:/app/data/backup
|
||||||
|
- PATH_TO_DATA/config:/app/data/config
|
||||||
|
- PATH_TO_DATA/sync_artifacts:/app/data/sync_artifacts
|
||||||
|
environment:
|
||||||
|
- PYTHONUNBUFFERED=1
|
||||||
|
- PYTHONDONTWRITEBYTECODE=1
|
||||||
|
- PLEXPLAYLISTSYNC_CONFIG_PATH=/app/data/config/config.json
|
||||||
|
- PLEXPLAYLISTSYNC_BACKUP_DIR=/app/data/backup
|
||||||
|
- TZ=${TZ:-UTC}
|
||||||
|
- LOG_LEVEL=${LOG_LEVEL:-INFO}
|
||||||
|
# CORS (default: disabled / same-origin only)
|
||||||
|
# Comma-separated list or JSON array. Example:
|
||||||
|
# - PLEXPLAYLISTSYNC_CORS_ALLOWED_ORIGINS=http://localhost:5173,http://127.0.0.1:5173
|
||||||
|
# - PLEXPLAYLISTSYNC_CORS_ALLOWED_ORIGINS=["https://your.domain"]
|
||||||
|
# Use '*' only if you understand the risk (credentials will be forced off).
|
||||||
|
- PLEXPLAYLISTSYNC_CORS_ALLOWED_ORIGINS=${PLEXPLAYLISTSYNC_CORS_ALLOWED_ORIGINS:-}
|
||||||
|
# Optional: allow cookies/credentials for allowed origins (ignored when origins contains '*')
|
||||||
|
- PLEXPLAYLISTSYNC_CORS_ALLOW_CREDENTIALS=${PLEXPLAYLISTSYNC_CORS_ALLOW_CREDENTIALS:-0}
|
||||||
|
# Optional API auth (protects /api/*).
|
||||||
|
# Set PLEXPLAYLISTSYNC_AUTH_ENABLED=1 to enable.
|
||||||
|
- PLEXPLAYLISTSYNC_AUTH_ENABLED=${PLEXPLAYLISTSYNC_AUTH_ENABLED:-0}
|
||||||
|
- PLEXPLAYLISTSYNC_AUTH_USERNAME=${PLEXPLAYLISTSYNC_AUTH_USERNAME:-}
|
||||||
|
- PLEXPLAYLISTSYNC_AUTH_PASSWORD=${PLEXPLAYLISTSYNC_AUTH_PASSWORD:-}
|
||||||
|
# Optional: stable signing secret for tokens (recommended if auth enabled).
|
||||||
|
- PLEXPLAYLISTSYNC_AUTH_TOKEN_SECRET=${PLEXPLAYLISTSYNC_AUTH_TOKEN_SECRET:-}
|
||||||
|
# Optional: token TTL seconds
|
||||||
|
- PLEXPLAYLISTSYNC_AUTH_TOKEN_TTL_SECONDS=${PLEXPLAYLISTSYNC_AUTH_TOKEN_TTL_SECONDS:-86400}
|
||||||
|
restart: unless-stopped
|
||||||
+177
-57
@@ -15,8 +15,9 @@ import { SYNC_BANNER_PADDING_X, SYNC_BANNER_PADDING_Y, SYNC_BANNER_MIN_WIDTH } f
|
|||||||
import ServerPanel from './components/ServerPanel';
|
import ServerPanel from './components/ServerPanel';
|
||||||
import StrategySelector from './components/StrategySelector';
|
import StrategySelector from './components/StrategySelector';
|
||||||
import ConnectionModal from './components/ConnectionModal';
|
import ConnectionModal from './components/ConnectionModal';
|
||||||
|
import LoginScreen from './components/LoginScreen';
|
||||||
import OverflowMarquee from './components/OverflowMarquee';
|
import OverflowMarquee from './components/OverflowMarquee';
|
||||||
import { ArrowLeftRight, ShieldCheck, X, Server, ServerOff, Clock, Eye, EyeOff, Type, Code2, Archive, Languages } from 'lucide-react';
|
import { ArrowLeftRight, ShieldCheck, X, Server, ServerOff, Clock, Eye, EyeOff, Type, Code2, Archive, Languages, LogOut } from 'lucide-react';
|
||||||
import { useLanguage } from './LanguageContext';
|
import { useLanguage } from './LanguageContext';
|
||||||
|
|
||||||
interface Toast {
|
interface Toast {
|
||||||
@@ -115,6 +116,12 @@ const useStripeAnimation = (syncState: SyncState) => {
|
|||||||
|
|
||||||
const App: React.FC = () => {
|
const App: React.FC = () => {
|
||||||
const { t, language, setLanguage } = useLanguage();
|
const { t, language, setLanguage } = useLanguage();
|
||||||
|
|
||||||
|
// Auth (optional; controlled by backend /api/auth/config)
|
||||||
|
const [authReady, setAuthReady] = useState(false);
|
||||||
|
const [authEnabled, setAuthEnabled] = useState(false);
|
||||||
|
const [isAuthenticated, setIsAuthenticated] = useState(false);
|
||||||
|
const [currentUser, setCurrentUser] = useState('');
|
||||||
const [localPlaylists, setLocalPlaylists] = useState<Playlist[]>([]);
|
const [localPlaylists, setLocalPlaylists] = useState<Playlist[]>([]);
|
||||||
const [cloudPlaylists, setCloudPlaylists] = useState<Playlist[]>([]);
|
const [cloudPlaylists, setCloudPlaylists] = useState<Playlist[]>([]);
|
||||||
const [cloudServerInfo, setCloudServerInfo] = useState<PlexServerConnection | undefined>(undefined);
|
const [cloudServerInfo, setCloudServerInfo] = useState<PlexServerConnection | undefined>(undefined);
|
||||||
@@ -171,6 +178,75 @@ const App: React.FC = () => {
|
|||||||
retentionCount: 5
|
retentionCount: 5
|
||||||
});
|
});
|
||||||
|
|
||||||
|
useEffect(() => {
|
||||||
|
let cancelled = false;
|
||||||
|
|
||||||
|
const initAuth = async () => {
|
||||||
|
try {
|
||||||
|
const cfg = await apiService.getAuthConfig();
|
||||||
|
const enabled = cfg.status === 'success' ? !!cfg.data.enabled : false;
|
||||||
|
if (cancelled) return;
|
||||||
|
setAuthEnabled(enabled);
|
||||||
|
|
||||||
|
if (!enabled) {
|
||||||
|
setIsAuthenticated(true);
|
||||||
|
setAuthReady(true);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
const savedToken = localStorage.getItem('plexsync-token');
|
||||||
|
const savedUser = localStorage.getItem('plexsync-username');
|
||||||
|
if (!savedToken || !savedUser) {
|
||||||
|
setIsAuthenticated(false);
|
||||||
|
setCurrentUser('');
|
||||||
|
setAuthReady(true);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
const me = await apiService.me();
|
||||||
|
if (me.status === 'success') {
|
||||||
|
setIsAuthenticated(true);
|
||||||
|
setCurrentUser(me.data.username || savedUser);
|
||||||
|
} else {
|
||||||
|
localStorage.removeItem('plexsync-token');
|
||||||
|
localStorage.removeItem('plexsync-username');
|
||||||
|
setIsAuthenticated(false);
|
||||||
|
setCurrentUser('');
|
||||||
|
}
|
||||||
|
} catch {
|
||||||
|
// If auth discovery fails, fall back to no-auth to keep local dev workable.
|
||||||
|
setAuthEnabled(false);
|
||||||
|
setIsAuthenticated(true);
|
||||||
|
} finally {
|
||||||
|
if (!cancelled) setAuthReady(true);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
initAuth();
|
||||||
|
return () => {
|
||||||
|
cancelled = true;
|
||||||
|
};
|
||||||
|
}, []);
|
||||||
|
|
||||||
|
const handleLoginSuccess = (token: string, username: string) => {
|
||||||
|
localStorage.setItem('plexsync-token', token);
|
||||||
|
localStorage.setItem('plexsync-username', username);
|
||||||
|
setCurrentUser(username);
|
||||||
|
setIsAuthenticated(true);
|
||||||
|
};
|
||||||
|
|
||||||
|
const handleLogout = async () => {
|
||||||
|
try {
|
||||||
|
await apiService.logout();
|
||||||
|
} catch {
|
||||||
|
// ignore
|
||||||
|
}
|
||||||
|
localStorage.removeItem('plexsync-token');
|
||||||
|
localStorage.removeItem('plexsync-username');
|
||||||
|
setIsAuthenticated(false);
|
||||||
|
setCurrentUser('');
|
||||||
|
};
|
||||||
|
|
||||||
// Toast Notification System
|
// Toast Notification System
|
||||||
const [toasts, setToasts] = useState<Toast[]>([]);
|
const [toasts, setToasts] = useState<Toast[]>([]);
|
||||||
const timeoutsRef = useRef<{[key: number]: ReturnType<typeof setTimeout>}>({});
|
const timeoutsRef = useRef<{[key: number]: ReturnType<typeof setTimeout>}>({});
|
||||||
@@ -299,6 +375,7 @@ const App: React.FC = () => {
|
|||||||
|
|
||||||
// Fetch Local Playlists
|
// Fetch Local Playlists
|
||||||
const refreshLocal = useCallback(async () => {
|
const refreshLocal = useCallback(async () => {
|
||||||
|
if (!authReady || !isAuthenticated) return;
|
||||||
if (localAbortRef.current) localAbortRef.current.abort();
|
if (localAbortRef.current) localAbortRef.current.abort();
|
||||||
const abortController = new AbortController();
|
const abortController = new AbortController();
|
||||||
localAbortRef.current = abortController;
|
localAbortRef.current = abortController;
|
||||||
@@ -310,7 +387,7 @@ const App: React.FC = () => {
|
|||||||
}
|
}
|
||||||
setLoadingLocal(false);
|
setLoadingLocal(false);
|
||||||
localAbortRef.current = null;
|
localAbortRef.current = null;
|
||||||
}, [localPath]);
|
}, [authReady, isAuthenticated, localPath]);
|
||||||
|
|
||||||
const cancelLocalRefresh = () => {
|
const cancelLocalRefresh = () => {
|
||||||
if (localAbortRef.current) {
|
if (localAbortRef.current) {
|
||||||
@@ -323,6 +400,7 @@ const App: React.FC = () => {
|
|||||||
|
|
||||||
// Fetch Cloud Playlists and Info
|
// Fetch Cloud Playlists and Info
|
||||||
const refreshCloud = useCallback(async () => {
|
const refreshCloud = useCallback(async () => {
|
||||||
|
if (!authReady || !isAuthenticated) return;
|
||||||
if (cloudAbortRef.current) cloudAbortRef.current.abort();
|
if (cloudAbortRef.current) cloudAbortRef.current.abort();
|
||||||
const abortController = new AbortController();
|
const abortController = new AbortController();
|
||||||
cloudAbortRef.current = abortController;
|
cloudAbortRef.current = abortController;
|
||||||
@@ -344,7 +422,7 @@ const App: React.FC = () => {
|
|||||||
setLoadingCloud(false);
|
setLoadingCloud(false);
|
||||||
cloudAbortRef.current = null;
|
cloudAbortRef.current = null;
|
||||||
}
|
}
|
||||||
}, []);
|
}, [authReady, isAuthenticated]);
|
||||||
|
|
||||||
const cancelCloudRefresh = () => {
|
const cancelCloudRefresh = () => {
|
||||||
if (cloudAbortRef.current) {
|
if (cloudAbortRef.current) {
|
||||||
@@ -357,13 +435,15 @@ const App: React.FC = () => {
|
|||||||
|
|
||||||
// Load persisted configuration
|
// Load persisted configuration
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
|
if (!authReady || !isAuthenticated) return;
|
||||||
loadSettings();
|
loadSettings();
|
||||||
loadSchedule();
|
loadSchedule();
|
||||||
loadBackupSettings();
|
loadBackupSettings();
|
||||||
}, [loadSettings, loadSchedule, loadBackupSettings]);
|
}, [authReady, isAuthenticated, loadSettings, loadSchedule, loadBackupSettings]);
|
||||||
|
|
||||||
// Initial Load
|
// Initial Load
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
|
if (!authReady || !isAuthenticated) return;
|
||||||
refreshLocal();
|
refreshLocal();
|
||||||
refreshCloud();
|
refreshCloud();
|
||||||
return () => {
|
return () => {
|
||||||
@@ -371,7 +451,7 @@ const App: React.FC = () => {
|
|||||||
if (localAbortRef.current) localAbortRef.current.abort();
|
if (localAbortRef.current) localAbortRef.current.abort();
|
||||||
if (cloudAbortRef.current) cloudAbortRef.current.abort();
|
if (cloudAbortRef.current) cloudAbortRef.current.abort();
|
||||||
}
|
}
|
||||||
}, [refreshLocal, refreshCloud]);
|
}, [authReady, isAuthenticated, refreshLocal, refreshCloud]);
|
||||||
|
|
||||||
// Handle Strategy Change
|
// Handle Strategy Change
|
||||||
const handleStrategyChange = async (strategy: SyncStrategy, label: string) => {
|
const handleStrategyChange = async (strategy: SyncStrategy, label: string) => {
|
||||||
@@ -397,6 +477,7 @@ const App: React.FC = () => {
|
|||||||
|
|
||||||
// Handle Sync Trigger
|
// Handle Sync Trigger
|
||||||
const handleSyncTrigger = async () => {
|
const handleSyncTrigger = async () => {
|
||||||
|
if (!authReady || !isAuthenticated) return;
|
||||||
if (syncState !== SyncState.IDLE) return;
|
if (syncState !== SyncState.IDLE) return;
|
||||||
|
|
||||||
setSyncState(SyncState.SYNCING);
|
setSyncState(SyncState.SYNCING);
|
||||||
@@ -423,7 +504,16 @@ const App: React.FC = () => {
|
|||||||
|
|
||||||
// SSE for sync status
|
// SSE for sync status
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
const eventSource = new EventSource(`${import.meta.env.VITE_API_BASE_URL || ''}/api/sync/events`);
|
if (!authReady || !isAuthenticated) return;
|
||||||
|
|
||||||
|
const base = `${import.meta.env.VITE_API_BASE_URL || ''}/api/sync/events`;
|
||||||
|
const url = new URL(base, window.location.origin);
|
||||||
|
if (authEnabled) {
|
||||||
|
const token = localStorage.getItem('plexsync-token');
|
||||||
|
if (!token) return;
|
||||||
|
url.searchParams.set('access_token', token);
|
||||||
|
}
|
||||||
|
const eventSource = new EventSource(url.toString());
|
||||||
|
|
||||||
eventSource.onmessage = (event) => {
|
eventSource.onmessage = (event) => {
|
||||||
try {
|
try {
|
||||||
@@ -490,7 +580,24 @@ const App: React.FC = () => {
|
|||||||
return () => {
|
return () => {
|
||||||
eventSource.close();
|
eventSource.close();
|
||||||
};
|
};
|
||||||
}, [syncState, refreshLocal, refreshCloud, addToast]);
|
}, [authReady, isAuthenticated, authEnabled, syncState, refreshLocal, refreshCloud, addToast]);
|
||||||
|
|
||||||
|
if (!authReady) {
|
||||||
|
return (
|
||||||
|
<div className="min-h-screen flex items-center justify-center bg-gray-900 text-gray-200">
|
||||||
|
{t('common.loading')}
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (authEnabled && !isAuthenticated) {
|
||||||
|
return (
|
||||||
|
<LoginScreen
|
||||||
|
onLoginSuccess={handleLoginSuccess}
|
||||||
|
onLoginError={(msg) => addToast(msg)}
|
||||||
|
/>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
const handleConnectSuccess = async (serverInfo: PlexServerConnection) => {
|
const handleConnectSuccess = async (serverInfo: PlexServerConnection) => {
|
||||||
setCloudServerInfo(serverInfo);
|
setCloudServerInfo(serverInfo);
|
||||||
@@ -671,7 +778,7 @@ const App: React.FC = () => {
|
|||||||
<ArrowLeftRight size={24} strokeWidth={2.5} />
|
<ArrowLeftRight size={24} strokeWidth={2.5} />
|
||||||
</div>
|
</div>
|
||||||
<h1 className="text-xl font-bold tracking-tight text-white">
|
<h1 className="text-xl font-bold tracking-tight text-white">
|
||||||
Plex<span className="text-plex-orange">Sync</span>
|
<span className="text-plex-orange">PMS</span> Playlist Sync
|
||||||
</h1>
|
</h1>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -725,60 +832,73 @@ const App: React.FC = () => {
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
{/* Language Switcher */}
|
<div className="flex items-center gap-4">
|
||||||
<div className="relative">
|
{/* Language Switcher */}
|
||||||
|
<div className="relative">
|
||||||
|
<button
|
||||||
|
onClick={() => setIsLangMenuOpen(!isLangMenuOpen)}
|
||||||
|
className="flex items-center justify-center w-9 h-9 rounded-full border border-gray-700 bg-gray-800/50 text-gray-400 hover:text-white hover:bg-gray-700 transition-all"
|
||||||
|
title={t('common.switchLanguage')}
|
||||||
|
>
|
||||||
|
<Languages size={18} />
|
||||||
|
</button>
|
||||||
|
{isLangMenuOpen && (
|
||||||
|
<>
|
||||||
|
<div className="fixed inset-0 z-40" onClick={() => setIsLangMenuOpen(false)}></div>
|
||||||
|
<div className="absolute right-0 top-full mt-2 w-32 bg-gray-800 border border-gray-700 rounded-lg shadow-xl z-50 overflow-hidden">
|
||||||
|
<button
|
||||||
|
onClick={() => { setLanguage('en'); setIsLangMenuOpen(false); }}
|
||||||
|
className={`w-full px-4 py-2 text-sm text-left hover:bg-gray-700 transition-colors ${language === 'en' ? 'text-plex-orange font-bold' : 'text-gray-300'}`}
|
||||||
|
>
|
||||||
|
English
|
||||||
|
</button>
|
||||||
|
<button
|
||||||
|
onClick={() => { setLanguage('es'); setIsLangMenuOpen(false); }}
|
||||||
|
className={`w-full px-4 py-2 text-sm text-left hover:bg-gray-700 transition-colors ${language === 'es' ? 'text-plex-orange font-bold' : 'text-gray-300'}`}
|
||||||
|
>
|
||||||
|
Español
|
||||||
|
</button>
|
||||||
|
<button
|
||||||
|
onClick={() => { setLanguage('chs'); setIsLangMenuOpen(false); }}
|
||||||
|
className={`w-full px-4 py-2 text-sm text-left hover:bg-gray-700 transition-colors ${language === 'chs' ? 'text-plex-orange font-bold' : 'text-gray-300'}`}
|
||||||
|
>
|
||||||
|
简体中文
|
||||||
|
</button>
|
||||||
|
<button
|
||||||
|
onClick={() => { setLanguage('cht'); setIsLangMenuOpen(false); }}
|
||||||
|
className={`w-full px-4 py-2 text-sm text-left hover:bg-gray-700 transition-colors ${language === 'cht' ? 'text-plex-orange font-bold' : 'text-gray-300'}`}
|
||||||
|
>
|
||||||
|
繁體中文
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
|
</>
|
||||||
|
)}
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{/* Connection Status Button */}
|
||||||
<button
|
<button
|
||||||
onClick={() => setIsLangMenuOpen(!isLangMenuOpen)}
|
onClick={() => setIsConnectionModalOpen(true)}
|
||||||
className="flex items-center justify-center w-9 h-9 rounded-full border border-gray-700 bg-gray-800/50 text-gray-400 hover:text-white hover:bg-gray-700 transition-all"
|
className={`flex items-center justify-center w-9 h-9 rounded-full border transition-all duration-300 hover:scale-105 active:scale-95 shadow-md
|
||||||
title={t('common.switchLanguage')}
|
${isConnected
|
||||||
|
? "bg-green-500/10 border-green-500/50 text-green-400 hover:bg-green-500/20 hover:shadow-green-500/20"
|
||||||
|
: "bg-red-500/10 border-red-500/50 text-red-400 hover:bg-red-500/20 hover:shadow-red-500/20"
|
||||||
|
}`}
|
||||||
|
title={isConnected ? t('dashboard.connected') : t('dashboard.disconnected')}
|
||||||
>
|
>
|
||||||
<Languages size={18} />
|
{isConnected ? <Server size={18} /> : <ServerOff size={18} />}
|
||||||
</button>
|
</button>
|
||||||
{isLangMenuOpen && (
|
|
||||||
<>
|
{/* Logout (rightmost) */}
|
||||||
<div className="fixed inset-0 z-40" onClick={() => setIsLangMenuOpen(false)}></div>
|
{authEnabled && isAuthenticated && (
|
||||||
<div className="absolute right-0 top-full mt-2 w-32 bg-gray-800 border border-gray-700 rounded-lg shadow-xl z-50 overflow-hidden">
|
<button
|
||||||
<button
|
onClick={handleLogout}
|
||||||
onClick={() => { setLanguage('en'); setIsLangMenuOpen(false); }}
|
className="flex items-center justify-center w-9 h-9 rounded-full border border-gray-700 bg-gray-800/50 text-gray-400 hover:text-white hover:bg-gray-700 transition-all"
|
||||||
className={`w-full px-4 py-2 text-sm text-left hover:bg-gray-700 transition-colors ${language === 'en' ? 'text-plex-orange font-bold' : 'text-gray-300'}`}
|
title={t('auth.logout')}
|
||||||
>
|
>
|
||||||
English
|
<LogOut size={18} />
|
||||||
</button>
|
</button>
|
||||||
<button
|
|
||||||
onClick={() => { setLanguage('es'); setIsLangMenuOpen(false); }}
|
|
||||||
className={`w-full px-4 py-2 text-sm text-left hover:bg-gray-700 transition-colors ${language === 'es' ? 'text-plex-orange font-bold' : 'text-gray-300'}`}
|
|
||||||
>
|
|
||||||
Español
|
|
||||||
</button>
|
|
||||||
<button
|
|
||||||
onClick={() => { setLanguage('chs'); setIsLangMenuOpen(false); }}
|
|
||||||
className={`w-full px-4 py-2 text-sm text-left hover:bg-gray-700 transition-colors ${language === 'chs' ? 'text-plex-orange font-bold' : 'text-gray-300'}`}
|
|
||||||
>
|
|
||||||
简体中文
|
|
||||||
</button>
|
|
||||||
<button
|
|
||||||
onClick={() => { setLanguage('cht'); setIsLangMenuOpen(false); }}
|
|
||||||
className={`w-full px-4 py-2 text-sm text-left hover:bg-gray-700 transition-colors ${language === 'cht' ? 'text-plex-orange font-bold' : 'text-gray-300'}`}
|
|
||||||
>
|
|
||||||
繁體中文
|
|
||||||
</button>
|
|
||||||
</div>
|
|
||||||
</>
|
|
||||||
)}
|
)}
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
{/* Connection Status Button */}
|
|
||||||
<button
|
|
||||||
onClick={() => setIsConnectionModalOpen(true)}
|
|
||||||
className={`flex items-center justify-center w-9 h-9 rounded-full border transition-all duration-300 hover:scale-105 active:scale-95 shadow-md
|
|
||||||
${isConnected
|
|
||||||
? "bg-green-500/10 border-green-500/50 text-green-400 hover:bg-green-500/20 hover:shadow-green-500/20"
|
|
||||||
: "bg-red-500/10 border-red-500/50 text-red-400 hover:bg-red-500/20 hover:shadow-red-500/20"
|
|
||||||
}`}
|
|
||||||
title={isConnected ? t('dashboard.connected') : t('dashboard.disconnected')}
|
|
||||||
>
|
|
||||||
{isConnected ? <Server size={18} /> : <ServerOff size={18} />}
|
|
||||||
</button>
|
|
||||||
</div>
|
</div>
|
||||||
</>
|
</>
|
||||||
) : (
|
) : (
|
||||||
|
|||||||
@@ -0,0 +1,182 @@
|
|||||||
|
import React, { useState } from 'react';
|
||||||
|
import { useLanguage } from '../LanguageContext';
|
||||||
|
import { apiService } from '../services/api';
|
||||||
|
import { Lock, User, Loader2, Languages, ArrowRight, ArrowLeftRight } from 'lucide-react';
|
||||||
|
import type { LoginCredentials } from '../types';
|
||||||
|
|
||||||
|
interface LoginScreenProps {
|
||||||
|
onLoginSuccess: (token: string, username: string) => void;
|
||||||
|
onLoginError: (msg: string) => void;
|
||||||
|
}
|
||||||
|
|
||||||
|
const LoginScreen: React.FC<LoginScreenProps> = ({ onLoginSuccess, onLoginError }) => {
|
||||||
|
const { t, language, setLanguage } = useLanguage();
|
||||||
|
const [username, setUsername] = useState('');
|
||||||
|
const [password, setPassword] = useState('');
|
||||||
|
const [isLoading, setIsLoading] = useState(false);
|
||||||
|
const [localError, setLocalError] = useState<string | null>(null);
|
||||||
|
const [isLangMenuOpen, setIsLangMenuOpen] = useState(false);
|
||||||
|
|
||||||
|
const handleLogin = async (e: React.FormEvent) => {
|
||||||
|
e.preventDefault();
|
||||||
|
setIsLoading(true);
|
||||||
|
setLocalError(null);
|
||||||
|
|
||||||
|
try {
|
||||||
|
const creds: LoginCredentials = { username, password };
|
||||||
|
const response = await apiService.login(creds);
|
||||||
|
|
||||||
|
if (response.status === 'success') {
|
||||||
|
onLoginSuccess(response.data.token, response.data.username);
|
||||||
|
} else {
|
||||||
|
const errorMsg = response.message || t('auth.invalidCredentials');
|
||||||
|
setLocalError(errorMsg);
|
||||||
|
onLoginError(errorMsg);
|
||||||
|
}
|
||||||
|
} catch {
|
||||||
|
setLocalError(t('auth.invalidCredentials'));
|
||||||
|
} finally {
|
||||||
|
setIsLoading(false);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
const currentLangLabel =
|
||||||
|
language === 'en' ? 'English'
|
||||||
|
: language === 'es' ? 'Español'
|
||||||
|
: language === 'chs' ? '简体中文'
|
||||||
|
: '繁體中文';
|
||||||
|
|
||||||
|
return (
|
||||||
|
<div className="min-h-screen flex flex-col items-center justify-center bg-[radial-gradient(ellipse_at_top,_var(--tw-gradient-stops))] from-gray-800 via-gray-900 to-black p-4">
|
||||||
|
<div className="absolute top-0 left-0 w-full h-full overflow-hidden pointer-events-none z-0">
|
||||||
|
<div className="absolute top-0 left-1/4 w-96 h-96 bg-plex-orange/10 rounded-full blur-[100px] opacity-20"></div>
|
||||||
|
<div className="absolute bottom-0 right-1/4 w-96 h-96 bg-blue-500/10 rounded-full blur-[100px] opacity-20"></div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{/* Language Switcher (Top Right) */}
|
||||||
|
<div className="absolute top-6 right-6 z-20">
|
||||||
|
<div className="relative">
|
||||||
|
<button
|
||||||
|
onClick={() => setIsLangMenuOpen(!isLangMenuOpen)}
|
||||||
|
className="flex items-center space-x-2 px-3 py-2 rounded-lg bg-gray-800/50 hover:bg-gray-700/50 border border-gray-700 hover:border-gray-600 text-gray-300 transition-all backdrop-blur-sm"
|
||||||
|
>
|
||||||
|
<Languages size={16} />
|
||||||
|
<span className="text-sm font-medium">{currentLangLabel}</span>
|
||||||
|
</button>
|
||||||
|
|
||||||
|
{isLangMenuOpen && (
|
||||||
|
<>
|
||||||
|
<div className="fixed inset-0 z-10" onClick={() => setIsLangMenuOpen(false)}></div>
|
||||||
|
<div className="absolute right-0 top-full mt-2 w-32 bg-gray-800 border border-gray-700 rounded-lg shadow-xl z-20 overflow-hidden">
|
||||||
|
<button
|
||||||
|
onClick={() => { setLanguage('en'); setIsLangMenuOpen(false); }}
|
||||||
|
className={`w-full px-4 py-2 text-sm text-left hover:bg-gray-700 transition-colors ${language === 'en' ? 'text-plex-orange font-bold' : 'text-gray-300'}`}
|
||||||
|
>
|
||||||
|
English
|
||||||
|
</button>
|
||||||
|
<button
|
||||||
|
onClick={() => { setLanguage('es'); setIsLangMenuOpen(false); }}
|
||||||
|
className={`w-full px-4 py-2 text-sm text-left hover:bg-gray-700 transition-colors ${language === 'es' ? 'text-plex-orange font-bold' : 'text-gray-300'}`}
|
||||||
|
>
|
||||||
|
Español
|
||||||
|
</button>
|
||||||
|
<button
|
||||||
|
onClick={() => { setLanguage('chs'); setIsLangMenuOpen(false); }}
|
||||||
|
className={`w-full px-4 py-2 text-sm text-left hover:bg-gray-700 transition-colors ${language === 'chs' ? 'text-plex-orange font-bold' : 'text-gray-300'}`}
|
||||||
|
>
|
||||||
|
简体中文
|
||||||
|
</button>
|
||||||
|
<button
|
||||||
|
onClick={() => { setLanguage('cht'); setIsLangMenuOpen(false); }}
|
||||||
|
className={`w-full px-4 py-2 text-sm text-left hover:bg-gray-700 transition-colors ${language === 'cht' ? 'text-plex-orange font-bold' : 'text-gray-300'}`}
|
||||||
|
>
|
||||||
|
繁體中文
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
|
</>
|
||||||
|
)}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{/* Main Card */}
|
||||||
|
<div className="w-full max-w-md bg-gray-900/60 backdrop-blur-xl border border-gray-700/50 rounded-2xl shadow-2xl p-8 z-10">
|
||||||
|
<div className="text-center mb-8 flex flex-col items-center">
|
||||||
|
<div className="inline-flex items-center justify-center p-3 rounded-xl bg-gradient-to-br from-plex-orange to-yellow-600 shadow-lg shadow-plex-orange/20 mb-4">
|
||||||
|
<ArrowLeftRight size={32} strokeWidth={2.5} className="text-gray-900" />
|
||||||
|
</div>
|
||||||
|
<h1 className="text-2xl font-bold tracking-tight text-white">
|
||||||
|
<span className="text-plex-orange">PMS</span> Playlist Sync
|
||||||
|
</h1>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<form onSubmit={handleLogin} className="space-y-4">
|
||||||
|
{localError && (
|
||||||
|
<div className="p-3 rounded-lg bg-red-500/10 border border-red-500/20 text-red-400 text-xs flex items-center justify-center">
|
||||||
|
{localError}
|
||||||
|
</div>
|
||||||
|
)}
|
||||||
|
|
||||||
|
<div className="space-y-1">
|
||||||
|
<label className="text-xs font-semibold text-gray-500 uppercase tracking-wider ml-1">{t('auth.username')}</label>
|
||||||
|
<div className="relative group">
|
||||||
|
<div className="absolute inset-y-0 left-0 pl-3 flex items-center pointer-events-none">
|
||||||
|
<User size={16} className="text-gray-500 group-focus-within:text-plex-orange transition-colors" />
|
||||||
|
</div>
|
||||||
|
<input
|
||||||
|
type="text"
|
||||||
|
value={username}
|
||||||
|
onChange={(e) => setUsername(e.target.value)}
|
||||||
|
className="w-full h-11 pl-10 pr-4 bg-gray-800/50 border border-gray-600 rounded-lg text-white placeholder-gray-500 focus:border-plex-orange focus:ring-1 focus:ring-plex-orange focus:outline-none transition-all"
|
||||||
|
placeholder="username"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div className="space-y-1">
|
||||||
|
<label className="text-xs font-semibold text-gray-500 uppercase tracking-wider ml-1">{t('auth.password')}</label>
|
||||||
|
<div className="relative group">
|
||||||
|
<div className="absolute inset-y-0 left-0 pl-3 flex items-center pointer-events-none">
|
||||||
|
<Lock size={16} className="text-gray-500 group-focus-within:text-plex-orange transition-colors" />
|
||||||
|
</div>
|
||||||
|
<input
|
||||||
|
type="password"
|
||||||
|
value={password}
|
||||||
|
onChange={(e) => setPassword(e.target.value)}
|
||||||
|
className="w-full h-11 pl-10 pr-4 bg-gray-800/50 border border-gray-600 rounded-lg text-white placeholder-gray-500 focus:border-plex-orange focus:ring-1 focus:ring-plex-orange focus:outline-none transition-all"
|
||||||
|
placeholder="password"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<button
|
||||||
|
type="submit"
|
||||||
|
disabled={isLoading || !username || !password}
|
||||||
|
className={`w-full h-12 mt-6 rounded-lg text-sm font-bold flex items-center justify-center gap-2 transition-all shadow-lg
|
||||||
|
${isLoading
|
||||||
|
? 'bg-gray-700 text-gray-400 cursor-not-allowed'
|
||||||
|
: 'bg-plex-orange text-gray-900 hover:bg-yellow-500 active:scale-[0.98]'
|
||||||
|
}`}
|
||||||
|
>
|
||||||
|
{isLoading ? (
|
||||||
|
<>
|
||||||
|
<Loader2 size={18} className="animate-spin" />
|
||||||
|
<span>{t('auth.loggingIn')}</span>
|
||||||
|
</>
|
||||||
|
) : (
|
||||||
|
<>
|
||||||
|
<span>{t('auth.loginBtn')}</span>
|
||||||
|
<ArrowRight size={18} />
|
||||||
|
</>
|
||||||
|
)}
|
||||||
|
</button>
|
||||||
|
</form>
|
||||||
|
|
||||||
|
<div className="mt-8 pt-6 border-t border-gray-700/50 text-center">
|
||||||
|
<p className="text-[10px] text-gray-600">© PMS Playlist Sync</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
};
|
||||||
|
|
||||||
|
export default LoginScreen;
|
||||||
+1
-1
@@ -3,7 +3,7 @@
|
|||||||
<head>
|
<head>
|
||||||
<meta charset="UTF-8" />
|
<meta charset="UTF-8" />
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||||
<title>PlexSync Manager</title>
|
<title>PMS Playlist Sync</title>
|
||||||
<script src="https://cdn.tailwindcss.com"></script>
|
<script src="https://cdn.tailwindcss.com"></script>
|
||||||
<script>
|
<script>
|
||||||
tailwind.config = {
|
tailwind.config = {
|
||||||
|
|||||||
@@ -4,6 +4,17 @@ export const cht = {
|
|||||||
manager: '管理',
|
manager: '管理',
|
||||||
footer: '© {year} PMS Playlist Sync。已連線至 Docker 後端。',
|
footer: '© {year} PMS Playlist Sync。已連線至 Docker 後端。',
|
||||||
},
|
},
|
||||||
|
auth: {
|
||||||
|
title: '登入',
|
||||||
|
subtitle: '登入後管理播放清單同步',
|
||||||
|
username: '使用者名稱',
|
||||||
|
password: '密碼',
|
||||||
|
loginBtn: '登入',
|
||||||
|
logout: '登出',
|
||||||
|
loggingIn: '驗證中…',
|
||||||
|
invalidCredentials: '使用者名稱或密碼錯誤',
|
||||||
|
welcome: '歡迎,{user}',
|
||||||
|
},
|
||||||
common: {
|
common: {
|
||||||
save: '儲存',
|
save: '儲存',
|
||||||
cancel: '取消',
|
cancel: '取消',
|
||||||
|
|||||||
@@ -4,6 +4,17 @@ export const en = {
|
|||||||
manager: 'Manager',
|
manager: 'Manager',
|
||||||
footer: '© {year} PMS Playlist Sync. Connected to Docker backend.',
|
footer: '© {year} PMS Playlist Sync. Connected to Docker backend.',
|
||||||
},
|
},
|
||||||
|
auth: {
|
||||||
|
title: 'Login',
|
||||||
|
subtitle: 'Sign in to manage your playlist syncs',
|
||||||
|
username: 'Username',
|
||||||
|
password: 'Password',
|
||||||
|
loginBtn: 'Sign In',
|
||||||
|
logout: 'Logout',
|
||||||
|
loggingIn: 'Verifying...',
|
||||||
|
invalidCredentials: 'Invalid username or password',
|
||||||
|
welcome: 'Welcome, {user}',
|
||||||
|
},
|
||||||
common: {
|
common: {
|
||||||
save: 'Save',
|
save: 'Save',
|
||||||
cancel: 'Cancel',
|
cancel: 'Cancel',
|
||||||
|
|||||||
@@ -4,6 +4,17 @@ export const es = {
|
|||||||
manager: 'Gestor',
|
manager: 'Gestor',
|
||||||
footer: '© {year} PMS Playlist Sync. Conectado al backend Docker.',
|
footer: '© {year} PMS Playlist Sync. Conectado al backend Docker.',
|
||||||
},
|
},
|
||||||
|
auth: {
|
||||||
|
title: 'Iniciar Sesión',
|
||||||
|
subtitle: 'Ingrese para gestionar sus sincronizaciones',
|
||||||
|
username: 'Usuario',
|
||||||
|
password: 'Password',
|
||||||
|
loginBtn: 'Entrar',
|
||||||
|
logout: 'Salir',
|
||||||
|
loggingIn: 'Verificando...',
|
||||||
|
invalidCredentials: 'Usuario o contraseña incorrectos',
|
||||||
|
welcome: 'Bienvenido, {user}',
|
||||||
|
},
|
||||||
common: {
|
common: {
|
||||||
save: 'Guardar',
|
save: 'Guardar',
|
||||||
cancel: 'Cancelar',
|
cancel: 'Cancelar',
|
||||||
|
|||||||
@@ -4,6 +4,17 @@ export const zh = {
|
|||||||
manager: '管理',
|
manager: '管理',
|
||||||
footer: '© {year} PMS Playlist Sync。已连接到 Docker 后端。',
|
footer: '© {year} PMS Playlist Sync。已连接到 Docker 后端。',
|
||||||
},
|
},
|
||||||
|
auth: {
|
||||||
|
title: '登录',
|
||||||
|
subtitle: '登录后管理播放列表同步',
|
||||||
|
username: '用户名',
|
||||||
|
password: '密码',
|
||||||
|
loginBtn: '登录',
|
||||||
|
logout: '登出',
|
||||||
|
loggingIn: '验证中...',
|
||||||
|
invalidCredentials: '用户名或密码错误',
|
||||||
|
welcome: '欢迎,{user}',
|
||||||
|
},
|
||||||
common: {
|
common: {
|
||||||
save: '保存',
|
save: '保存',
|
||||||
cancel: '取消',
|
cancel: '取消',
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
{
|
{
|
||||||
"name": "PlexSync Manager",
|
"name": "PMS Playlist Sync",
|
||||||
"description": "A modern dashboard to synchronize and manage playlists between Local and Cloud Plex servers.",
|
"description": "A modern dashboard to synchronize and manage playlists between Local and Cloud Plex servers.",
|
||||||
"requestFramePermissions": []
|
"requestFramePermissions": []
|
||||||
}
|
}
|
||||||
+58
-14
@@ -1,7 +1,24 @@
|
|||||||
import { Playlist, ServerType, ApiResponse, PlexServerConnection, PlexConnectionSettings, PlexLibrary, ReplacementRule, PathMappingConfig, PathMappingMode, PathMappingRules, SyncStrategy, ScheduleSettings, BackupSettings } from '../types';
|
import { Playlist, ServerType, ApiResponse, PlexServerConnection, PlexConnectionSettings, PlexLibrary, ReplacementRule, PathMappingConfig, PathMappingMode, PathMappingRules, SyncStrategy, ScheduleSettings, BackupSettings, LoginCredentials, AuthResponse } from '../types';
|
||||||
|
|
||||||
const API_BASE = import.meta.env.VITE_API_BASE_URL || '';
|
const API_BASE = import.meta.env.VITE_API_BASE_URL || '';
|
||||||
|
|
||||||
|
const getAuthToken = (): string | null => {
|
||||||
|
try {
|
||||||
|
return localStorage.getItem('plexsync-token');
|
||||||
|
} catch {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
const authFetch = (input: RequestInfo | URL, init: RequestInit = {}) => {
|
||||||
|
const token = getAuthToken();
|
||||||
|
const headers = new Headers(init.headers || {});
|
||||||
|
if (token) {
|
||||||
|
headers.set('Authorization', `Bearer ${token}`);
|
||||||
|
}
|
||||||
|
return fetch(input, { ...init, headers });
|
||||||
|
};
|
||||||
|
|
||||||
const MODE_TO_STRATEGY: Record<string, SyncStrategy> = {
|
const MODE_TO_STRATEGY: Record<string, SyncStrategy> = {
|
||||||
local_force: SyncStrategy.LOCAL_OVERWRITE,
|
local_force: SyncStrategy.LOCAL_OVERWRITE,
|
||||||
remote_force: SyncStrategy.CLOUD_OVERWRITE,
|
remote_force: SyncStrategy.CLOUD_OVERWRITE,
|
||||||
@@ -20,6 +37,9 @@ const handleResponse = async <T>(response: Response): Promise<ApiResponse<T>> =>
|
|||||||
try {
|
try {
|
||||||
const data = await response.json();
|
const data = await response.json();
|
||||||
if (!response.ok) {
|
if (!response.ok) {
|
||||||
|
if (response.status === 401) {
|
||||||
|
return { data: data as T, status: 'error', message: 'Unauthorized' };
|
||||||
|
}
|
||||||
return { data: data as T, status: 'error', message: (data as any)?.detail || response.statusText };
|
return { data: data as T, status: 'error', message: (data as any)?.detail || response.statusText };
|
||||||
}
|
}
|
||||||
return { data, status: 'success' };
|
return { data, status: 'success' };
|
||||||
@@ -97,8 +117,32 @@ const pathMappingToApi = (config: PathMappingConfig) => {
|
|||||||
};
|
};
|
||||||
|
|
||||||
export const apiService = {
|
export const apiService = {
|
||||||
|
async getAuthConfig(): Promise<ApiResponse<{ enabled: boolean }>> {
|
||||||
|
const response = await fetch(`${API_BASE}/api/auth/config`);
|
||||||
|
return handleResponse(response);
|
||||||
|
},
|
||||||
|
|
||||||
|
async login(creds: LoginCredentials): Promise<ApiResponse<AuthResponse>> {
|
||||||
|
const response = await fetch(`${API_BASE}/api/auth/login`, {
|
||||||
|
method: 'POST',
|
||||||
|
headers: { 'Content-Type': 'application/json' },
|
||||||
|
body: JSON.stringify(creds),
|
||||||
|
});
|
||||||
|
return handleResponse(response);
|
||||||
|
},
|
||||||
|
|
||||||
|
async me(): Promise<ApiResponse<{ username: string }>> {
|
||||||
|
const response = await authFetch(`${API_BASE}/api/auth/me`);
|
||||||
|
return handleResponse(response);
|
||||||
|
},
|
||||||
|
|
||||||
|
async logout(): Promise<ApiResponse<{ status: string }>> {
|
||||||
|
const response = await authFetch(`${API_BASE}/api/auth/logout`, { method: 'POST' });
|
||||||
|
return handleResponse(response);
|
||||||
|
},
|
||||||
|
|
||||||
async getSettings(): Promise<ApiResponse<{ strategy: SyncStrategy; pathMapping: PathMappingConfig; connection: PlexConnectionSettings; localPath: string }>> {
|
async getSettings(): Promise<ApiResponse<{ strategy: SyncStrategy; pathMapping: PathMappingConfig; connection: PlexConnectionSettings; localPath: string }>> {
|
||||||
const response = await fetch(`${API_BASE}/api/settings`);
|
const response = await authFetch(`${API_BASE}/api/settings`);
|
||||||
const result = await handleResponse<any>(response);
|
const result = await handleResponse<any>(response);
|
||||||
if (result.status === 'success') {
|
if (result.status === 'success') {
|
||||||
const mode = result.data.sync_mode as string;
|
const mode = result.data.sync_mode as string;
|
||||||
@@ -118,7 +162,7 @@ export const apiService = {
|
|||||||
|
|
||||||
async updateSyncStrategy(strategy: SyncStrategy): Promise<ApiResponse<{ sync_mode: string }>> {
|
async updateSyncStrategy(strategy: SyncStrategy): Promise<ApiResponse<{ sync_mode: string }>> {
|
||||||
const payload = { mode: STRATEGY_TO_MODE[strategy] };
|
const payload = { mode: STRATEGY_TO_MODE[strategy] };
|
||||||
const response = await fetch(`${API_BASE}/api/settings/sync-mode`, {
|
const response = await authFetch(`${API_BASE}/api/settings/sync-mode`, {
|
||||||
method: 'PUT',
|
method: 'PUT',
|
||||||
headers: { 'Content-Type': 'application/json' },
|
headers: { 'Content-Type': 'application/json' },
|
||||||
body: JSON.stringify(payload),
|
body: JSON.stringify(payload),
|
||||||
@@ -128,7 +172,7 @@ export const apiService = {
|
|||||||
|
|
||||||
async savePathMapping(config: PathMappingConfig): Promise<ApiResponse<null>> {
|
async savePathMapping(config: PathMappingConfig): Promise<ApiResponse<null>> {
|
||||||
const payload = pathMappingToApi(config);
|
const payload = pathMappingToApi(config);
|
||||||
const response = await fetch(`${API_BASE}/api/settings/path-mapping`, {
|
const response = await authFetch(`${API_BASE}/api/settings/path-mapping`, {
|
||||||
method: 'PUT',
|
method: 'PUT',
|
||||||
headers: { 'Content-Type': 'application/json' },
|
headers: { 'Content-Type': 'application/json' },
|
||||||
body: JSON.stringify(payload),
|
body: JSON.stringify(payload),
|
||||||
@@ -137,7 +181,7 @@ export const apiService = {
|
|||||||
},
|
},
|
||||||
|
|
||||||
async updateLibrary(libraryName: string): Promise<ApiResponse<{ library_name: string }>> {
|
async updateLibrary(libraryName: string): Promise<ApiResponse<{ library_name: string }>> {
|
||||||
const response = await fetch(`${API_BASE}/api/settings/library`, {
|
const response = await authFetch(`${API_BASE}/api/settings/library`, {
|
||||||
method: 'PUT',
|
method: 'PUT',
|
||||||
headers: { 'Content-Type': 'application/json' },
|
headers: { 'Content-Type': 'application/json' },
|
||||||
body: JSON.stringify({ library_name: libraryName }),
|
body: JSON.stringify({ library_name: libraryName }),
|
||||||
@@ -146,12 +190,12 @@ export const apiService = {
|
|||||||
},
|
},
|
||||||
|
|
||||||
async getScheduleSettings(): Promise<ApiResponse<ScheduleSettings & { nextRun?: string }>> {
|
async getScheduleSettings(): Promise<ApiResponse<ScheduleSettings & { nextRun?: string }>> {
|
||||||
const response = await fetch(`${API_BASE}/api/schedule`);
|
const response = await authFetch(`${API_BASE}/api/schedule`);
|
||||||
return handleResponse(response);
|
return handleResponse(response);
|
||||||
},
|
},
|
||||||
|
|
||||||
async saveScheduleSettings(settings: ScheduleSettings): Promise<ApiResponse<null>> {
|
async saveScheduleSettings(settings: ScheduleSettings): Promise<ApiResponse<null>> {
|
||||||
const response = await fetch(`${API_BASE}/api/schedule`, {
|
const response = await authFetch(`${API_BASE}/api/schedule`, {
|
||||||
method: 'PUT',
|
method: 'PUT',
|
||||||
headers: { 'Content-Type': 'application/json' },
|
headers: { 'Content-Type': 'application/json' },
|
||||||
body: JSON.stringify(settings),
|
body: JSON.stringify(settings),
|
||||||
@@ -164,7 +208,7 @@ export const apiService = {
|
|||||||
if (serverType === ServerType.LOCAL && localPath) {
|
if (serverType === ServerType.LOCAL && localPath) {
|
||||||
params.append('local_path', localPath);
|
params.append('local_path', localPath);
|
||||||
}
|
}
|
||||||
const response = await fetch(`${API_BASE}/api/playlists?${params.toString()}`, { signal });
|
const response = await authFetch(`${API_BASE}/api/playlists?${params.toString()}`, { signal });
|
||||||
const result = await handleResponse<any>(response);
|
const result = await handleResponse<any>(response);
|
||||||
if (result.status === 'success' && (result.data as any)?.playlists) {
|
if (result.status === 'success' && (result.data as any)?.playlists) {
|
||||||
return { data: (result.data.playlists as any[]).map(mapPlaylist), status: 'success' };
|
return { data: (result.data.playlists as any[]).map(mapPlaylist), status: 'success' };
|
||||||
@@ -173,7 +217,7 @@ export const apiService = {
|
|||||||
},
|
},
|
||||||
|
|
||||||
async getServerStatus(signal?: AbortSignal): Promise<ApiResponse<PlexServerConnection>> {
|
async getServerStatus(signal?: AbortSignal): Promise<ApiResponse<PlexServerConnection>> {
|
||||||
const response = await fetch(`${API_BASE}/api/server`, { signal });
|
const response = await authFetch(`${API_BASE}/api/server`, { signal });
|
||||||
const result = await handleResponse<any>(response);
|
const result = await handleResponse<any>(response);
|
||||||
if (result.status === 'success') {
|
if (result.status === 'success') {
|
||||||
const info = result.data.serverInfo || {};
|
const info = result.data.serverInfo || {};
|
||||||
@@ -194,7 +238,7 @@ export const apiService = {
|
|||||||
},
|
},
|
||||||
|
|
||||||
async connectToPlex(settings: PlexConnectionSettings, signal?: AbortSignal): Promise<ApiResponse<{ token: string; serverInfo: PlexServerConnection }>> {
|
async connectToPlex(settings: PlexConnectionSettings, signal?: AbortSignal): Promise<ApiResponse<{ token: string; serverInfo: PlexServerConnection }>> {
|
||||||
const response = await fetch(`${API_BASE}/api/connect`, {
|
const response = await authFetch(`${API_BASE}/api/connect`, {
|
||||||
method: 'POST',
|
method: 'POST',
|
||||||
headers: { 'Content-Type': 'application/json' },
|
headers: { 'Content-Type': 'application/json' },
|
||||||
body: JSON.stringify({
|
body: JSON.stringify({
|
||||||
@@ -219,7 +263,7 @@ export const apiService = {
|
|||||||
},
|
},
|
||||||
|
|
||||||
async syncPlaylists(strategy: SyncStrategy, _pathMapping: PathMappingConfig, localPath?: string): Promise<ApiResponse<null>> {
|
async syncPlaylists(strategy: SyncStrategy, _pathMapping: PathMappingConfig, localPath?: string): Promise<ApiResponse<null>> {
|
||||||
const response = await fetch(`${API_BASE}/api/sync`, {
|
const response = await authFetch(`${API_BASE}/api/sync`, {
|
||||||
method: 'POST',
|
method: 'POST',
|
||||||
headers: { 'Content-Type': 'application/json' },
|
headers: { 'Content-Type': 'application/json' },
|
||||||
body: JSON.stringify({
|
body: JSON.stringify({
|
||||||
@@ -231,12 +275,12 @@ export const apiService = {
|
|||||||
},
|
},
|
||||||
|
|
||||||
async getSyncStatus(): Promise<ApiResponse<{ is_syncing: boolean; last_sync_time: string | null; status: string; error: string | null }>> {
|
async getSyncStatus(): Promise<ApiResponse<{ is_syncing: boolean; last_sync_time: string | null; status: string; error: string | null }>> {
|
||||||
const response = await fetch(`${API_BASE}/api/sync/status`);
|
const response = await authFetch(`${API_BASE}/api/sync/status`);
|
||||||
return handleResponse(response);
|
return handleResponse(response);
|
||||||
},
|
},
|
||||||
|
|
||||||
async getBackupSettings(): Promise<ApiResponse<BackupSettings>> {
|
async getBackupSettings(): Promise<ApiResponse<BackupSettings>> {
|
||||||
const response = await fetch(`${API_BASE}/api/backup/settings`);
|
const response = await authFetch(`${API_BASE}/api/backup/settings`);
|
||||||
const result = await handleResponse<any>(response);
|
const result = await handleResponse<any>(response);
|
||||||
if (result.status === 'success') {
|
if (result.status === 'success') {
|
||||||
return {
|
return {
|
||||||
@@ -251,7 +295,7 @@ export const apiService = {
|
|||||||
},
|
},
|
||||||
|
|
||||||
async saveBackupSettings(settings: BackupSettings): Promise<ApiResponse<null>> {
|
async saveBackupSettings(settings: BackupSettings): Promise<ApiResponse<null>> {
|
||||||
const response = await fetch(`${API_BASE}/api/backup/settings`, {
|
const response = await authFetch(`${API_BASE}/api/backup/settings`, {
|
||||||
method: 'PUT',
|
method: 'PUT',
|
||||||
headers: { 'Content-Type': 'application/json' },
|
headers: { 'Content-Type': 'application/json' },
|
||||||
body: JSON.stringify({
|
body: JSON.stringify({
|
||||||
|
|||||||
@@ -11,7 +11,8 @@
|
|||||||
],
|
],
|
||||||
"skipLibCheck": true,
|
"skipLibCheck": true,
|
||||||
"types": [
|
"types": [
|
||||||
"node"
|
"node",
|
||||||
|
"vite/client"
|
||||||
],
|
],
|
||||||
"moduleResolution": "bundler",
|
"moduleResolution": "bundler",
|
||||||
"isolatedModules": true,
|
"isolatedModules": true,
|
||||||
|
|||||||
@@ -116,3 +116,14 @@ export interface ApiResponse<T> {
|
|||||||
status: 'success' | 'error';
|
status: 'success' | 'error';
|
||||||
message?: string;
|
message?: string;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export interface LoginCredentials {
|
||||||
|
username: string;
|
||||||
|
password: string;
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface AuthResponse {
|
||||||
|
token: string;
|
||||||
|
username: string;
|
||||||
|
expires_in?: number;
|
||||||
|
}
|
||||||
Vendored
+1
@@ -0,0 +1 @@
|
|||||||
|
/// <reference types="vite/client" />
|
||||||
+88
-14
@@ -1,4 +1,6 @@
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
import React, { useEffect, useState, useCallback, useRef } from 'react';
|
import React, { useEffect, useState, useCallback, useRef } from 'react';
|
||||||
import { Playlist, ServerType, SyncStrategy, PlexServerConnection, PathMappingConfig, PathMappingMode, SyncState, ScheduleSettings, ScheduleMode, BackupSettings } from './types';
|
import { Playlist, ServerType, SyncStrategy, PlexServerConnection, PathMappingConfig, PathMappingMode, SyncState, ScheduleSettings, ScheduleMode, BackupSettings } from './types';
|
||||||
import { apiService } from './services/api';
|
import { apiService } from './services/api';
|
||||||
@@ -16,7 +18,8 @@ import { SYNC_BANNER_PADDING_X, SYNC_BANNER_PADDING_Y, SYNC_BANNER_MIN_WIDTH } f
|
|||||||
import ServerPanel from './components/ServerPanel';
|
import ServerPanel from './components/ServerPanel';
|
||||||
import StrategySelector from './components/StrategySelector';
|
import StrategySelector from './components/StrategySelector';
|
||||||
import ConnectionModal from './components/ConnectionModal';
|
import ConnectionModal from './components/ConnectionModal';
|
||||||
import { ArrowLeftRight, ShieldCheck, X, Server, ServerOff, Clock, Eye, EyeOff, Type, Code2, Archive, Languages } from 'lucide-react';
|
import LoginScreen from './components/LoginScreen';
|
||||||
|
import { ArrowLeftRight, ShieldCheck, X, Server, ServerOff, Clock, Eye, EyeOff, Type, Code2, Archive, Languages, LogOut, User } from 'lucide-react';
|
||||||
import { useLanguage } from './LanguageContext';
|
import { useLanguage } from './LanguageContext';
|
||||||
|
|
||||||
interface Toast {
|
interface Toast {
|
||||||
@@ -115,6 +118,12 @@ const useStripeAnimation = (syncState: SyncState) => {
|
|||||||
|
|
||||||
const App: React.FC = () => {
|
const App: React.FC = () => {
|
||||||
const { t, language, setLanguage } = useLanguage();
|
const { t, language, setLanguage } = useLanguage();
|
||||||
|
|
||||||
|
// Auth State
|
||||||
|
const [isAuthenticated, setIsAuthenticated] = useState(false);
|
||||||
|
const [currentUser, setCurrentUser] = useState('');
|
||||||
|
|
||||||
|
// App Data State
|
||||||
const [localPlaylists, setLocalPlaylists] = useState<Playlist[]>([]);
|
const [localPlaylists, setLocalPlaylists] = useState<Playlist[]>([]);
|
||||||
const [cloudPlaylists, setCloudPlaylists] = useState<Playlist[]>([]);
|
const [cloudPlaylists, setCloudPlaylists] = useState<Playlist[]>([]);
|
||||||
const [cloudServerInfo, setCloudServerInfo] = useState<PlexServerConnection | undefined>(undefined);
|
const [cloudServerInfo, setCloudServerInfo] = useState<PlexServerConnection | undefined>(undefined);
|
||||||
@@ -198,6 +207,16 @@ const App: React.FC = () => {
|
|||||||
timeoutsRef.current[id] = dismissTimer;
|
timeoutsRef.current[id] = dismissTimer;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
// Check auth on mount
|
||||||
|
useEffect(() => {
|
||||||
|
const savedToken = localStorage.getItem('plexsync-token');
|
||||||
|
const savedUser = localStorage.getItem('plexsync-username');
|
||||||
|
if (savedToken && savedUser) {
|
||||||
|
setIsAuthenticated(true);
|
||||||
|
setCurrentUser(savedUser);
|
||||||
|
}
|
||||||
|
}, []);
|
||||||
|
|
||||||
// Effect to trigger the "slide down" animation
|
// Effect to trigger the "slide down" animation
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
const enteringIds = toasts.filter(t => t.entering).map(t => t.id);
|
const enteringIds = toasts.filter(t => t.entering).map(t => t.id);
|
||||||
@@ -236,6 +255,7 @@ const App: React.FC = () => {
|
|||||||
|
|
||||||
// Fetch Local Playlists
|
// Fetch Local Playlists
|
||||||
const refreshLocal = useCallback(async () => {
|
const refreshLocal = useCallback(async () => {
|
||||||
|
if (!isAuthenticated) return;
|
||||||
if (localAbortRef.current) localAbortRef.current.abort();
|
if (localAbortRef.current) localAbortRef.current.abort();
|
||||||
const abortController = new AbortController();
|
const abortController = new AbortController();
|
||||||
localAbortRef.current = abortController;
|
localAbortRef.current = abortController;
|
||||||
@@ -247,7 +267,7 @@ const App: React.FC = () => {
|
|||||||
}
|
}
|
||||||
setLoadingLocal(false);
|
setLoadingLocal(false);
|
||||||
localAbortRef.current = null;
|
localAbortRef.current = null;
|
||||||
}, []);
|
}, [isAuthenticated]);
|
||||||
|
|
||||||
const cancelLocalRefresh = () => {
|
const cancelLocalRefresh = () => {
|
||||||
if (localAbortRef.current) {
|
if (localAbortRef.current) {
|
||||||
@@ -260,6 +280,7 @@ const App: React.FC = () => {
|
|||||||
|
|
||||||
// Fetch Cloud Playlists and Info
|
// Fetch Cloud Playlists and Info
|
||||||
const refreshCloud = useCallback(async () => {
|
const refreshCloud = useCallback(async () => {
|
||||||
|
if (!isAuthenticated) return;
|
||||||
if (cloudAbortRef.current) cloudAbortRef.current.abort();
|
if (cloudAbortRef.current) cloudAbortRef.current.abort();
|
||||||
const abortController = new AbortController();
|
const abortController = new AbortController();
|
||||||
cloudAbortRef.current = abortController;
|
cloudAbortRef.current = abortController;
|
||||||
@@ -281,7 +302,7 @@ const App: React.FC = () => {
|
|||||||
setLoadingCloud(false);
|
setLoadingCloud(false);
|
||||||
cloudAbortRef.current = null;
|
cloudAbortRef.current = null;
|
||||||
}
|
}
|
||||||
}, []);
|
}, [isAuthenticated]);
|
||||||
|
|
||||||
const cancelCloudRefresh = () => {
|
const cancelCloudRefresh = () => {
|
||||||
if (cloudAbortRef.current) {
|
if (cloudAbortRef.current) {
|
||||||
@@ -292,16 +313,18 @@ const App: React.FC = () => {
|
|||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
// Initial Load
|
// Initial Load (Only if Authenticated)
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
refreshLocal();
|
if (isAuthenticated) {
|
||||||
refreshCloud();
|
refreshLocal();
|
||||||
|
refreshCloud();
|
||||||
|
}
|
||||||
return () => {
|
return () => {
|
||||||
// Cleanup on unmount
|
// Cleanup on unmount
|
||||||
if (localAbortRef.current) localAbortRef.current.abort();
|
if (localAbortRef.current) localAbortRef.current.abort();
|
||||||
if (cloudAbortRef.current) cloudAbortRef.current.abort();
|
if (cloudAbortRef.current) cloudAbortRef.current.abort();
|
||||||
}
|
}
|
||||||
}, [refreshLocal, refreshCloud]);
|
}, [isAuthenticated, refreshLocal, refreshCloud]);
|
||||||
|
|
||||||
// Handle Strategy Change
|
// Handle Strategy Change
|
||||||
const handleStrategyChange = (strategy: SyncStrategy, label: string) => {
|
const handleStrategyChange = (strategy: SyncStrategy, label: string) => {
|
||||||
@@ -364,13 +387,6 @@ const App: React.FC = () => {
|
|||||||
|
|
||||||
// Timing Breakdown:
|
// Timing Breakdown:
|
||||||
// T+0.0s: State is SUCCESS.
|
// T+0.0s: State is SUCCESS.
|
||||||
// - JS Animation loop detects change and begins decelerating speed from 56 -> 0 over 0.5s.
|
|
||||||
// - CSS opacity transitions Yellow -> Green over 0.3s.
|
|
||||||
|
|
||||||
// T+0.5s: Deceleration complete. Speed is 0. Background is static.
|
|
||||||
// We hold this static state for another 0.5s.
|
|
||||||
|
|
||||||
// T+1.0s: Total success duration complete. Disappear.
|
|
||||||
setTimeout(() => {
|
setTimeout(() => {
|
||||||
setSyncState(SyncState.IDLE);
|
setSyncState(SyncState.IDLE);
|
||||||
refreshLocal();
|
refreshLocal();
|
||||||
@@ -390,6 +406,27 @@ const App: React.FC = () => {
|
|||||||
refreshCloud();
|
refreshCloud();
|
||||||
};
|
};
|
||||||
|
|
||||||
|
const handleLoginSuccess = (token: string, username: string) => {
|
||||||
|
localStorage.setItem('plexsync-token', token);
|
||||||
|
localStorage.setItem('plexsync-username', username);
|
||||||
|
setIsAuthenticated(true);
|
||||||
|
setCurrentUser(username);
|
||||||
|
addToast(t('auth.welcome', { user: username }));
|
||||||
|
};
|
||||||
|
|
||||||
|
const handleLoginError = (msg: string) => {
|
||||||
|
// Toast handles error display, or LoginScreen internal state handles UI
|
||||||
|
addToast(msg);
|
||||||
|
};
|
||||||
|
|
||||||
|
const handleLogout = () => {
|
||||||
|
localStorage.removeItem('plexsync-token');
|
||||||
|
localStorage.removeItem('plexsync-username');
|
||||||
|
setIsAuthenticated(false);
|
||||||
|
setCurrentUser('');
|
||||||
|
addToast(t('toasts.loggedOut'));
|
||||||
|
};
|
||||||
|
|
||||||
const getToastStyles = (toast: Toast): React.CSSProperties => {
|
const getToastStyles = (toast: Toast): React.CSSProperties => {
|
||||||
if (toast.exiting || toast.entering) {
|
if (toast.exiting || toast.entering) {
|
||||||
return {
|
return {
|
||||||
@@ -563,6 +600,34 @@ const App: React.FC = () => {
|
|||||||
|
|
||||||
const backupInfo = getBackupDisplayInfo(backupSettings);
|
const backupInfo = getBackupDisplayInfo(backupSettings);
|
||||||
|
|
||||||
|
// If not authenticated, show Login Screen
|
||||||
|
if (!isAuthenticated) {
|
||||||
|
return (
|
||||||
|
<>
|
||||||
|
{/* Render toasts over login screen if needed (e.g. login errors pushed to global toast) */}
|
||||||
|
<div className="fixed top-20 left-0 right-0 flex justify-center h-0 overflow-visible z-[100] pointer-events-none">
|
||||||
|
{toasts.map((toast) => (
|
||||||
|
<div
|
||||||
|
key={toast.id}
|
||||||
|
className={getToastClasses()}
|
||||||
|
style={getToastStyles(toast)}
|
||||||
|
>
|
||||||
|
<ShieldCheck size={16} />
|
||||||
|
<span>{toast.message}</span>
|
||||||
|
<button
|
||||||
|
onClick={() => setToasts(prev => prev.map(t => t.id === toast.id ? { ...t, exiting: true } : t))}
|
||||||
|
className="ml-2 hover:text-white transition-colors"
|
||||||
|
>
|
||||||
|
<X size={14} />
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
|
))}
|
||||||
|
</div>
|
||||||
|
<LoginScreen onLoginSuccess={handleLoginSuccess} onLoginError={handleLoginError} />
|
||||||
|
</>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className="min-h-screen flex flex-col bg-gray-900 text-gray-100 font-sans overflow-hidden bg-[radial-gradient(ellipse_at_top,_var(--tw-gradient-stops))] from-gray-800 via-gray-900 to-black">
|
<div className="min-h-screen flex flex-col bg-gray-900 text-gray-100 font-sans overflow-hidden bg-[radial-gradient(ellipse_at_top,_var(--tw-gradient-stops))] from-gray-800 via-gray-900 to-black">
|
||||||
|
|
||||||
@@ -724,6 +789,15 @@ const App: React.FC = () => {
|
|||||||
>
|
>
|
||||||
{isConnected ? <Server size={18} /> : <ServerOff size={18} />}
|
{isConnected ? <Server size={18} /> : <ServerOff size={18} />}
|
||||||
</button>
|
</button>
|
||||||
|
|
||||||
|
{/* Logout Button */}
|
||||||
|
<button
|
||||||
|
onClick={handleLogout}
|
||||||
|
className="flex items-center justify-center w-9 h-9 rounded-full border border-gray-700 bg-gray-800/50 text-gray-400 hover:text-red-400 hover:border-red-500/30 hover:bg-red-500/10 transition-all"
|
||||||
|
title={t('auth.logout') + ` (${currentUser})`}
|
||||||
|
>
|
||||||
|
<LogOut size={18} />
|
||||||
|
</button>
|
||||||
</div>
|
</div>
|
||||||
</>
|
</>
|
||||||
) : (
|
) : (
|
||||||
|
|||||||
@@ -0,0 +1,170 @@
|
|||||||
|
|
||||||
|
import React, { useState } from 'react';
|
||||||
|
import { useLanguage } from '../LanguageContext';
|
||||||
|
import { apiService } from '../services/api';
|
||||||
|
import { Lock, User, Loader2, Languages, ArrowRight, ArrowLeftRight } from 'lucide-react';
|
||||||
|
|
||||||
|
interface LoginScreenProps {
|
||||||
|
onLoginSuccess: (token: string, username: string) => void;
|
||||||
|
onLoginError: (msg: string) => void;
|
||||||
|
}
|
||||||
|
|
||||||
|
const LoginScreen: React.FC<LoginScreenProps> = ({ onLoginSuccess, onLoginError }) => {
|
||||||
|
const { t, language, setLanguage } = useLanguage();
|
||||||
|
const [username, setUsername] = useState('');
|
||||||
|
const [password, setPassword] = useState('');
|
||||||
|
const [isLoading, setIsLoading] = useState(false);
|
||||||
|
const [localError, setLocalError] = useState<string | null>(null);
|
||||||
|
const [isLangMenuOpen, setIsLangMenuOpen] = useState(false);
|
||||||
|
|
||||||
|
const handleLogin = async (e: React.FormEvent) => {
|
||||||
|
e.preventDefault();
|
||||||
|
setIsLoading(true);
|
||||||
|
setLocalError(null);
|
||||||
|
|
||||||
|
try {
|
||||||
|
// Mock credentials: admin / password
|
||||||
|
const response = await apiService.login({ username, password });
|
||||||
|
|
||||||
|
if (response.status === 'success') {
|
||||||
|
onLoginSuccess(response.data.token, response.data.username);
|
||||||
|
} else {
|
||||||
|
const errorMsg = response.message || t('auth.invalidCredentials');
|
||||||
|
setLocalError(errorMsg);
|
||||||
|
onLoginError(errorMsg);
|
||||||
|
}
|
||||||
|
} catch (err) {
|
||||||
|
setLocalError(t('auth.invalidCredentials'));
|
||||||
|
} finally {
|
||||||
|
setIsLoading(false);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
return (
|
||||||
|
<div className="min-h-screen flex flex-col items-center justify-center bg-[radial-gradient(ellipse_at_top,_var(--tw-gradient-stops))] from-gray-800 via-gray-900 to-black p-4">
|
||||||
|
|
||||||
|
{/* Background decoration */}
|
||||||
|
<div className="absolute top-0 left-0 w-full h-full overflow-hidden pointer-events-none z-0">
|
||||||
|
<div className="absolute top-0 left-1/4 w-96 h-96 bg-plex-orange/10 rounded-full blur-[100px] opacity-20"></div>
|
||||||
|
<div className="absolute bottom-0 right-1/4 w-96 h-96 bg-blue-500/10 rounded-full blur-[100px] opacity-20"></div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{/* Language Switcher (Top Right) */}
|
||||||
|
<div className="absolute top-6 right-6 z-20">
|
||||||
|
<div className="relative">
|
||||||
|
<button
|
||||||
|
onClick={() => setIsLangMenuOpen(!isLangMenuOpen)}
|
||||||
|
className="flex items-center space-x-2 px-3 py-2 rounded-lg bg-gray-800/50 hover:bg-gray-700/50 border border-gray-700 hover:border-gray-600 text-gray-300 transition-all backdrop-blur-sm"
|
||||||
|
>
|
||||||
|
<Languages size={16} />
|
||||||
|
<span className="text-sm font-medium">{language === 'en' ? 'English' : 'Español'}</span>
|
||||||
|
</button>
|
||||||
|
|
||||||
|
{isLangMenuOpen && (
|
||||||
|
<>
|
||||||
|
<div className="fixed inset-0 z-10" onClick={() => setIsLangMenuOpen(false)}></div>
|
||||||
|
<div className="absolute right-0 top-full mt-2 w-32 bg-gray-800 border border-gray-700 rounded-lg shadow-xl z-20 overflow-hidden animate-in fade-in slide-in-from-top-2">
|
||||||
|
<button
|
||||||
|
onClick={() => { setLanguage('en'); setIsLangMenuOpen(false); }}
|
||||||
|
className={`w-full px-4 py-2 text-sm text-left hover:bg-gray-700 transition-colors ${language === 'en' ? 'text-plex-orange font-bold' : 'text-gray-300'}`}
|
||||||
|
>
|
||||||
|
English
|
||||||
|
</button>
|
||||||
|
<button
|
||||||
|
onClick={() => { setLanguage('es'); setIsLangMenuOpen(false); }}
|
||||||
|
className={`w-full px-4 py-2 text-sm text-left hover:bg-gray-700 transition-colors ${language === 'es' ? 'text-plex-orange font-bold' : 'text-gray-300'}`}
|
||||||
|
>
|
||||||
|
Español
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
|
</>
|
||||||
|
)}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{/* Main Card */}
|
||||||
|
<div className="w-full max-w-md bg-gray-900/60 backdrop-blur-xl border border-gray-700/50 rounded-2xl shadow-2xl p-8 z-10 animate-in zoom-in-95 duration-300">
|
||||||
|
|
||||||
|
<div className="text-center mb-8 flex flex-col items-center">
|
||||||
|
<div className="inline-flex items-center justify-center p-3 rounded-xl bg-gradient-to-br from-plex-orange to-yellow-600 shadow-lg shadow-plex-orange/20 mb-4">
|
||||||
|
<ArrowLeftRight size={32} strokeWidth={2.5} className="text-gray-900" />
|
||||||
|
</div>
|
||||||
|
<h1 className="text-2xl font-bold tracking-tight text-white">
|
||||||
|
<span className="text-plex-orange">PMS</span> Playlist Sync
|
||||||
|
</h1>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<form onSubmit={handleLogin} className="space-y-4">
|
||||||
|
|
||||||
|
{localError && (
|
||||||
|
<div className="p-3 rounded-lg bg-red-500/10 border border-red-500/20 text-red-400 text-xs flex items-center justify-center">
|
||||||
|
{localError}
|
||||||
|
</div>
|
||||||
|
)}
|
||||||
|
|
||||||
|
<div className="space-y-1">
|
||||||
|
<label className="text-xs font-semibold text-gray-500 uppercase tracking-wider ml-1">{t('auth.username')}</label>
|
||||||
|
<div className="relative group">
|
||||||
|
<div className="absolute inset-y-0 left-0 pl-3 flex items-center pointer-events-none">
|
||||||
|
<User size={16} className="text-gray-500 group-focus-within:text-plex-orange transition-colors" />
|
||||||
|
</div>
|
||||||
|
<input
|
||||||
|
type="text"
|
||||||
|
value={username}
|
||||||
|
onChange={(e) => setUsername(e.target.value)}
|
||||||
|
className="w-full h-11 pl-10 pr-4 bg-gray-800/50 border border-gray-600 rounded-lg text-white placeholder-gray-500 focus:border-plex-orange focus:ring-1 focus:ring-plex-orange focus:outline-none transition-all"
|
||||||
|
placeholder="admin"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div className="space-y-1">
|
||||||
|
<label className="text-xs font-semibold text-gray-500 uppercase tracking-wider ml-1">{t('auth.password')}</label>
|
||||||
|
<div className="relative group">
|
||||||
|
<div className="absolute inset-y-0 left-0 pl-3 flex items-center pointer-events-none">
|
||||||
|
<Lock size={16} className="text-gray-500 group-focus-within:text-plex-orange transition-colors" />
|
||||||
|
</div>
|
||||||
|
<input
|
||||||
|
type="password"
|
||||||
|
value={password}
|
||||||
|
onChange={(e) => setPassword(e.target.value)}
|
||||||
|
className="w-full h-11 pl-10 pr-4 bg-gray-800/50 border border-gray-600 rounded-lg text-white placeholder-gray-500 focus:border-plex-orange focus:ring-1 focus:ring-plex-orange focus:outline-none transition-all"
|
||||||
|
placeholder="password"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<button
|
||||||
|
type="submit"
|
||||||
|
disabled={isLoading || !username || !password}
|
||||||
|
className={`w-full h-12 mt-6 rounded-lg text-sm font-bold flex items-center justify-center gap-2 transition-all shadow-lg
|
||||||
|
${isLoading
|
||||||
|
? 'bg-gray-700 text-gray-400 cursor-not-allowed'
|
||||||
|
: 'bg-plex-orange text-gray-900 hover:bg-yellow-500 hover:shadow-plex-orange/30 active:scale-[0.98]'
|
||||||
|
}`}
|
||||||
|
>
|
||||||
|
{isLoading ? (
|
||||||
|
<>
|
||||||
|
<Loader2 size={18} className="animate-spin" />
|
||||||
|
<span>{t('auth.loggingIn')}</span>
|
||||||
|
</>
|
||||||
|
) : (
|
||||||
|
<>
|
||||||
|
<span>{t('auth.loginBtn')}</span>
|
||||||
|
<ArrowRight size={18} />
|
||||||
|
</>
|
||||||
|
)}
|
||||||
|
</button>
|
||||||
|
</form>
|
||||||
|
|
||||||
|
<div className="mt-8 pt-6 border-t border-gray-700/50 text-center">
|
||||||
|
<p className="text-[10px] text-gray-600">
|
||||||
|
© PMS Playlist Sync
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
};
|
||||||
|
|
||||||
|
export default LoginScreen;
|
||||||
@@ -1,4 +1,6 @@
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
export const en = {
|
export const en = {
|
||||||
app: {
|
app: {
|
||||||
// title and manager are no longer used for branding
|
// title and manager are no longer used for branding
|
||||||
@@ -6,6 +8,17 @@ export const en = {
|
|||||||
manager: 'Manager',
|
manager: 'Manager',
|
||||||
footer: '© {year} PMS Playlist Sync. Connected to Docker backend.',
|
footer: '© {year} PMS Playlist Sync. Connected to Docker backend.',
|
||||||
},
|
},
|
||||||
|
auth: {
|
||||||
|
title: 'Login',
|
||||||
|
subtitle: 'Sign in to manage your playlist syncs',
|
||||||
|
username: 'Username',
|
||||||
|
password: 'Password',
|
||||||
|
loginBtn: 'Sign In',
|
||||||
|
logout: 'Logout',
|
||||||
|
loggingIn: 'Verifying...',
|
||||||
|
invalidCredentials: 'Invalid username or password',
|
||||||
|
welcome: 'Welcome, {user}',
|
||||||
|
},
|
||||||
common: {
|
common: {
|
||||||
save: 'Save',
|
save: 'Save',
|
||||||
cancel: 'Cancel',
|
cancel: 'Cancel',
|
||||||
@@ -143,5 +156,7 @@ export const en = {
|
|||||||
librarySwitched: 'Library switched to {library}',
|
librarySwitched: 'Library switched to {library}',
|
||||||
connectedTo: 'Successfully connected to {name}',
|
connectedTo: 'Successfully connected to {name}',
|
||||||
connectionCancelled: 'Connection cancelled by user.',
|
connectionCancelled: 'Connection cancelled by user.',
|
||||||
|
loginFailed: 'Login failed. Please check credentials.',
|
||||||
|
loggedOut: 'Successfully logged out.',
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
@@ -1,4 +1,6 @@
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
export const es = {
|
export const es = {
|
||||||
app: {
|
app: {
|
||||||
// title and manager are no longer used for branding
|
// title and manager are no longer used for branding
|
||||||
@@ -6,6 +8,17 @@ export const es = {
|
|||||||
manager: 'Gestor',
|
manager: 'Gestor',
|
||||||
footer: '© {year} PMS Playlist Sync. Conectado al backend Docker.',
|
footer: '© {year} PMS Playlist Sync. Conectado al backend Docker.',
|
||||||
},
|
},
|
||||||
|
auth: {
|
||||||
|
title: 'Iniciar Sesión',
|
||||||
|
subtitle: 'Ingrese para gestionar sus sincronizaciones',
|
||||||
|
username: 'Usuario',
|
||||||
|
password: 'Password',
|
||||||
|
loginBtn: 'Entrar',
|
||||||
|
logout: 'Salir',
|
||||||
|
loggingIn: 'Verificando...',
|
||||||
|
invalidCredentials: 'Usuario o contraseña incorrectos',
|
||||||
|
welcome: 'Bienvenido, {user}',
|
||||||
|
},
|
||||||
common: {
|
common: {
|
||||||
save: 'Guardar',
|
save: 'Guardar',
|
||||||
cancel: 'Cancelar',
|
cancel: 'Cancelar',
|
||||||
@@ -143,5 +156,7 @@ export const es = {
|
|||||||
librarySwitched: 'Librería cambiada a {library}',
|
librarySwitched: 'Librería cambiada a {library}',
|
||||||
connectedTo: 'Conectado exitosamente a {name}',
|
connectedTo: 'Conectado exitosamente a {name}',
|
||||||
connectionCancelled: 'Conexión cancelada por usuario.',
|
connectionCancelled: 'Conexión cancelada por usuario.',
|
||||||
|
loginFailed: 'Fallo de inicio de sesión. Verifique credenciales.',
|
||||||
|
loggedOut: 'Sesión cerrada exitosamente.',
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
@@ -3,7 +3,9 @@
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
import { Playlist, ServerType, ApiResponse, PlexServerConnection, PlexConnectionSettings, PlexLibrary, SyncStrategy, PathMappingConfig, ScheduleSettings, ScheduleMode, BackupSettings } from '../types';
|
|
||||||
|
|
||||||
|
import { Playlist, ServerType, ApiResponse, PlexServerConnection, PlexConnectionSettings, PlexLibrary, SyncStrategy, PathMappingConfig, ScheduleSettings, ScheduleMode, BackupSettings, LoginCredentials, AuthResponse } from '../types';
|
||||||
import { MOCK_LOCAL_PLAYLISTS, MOCK_CLOUD_PLAYLISTS } from './mockData';
|
import { MOCK_LOCAL_PLAYLISTS, MOCK_CLOUD_PLAYLISTS } from './mockData';
|
||||||
|
|
||||||
const SIMULATE_DELAY_MS = 800;
|
const SIMULATE_DELAY_MS = 800;
|
||||||
@@ -229,5 +231,27 @@ export const apiService = {
|
|||||||
resolve({ data: null, status: 'success', message: 'Backup settings saved' });
|
resolve({ data: null, status: 'success', message: 'Backup settings saved' });
|
||||||
}, 500);
|
}, 500);
|
||||||
});
|
});
|
||||||
|
},
|
||||||
|
|
||||||
|
// Mock Login - In a real app this would POST to a backend
|
||||||
|
login: async (creds: LoginCredentials): Promise<ApiResponse<AuthResponse>> => {
|
||||||
|
return new Promise((resolve, reject) => {
|
||||||
|
setTimeout(() => {
|
||||||
|
// Hardcoded mock credentials for demonstration
|
||||||
|
if (creds.username === 'admin' && creds.password === 'password') {
|
||||||
|
resolve({
|
||||||
|
data: { token: 'mock-jwt-token-123', username: 'admin' },
|
||||||
|
status: 'success',
|
||||||
|
message: 'Login successful'
|
||||||
|
});
|
||||||
|
} else {
|
||||||
|
resolve({
|
||||||
|
data: { token: '', username: '' },
|
||||||
|
status: 'error',
|
||||||
|
message: 'Invalid credentials'
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}, 1000);
|
||||||
|
});
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
@@ -110,3 +110,13 @@ export interface ApiResponse<T> {
|
|||||||
status: 'success' | 'error';
|
status: 'success' | 'error';
|
||||||
message?: string;
|
message?: string;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export interface LoginCredentials {
|
||||||
|
username: string;
|
||||||
|
password: string;
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface AuthResponse {
|
||||||
|
token: string;
|
||||||
|
username: string;
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user