7f20c903ef
Co-authored-by: christianlouis <361235+christianlouis@users.noreply.github.com> Agent-Logs-Url: https://github.com/christianlouis/DocuElevate/sessions/18477ff5-a7a6-4806-a07b-076789c4a72b
492 lines
18 KiB
Python
492 lines
18 KiB
Python
"""
|
|
Dropbox API endpoints
|
|
"""
|
|
|
|
import logging
|
|
import os
|
|
from typing import Annotated, Optional
|
|
from urllib.parse import quote
|
|
|
|
import httpx
|
|
import requests
|
|
from fastapi import APIRouter, Depends, Form, HTTPException, Request, status
|
|
from sqlalchemy.orm import Session
|
|
|
|
from app.auth import require_login
|
|
from app.config import settings
|
|
from app.database import get_db
|
|
from app.utils.oauth_helper import exchange_oauth_token
|
|
from app.utils.settings_service import save_setting_to_db
|
|
from app.utils.settings_sync import notify_settings_updated
|
|
|
|
# Set up logging
|
|
logger = logging.getLogger(__name__)
|
|
|
|
router = APIRouter()
|
|
|
|
|
|
def _require_admin(request: Request) -> dict:
|
|
"""Ensure the caller is an admin. Raises 403 otherwise."""
|
|
user = request.session.get("user")
|
|
if not user or not user.get("is_admin"):
|
|
raise HTTPException(status_code=status.HTTP_403_FORBIDDEN, detail="Admin access required")
|
|
return user
|
|
|
|
|
|
AdminUser = Annotated[dict, Depends(_require_admin)]
|
|
|
|
|
|
def _build_dropbox_redirect_uri(request: Request) -> str:
|
|
"""Build the Dropbox OAuth callback redirect URI.
|
|
|
|
Uses ``PUBLIC_BASE_URL`` when configured (recommended for deployments behind
|
|
a reverse proxy that doesn't forward ``X-Forwarded-Proto``). Falls back to
|
|
deriving the URI from the incoming request's scheme and host headers.
|
|
"""
|
|
if settings.public_base_url:
|
|
return settings.public_base_url.rstrip("/") + "/dropbox-callback"
|
|
return f"{request.url.scheme}://{request.url.netloc}/dropbox-callback"
|
|
|
|
|
|
@router.get("/dropbox/global-authorize-url")
|
|
@require_login
|
|
async def dropbox_global_authorize_url(request: Request):
|
|
"""Return the Dropbox OAuth authorization URL using the global app credentials.
|
|
|
|
This endpoint is used when ``DROPBOX_ALLOW_GLOBAL_CREDENTIALS_FOR_INTEGRATIONS``
|
|
is enabled so that users can authorize their personal Dropbox integration without
|
|
needing to supply their own app key/secret. Only the public ``app_key`` is
|
|
embedded in the URL; the ``app_secret`` is never sent to the browser.
|
|
"""
|
|
if not settings.dropbox_allow_global_credentials_for_integrations:
|
|
raise HTTPException(
|
|
status_code=status.HTTP_403_FORBIDDEN,
|
|
detail="Global credentials for integrations are not enabled",
|
|
)
|
|
if not settings.dropbox_app_key or not settings.dropbox_app_secret:
|
|
raise HTTPException(
|
|
status_code=status.HTTP_503_SERVICE_UNAVAILABLE,
|
|
detail="Global Dropbox credentials are not configured",
|
|
)
|
|
redirect_uri = _build_dropbox_redirect_uri(request)
|
|
authorize_url = (
|
|
"https://www.dropbox.com/oauth2/authorize"
|
|
f"?client_id={settings.dropbox_app_key}"
|
|
"&response_type=code"
|
|
"&token_access_type=offline"
|
|
f"&redirect_uri={quote(redirect_uri, safe='')}"
|
|
)
|
|
return {"authorize_url": authorize_url}
|
|
|
|
|
|
@router.post("/dropbox/exchange-token-global")
|
|
@require_login
|
|
async def exchange_dropbox_token_global(
|
|
request: Request,
|
|
code: Annotated[str, Form(...)],
|
|
redirect_uri: Annotated[str, Form(...)],
|
|
):
|
|
"""Exchange an authorization code using the global Dropbox app credentials.
|
|
|
|
Used when ``DROPBOX_ALLOW_GLOBAL_CREDENTIALS_FOR_INTEGRATIONS`` is enabled so
|
|
that the ``app_secret`` is never exposed to the browser. Only the OAuth code
|
|
and redirect URI need to be supplied by the client.
|
|
"""
|
|
if not settings.dropbox_allow_global_credentials_for_integrations:
|
|
raise HTTPException(
|
|
status_code=status.HTTP_403_FORBIDDEN,
|
|
detail="Global credentials for integrations are not enabled",
|
|
)
|
|
if not settings.dropbox_app_key or not settings.dropbox_app_secret:
|
|
raise HTTPException(
|
|
status_code=status.HTTP_503_SERVICE_UNAVAILABLE,
|
|
detail="Global Dropbox credentials are not configured",
|
|
)
|
|
|
|
token_url = "https://api.dropboxapi.com/oauth2/token"
|
|
payload = {
|
|
"client_id": settings.dropbox_app_key,
|
|
"client_secret": settings.dropbox_app_secret,
|
|
"code": code,
|
|
"redirect_uri": redirect_uri,
|
|
"grant_type": "authorization_code",
|
|
}
|
|
|
|
token_data = exchange_oauth_token(provider_name="Dropbox", token_url=token_url, payload=payload)
|
|
|
|
return {
|
|
"refresh_token": token_data["refresh_token"],
|
|
"access_token": token_data["access_token"],
|
|
"expires_in": token_data.get("expires_in", 14400),
|
|
# Return the public app_key so the callback can store it in the integration
|
|
"app_key": settings.dropbox_app_key,
|
|
}
|
|
|
|
|
|
@router.post("/dropbox/exchange-token")
|
|
@require_login
|
|
async def exchange_dropbox_token(
|
|
request: Request,
|
|
client_id: Annotated[str, Form(...)],
|
|
client_secret: Annotated[str, Form(...)],
|
|
redirect_uri: Annotated[str, Form(...)],
|
|
code: Annotated[str, Form(...)],
|
|
folder_path: Annotated[Optional[str], Form()] = None,
|
|
):
|
|
"""
|
|
Exchange an authorization code for a refresh token from Dropbox.
|
|
This is done on the server to avoid exposing client secret in the browser.
|
|
"""
|
|
# Prepare the token request
|
|
token_url = "https://api.dropboxapi.com/oauth2/token"
|
|
|
|
payload = {
|
|
"client_id": client_id,
|
|
"client_secret": client_secret,
|
|
"code": code,
|
|
"redirect_uri": redirect_uri,
|
|
"grant_type": "authorization_code",
|
|
}
|
|
|
|
# Use shared OAuth helper (handles secure logging and error handling)
|
|
token_data = exchange_oauth_token(provider_name="Dropbox", token_url=token_url, payload=payload)
|
|
|
|
# Return just what's needed by the frontend
|
|
return {
|
|
"refresh_token": token_data["refresh_token"],
|
|
"access_token": token_data["access_token"],
|
|
"expires_in": token_data.get("expires_in", 14400),
|
|
}
|
|
|
|
|
|
@router.post("/dropbox/update-settings")
|
|
@require_login
|
|
async def update_dropbox_settings(
|
|
request: Request,
|
|
refresh_token: Annotated[str, Form(...)],
|
|
app_key: Annotated[Optional[str], Form()] = None,
|
|
app_secret: Annotated[Optional[str], Form()] = None,
|
|
folder_path: Annotated[Optional[str], Form()] = None,
|
|
db: Session = Depends(get_db),
|
|
):
|
|
"""
|
|
Update Dropbox settings in memory and persist to the database.
|
|
"""
|
|
try:
|
|
logger.info("Updating Dropbox settings in memory and database")
|
|
|
|
user = request.session.get("user", {}) if hasattr(request, "session") else {}
|
|
changed_by = (
|
|
user.get("preferred_username") or user.get("username") or user.get("email") or user.get("id") or "wizard"
|
|
)
|
|
|
|
# Update settings in memory and persist to database
|
|
if refresh_token:
|
|
settings.dropbox_refresh_token = refresh_token
|
|
save_setting_to_db(db, "dropbox_refresh_token", refresh_token, changed_by=changed_by)
|
|
logger.info("Updated DROPBOX_REFRESH_TOKEN in memory and database")
|
|
|
|
if app_key:
|
|
settings.dropbox_app_key = app_key
|
|
save_setting_to_db(db, "dropbox_app_key", app_key, changed_by=changed_by)
|
|
logger.info("Updated DROPBOX_APP_KEY in memory and database")
|
|
|
|
if app_secret:
|
|
settings.dropbox_app_secret = app_secret
|
|
save_setting_to_db(db, "dropbox_app_secret", app_secret, changed_by=changed_by)
|
|
logger.info("Updated DROPBOX_APP_SECRET in memory and database")
|
|
|
|
if folder_path:
|
|
settings.dropbox_folder = folder_path
|
|
save_setting_to_db(db, "dropbox_folder", folder_path, changed_by=changed_by)
|
|
logger.info("Updated DROPBOX_FOLDER in memory and database")
|
|
|
|
notify_settings_updated()
|
|
|
|
return {
|
|
"status": "success",
|
|
"message": "Dropbox settings have been updated in memory and saved to database",
|
|
}
|
|
|
|
except Exception as e:
|
|
logger.exception(f"Unexpected error updating Dropbox settings: {str(e)}")
|
|
raise HTTPException(
|
|
status_code=status.HTTP_500_INTERNAL_SERVER_ERROR,
|
|
detail=f"Failed to update Dropbox settings: {str(e)}",
|
|
)
|
|
|
|
|
|
@router.get("/dropbox/test-token")
|
|
@require_login
|
|
async def test_dropbox_token(request: Request):
|
|
"""
|
|
Test if the configured Dropbox token is valid and return expiration information.
|
|
"""
|
|
try:
|
|
logger.info("Testing Dropbox token validity")
|
|
|
|
if not settings.dropbox_refresh_token or not settings.dropbox_app_key or not settings.dropbox_app_secret:
|
|
logger.warning("Dropbox credentials not fully configured")
|
|
return {
|
|
"status": "error",
|
|
"message": "Dropbox credentials are not fully configured",
|
|
}
|
|
|
|
async with httpx.AsyncClient() as client:
|
|
# Check token validity by getting current account info
|
|
headers = {"Authorization": f"Bearer {settings.dropbox_refresh_token}"}
|
|
response = await client.post(
|
|
"https://api.dropboxapi.com/2/users/get_current_account",
|
|
headers=headers,
|
|
timeout=settings.http_request_timeout,
|
|
)
|
|
|
|
# If token is invalid, try refreshing it
|
|
if response.status_code == 401:
|
|
logger.info("Dropbox access token invalid or expired, trying to refresh")
|
|
|
|
# Get a new access token using the refresh token
|
|
refresh_url = "https://api.dropbox.com/oauth2/token"
|
|
refresh_data = {
|
|
"grant_type": "refresh_token",
|
|
"refresh_token": settings.dropbox_refresh_token,
|
|
"client_id": settings.dropbox_app_key,
|
|
"client_secret": settings.dropbox_app_secret,
|
|
}
|
|
|
|
refresh_response = await client.post(
|
|
refresh_url, data=refresh_data, timeout=settings.http_request_timeout
|
|
)
|
|
|
|
if refresh_response.status_code != 200:
|
|
logger.error(f"Failed to refresh Dropbox token: {refresh_response.text}")
|
|
return {
|
|
"status": "error",
|
|
"message": "Refresh token has expired or is invalid",
|
|
"needs_reauth": True,
|
|
}
|
|
|
|
token_info = refresh_response.json()
|
|
access_token = token_info.get("access_token")
|
|
|
|
# Try again with the new access token
|
|
headers = {"Authorization": f"Bearer {access_token}"}
|
|
response = await client.post(
|
|
"https://api.dropboxapi.com/2/users/get_current_account",
|
|
headers=headers,
|
|
timeout=settings.http_request_timeout,
|
|
)
|
|
|
|
if response.status_code != 200:
|
|
logger.error(f"Dropbox token test failed: {response.status_code} {response.text}")
|
|
return {
|
|
"status": "error",
|
|
"message": f"Token validation failed with status {response.status_code}: {response.text}",
|
|
}
|
|
|
|
# Get account info
|
|
account_info = response.json()
|
|
account_email = account_info.get("email", "Unknown account")
|
|
account_name = account_info.get("name", {}).get("display_name", "Unknown user")
|
|
|
|
# Dropbox refresh tokens don't expire, but we should note that in our response
|
|
token_info = {
|
|
"expires_in_human": "Never expires (perpetual token)",
|
|
"is_perpetual": True,
|
|
}
|
|
|
|
logger.info(f"Successfully connected to Dropbox as {account_email}")
|
|
|
|
return {
|
|
"status": "success",
|
|
"message": "Dropbox connection successful",
|
|
"account": account_email,
|
|
"account_name": account_name,
|
|
"token_info": token_info,
|
|
}
|
|
|
|
except Exception as e:
|
|
logger.exception(f"Unexpected error testing Dropbox token: {str(e)}")
|
|
return {"status": "error", "message": f"Connection error: {str(e)}"}
|
|
|
|
|
|
@router.post("/dropbox/list-folders")
|
|
@require_login
|
|
async def list_dropbox_folders(
|
|
request: Request,
|
|
access_token: Annotated[str, Form(...)],
|
|
path: Annotated[str, Form()] = "",
|
|
):
|
|
"""
|
|
List folders in a Dropbox account for the directory selector.
|
|
|
|
Accepts an OAuth access token (short-lived) and a path to list.
|
|
Returns a flat list of folder entries under the given path.
|
|
"""
|
|
try:
|
|
# Normalize path: Dropbox API uses "" for root, otherwise "/path"
|
|
folder_path = path.strip()
|
|
if folder_path == "/":
|
|
folder_path = ""
|
|
elif folder_path and not folder_path.startswith("/"):
|
|
folder_path = f"/{folder_path}"
|
|
|
|
headers = {
|
|
"Authorization": f"Bearer {access_token}",
|
|
"Content-Type": "application/json",
|
|
}
|
|
|
|
payload = {
|
|
"path": folder_path,
|
|
"recursive": False,
|
|
"include_deleted": False,
|
|
"include_has_explicit_shared_members": False,
|
|
"include_mounted_folders": True,
|
|
}
|
|
|
|
response = requests.post(
|
|
"https://api.dropboxapi.com/2/files/list_folder",
|
|
headers=headers,
|
|
json=payload,
|
|
timeout=settings.http_request_timeout,
|
|
)
|
|
|
|
if response.status_code == 401:
|
|
raise HTTPException(
|
|
status_code=status.HTTP_401_UNAUTHORIZED,
|
|
detail="Access token is invalid or expired. Please re-authorize.",
|
|
)
|
|
|
|
if response.status_code != 200:
|
|
logger.error(f"Dropbox list_folder failed: {response.status_code} {response.text}")
|
|
raise HTTPException(
|
|
status_code=status.HTTP_502_BAD_GATEWAY,
|
|
detail=f"Failed to list Dropbox folders: {response.text}",
|
|
)
|
|
|
|
data = response.json()
|
|
folders = []
|
|
for entry in data.get("entries", []):
|
|
if entry.get(".tag") == "folder":
|
|
folders.append(
|
|
{
|
|
"name": entry["name"],
|
|
"path": entry["path_display"],
|
|
"id": entry.get("id", ""),
|
|
}
|
|
)
|
|
|
|
# Sort folders alphabetically
|
|
folders.sort(key=lambda f: f["name"].lower())
|
|
|
|
return {
|
|
"folders": folders,
|
|
"path": folder_path or "/",
|
|
"has_more": data.get("has_more", False),
|
|
}
|
|
|
|
except HTTPException:
|
|
raise
|
|
except Exception as e:
|
|
logger.exception(f"Error listing Dropbox folders: {e}")
|
|
raise HTTPException(
|
|
status_code=status.HTTP_500_INTERNAL_SERVER_ERROR,
|
|
detail=f"Failed to list folders: {str(e)}",
|
|
)
|
|
|
|
|
|
@router.post("/dropbox/save-settings")
|
|
async def save_dropbox_settings(
|
|
request: Request,
|
|
refresh_token: Annotated[str, Form(...)],
|
|
_admin: AdminUser,
|
|
db: Session = Depends(get_db),
|
|
app_key: Annotated[Optional[str], Form()] = None,
|
|
app_secret: Annotated[Optional[str], Form()] = None,
|
|
folder_path: Annotated[Optional[str], Form()] = None,
|
|
):
|
|
"""
|
|
Save Dropbox settings to database (primary) and .env file (best-effort).
|
|
"""
|
|
try:
|
|
user = request.session.get("user", {}) if hasattr(request, "session") else {}
|
|
changed_by = (
|
|
user.get("preferred_username") or user.get("username") or user.get("email") or user.get("id") or "wizard"
|
|
)
|
|
|
|
# Update settings in memory
|
|
if refresh_token:
|
|
settings.dropbox_refresh_token = refresh_token
|
|
if app_key:
|
|
settings.dropbox_app_key = app_key
|
|
if app_secret:
|
|
settings.dropbox_app_secret = app_secret
|
|
if folder_path:
|
|
settings.dropbox_folder = folder_path
|
|
|
|
# Persist to database (primary storage)
|
|
if refresh_token:
|
|
save_setting_to_db(db, "dropbox_refresh_token", refresh_token, changed_by=changed_by)
|
|
if app_key:
|
|
save_setting_to_db(db, "dropbox_app_key", app_key, changed_by=changed_by)
|
|
if app_secret:
|
|
save_setting_to_db(db, "dropbox_app_secret", app_secret, changed_by=changed_by)
|
|
if folder_path:
|
|
save_setting_to_db(db, "dropbox_folder", folder_path, changed_by=changed_by)
|
|
|
|
# Best-effort .env file write
|
|
try:
|
|
env_path = os.path.join(os.path.dirname(os.path.dirname(os.path.dirname(__file__))), ".env")
|
|
if not os.path.exists(env_path):
|
|
logger.warning(f".env file not found at {env_path}, skipping file write")
|
|
else:
|
|
logger.info(f"Updating Dropbox settings in {env_path}")
|
|
|
|
with open(env_path, "r") as f:
|
|
env_lines = f.readlines()
|
|
|
|
dropbox_settings = {"DROPBOX_REFRESH_TOKEN": refresh_token}
|
|
if app_key:
|
|
dropbox_settings["DROPBOX_APP_KEY"] = app_key
|
|
if app_secret:
|
|
dropbox_settings["DROPBOX_APP_SECRET"] = app_secret
|
|
if folder_path:
|
|
dropbox_settings["DROPBOX_FOLDER"] = folder_path
|
|
|
|
updated = set()
|
|
new_env_lines = []
|
|
for line in env_lines:
|
|
stripped_line = line.rstrip()
|
|
is_updated = False
|
|
for key, value in dropbox_settings.items():
|
|
if stripped_line.startswith(f"{key}=") or stripped_line.startswith(f"# {key}="):
|
|
new_env_lines.append(f"{key}={value}")
|
|
updated.add(key)
|
|
is_updated = True
|
|
break
|
|
if not is_updated:
|
|
new_env_lines.append(stripped_line)
|
|
|
|
for key, value in dropbox_settings.items():
|
|
if key not in updated:
|
|
new_env_lines.append(f"{key}={value}")
|
|
|
|
with open(env_path, "w") as f:
|
|
f.write("\n".join(new_env_lines) + "\n")
|
|
|
|
logger.info("Successfully updated Dropbox settings in .env file")
|
|
except Exception as env_err:
|
|
logger.warning(f"Failed to write .env file (non-fatal): {env_err}")
|
|
|
|
notify_settings_updated()
|
|
|
|
logger.info("Successfully saved Dropbox settings")
|
|
return {"status": "success", "message": "Dropbox settings have been saved"}
|
|
|
|
except Exception as e:
|
|
logger.exception(f"Unexpected error saving Dropbox settings: {str(e)}")
|
|
raise HTTPException(
|
|
status_code=status.HTTP_500_INTERNAL_SERVER_ERROR,
|
|
detail=f"Failed to save Dropbox settings: {str(e)}",
|
|
)
|