52e3852129
- Add LocalUser model with bcrypt password hashing, email verification tokens, and password reset tokens - Add ALLOW_LOCAL_SIGNUP config flag (requires SMTP to be configured) - Add Stripe billing config fields (STRIPE_SECRET_KEY, etc.) - Add stripe_customer_id to UserProfile and stripe_price_id_monthly/ stripe_price_id_yearly to SubscriptionPlan - Create migration 018_add_local_users_and_billing - Add app/utils/local_auth.py: hash_password, verify_password, generate_token, is_token_expired, send_verification_email, send_password_reset_email, build_session_user - Add app/api/local_auth.py: signup, email verification, password reset endpoints plus signup/verify-email-sent/reset-password page routes - Add app/api/billing.py: Stripe Checkout, Customer Portal, and webhook endpoints; syncs subscription tier from webhook events - Update auth() to check LocalUser table before admin credentials fallback - Update login() to pass allow_signup context variable to template - Add signup.html, verify_email_sent.html, password_reset_form.html, billing_success.html templates (Alpine.js, Tailwind, WCAG 2.1 AA) - Update login.html to show 'Create account' link when signup enabled - Update pricing.html CTA buttons to use Stripe Checkout for paid tiers - Add docs/BillingSetup.md with setup guide, webhook config, compliance - Add tests/test_local_auth.py (42 tests) and tests/test_billing.py (31 tests); all 106 tests in the modified test suite pass - Add stripe>=7.0.0,<15.0.0 to requirements.txt Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
67 lines
2.5 KiB
Python
67 lines
2.5 KiB
Python
"""
|
|
API Router module that combines all API endpoints
|
|
"""
|
|
|
|
import logging
|
|
|
|
from fastapi import APIRouter
|
|
|
|
from app.api.admin_users import router as admin_users_router
|
|
from app.api.azure import router as azure_router
|
|
from app.api.billing import router as billing_router
|
|
from app.api.database import router as database_router
|
|
from app.api.diagnostic import router as diagnostic_router
|
|
from app.api.dropbox import router as dropbox_router
|
|
from app.api.duplicates import router as duplicates_router
|
|
from app.api.files import router as files_router
|
|
from app.api.google_drive import router as google_drive_router
|
|
from app.api.logs import router as logs_router
|
|
from app.api.onboarding import router as onboarding_router
|
|
from app.api.onedrive import router as onedrive_router
|
|
from app.api.openai import router as openai_router
|
|
from app.api.plans import router as plans_router
|
|
from app.api.process import router as process_router
|
|
from app.api.queue import router as queue_router
|
|
from app.api.saved_searches import router as saved_searches_router
|
|
from app.api.search import router as search_router
|
|
from app.api.settings import router as settings_router
|
|
from app.api.similarity import router as similarity_router
|
|
from app.api.subscriptions import router as subscriptions_router
|
|
from app.api.url_upload import router as url_upload_router
|
|
|
|
# Import all the individual routers
|
|
from app.api.user import router as user_router
|
|
from app.api.webhooks import router as webhooks_router
|
|
|
|
# Set up logging
|
|
logger = logging.getLogger(__name__)
|
|
|
|
# Create the main router that includes all the others
|
|
router = APIRouter()
|
|
|
|
# Include all the routers
|
|
router.include_router(admin_users_router)
|
|
router.include_router(user_router)
|
|
router.include_router(files_router)
|
|
router.include_router(process_router)
|
|
router.include_router(diagnostic_router)
|
|
router.include_router(onedrive_router)
|
|
router.include_router(dropbox_router)
|
|
router.include_router(openai_router)
|
|
router.include_router(azure_router)
|
|
router.include_router(google_drive_router)
|
|
router.include_router(logs_router)
|
|
router.include_router(settings_router)
|
|
router.include_router(url_upload_router)
|
|
router.include_router(search_router)
|
|
router.include_router(queue_router)
|
|
router.include_router(saved_searches_router)
|
|
router.include_router(similarity_router)
|
|
router.include_router(duplicates_router)
|
|
router.include_router(webhooks_router)
|
|
router.include_router(database_router)
|
|
router.include_router(subscriptions_router)
|
|
router.include_router(plans_router)
|
|
router.include_router(onboarding_router)
|
|
router.include_router(billing_router)
|