Clean up accumulated backward-compat shims, deprecated wrappers, unused aliases, and legacy code across the codebase. Since the platform is not live yet, this establishes a clean baseline. Changes: - Delete deprecated middleware/context.py (RequestContext, get_request_context) - Remove unused factory get_store_email_settings_service() - Remove deprecated pagination_full macro, /admin/platform-homepage route - Remove ConversationResponse, InvoiceSettings* unprefixed aliases - Simplify celery_config.py (remove empty LEGACY_TASK_MODULES) - Standardize billing exceptions: *Error aliases → *Exception names - Consolidate duplicate TierNotFoundError/FeatureNotFoundError classes - Remove deprecated is_admin_request() from Store/PlatformContextManager - Remove is_platform_default field, MediaUploadResponse legacy flat fields - Remove MediaItemResponse.url alias, update JS to use file_url - Update all affected tests and documentation Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
63 lines
1.5 KiB
Python
63 lines
1.5 KiB
Python
# app/modules/billing/services/__init__.py
|
|
"""
|
|
Billing module services.
|
|
|
|
Provides subscription management, Stripe integration, and admin operations.
|
|
"""
|
|
|
|
from app.modules.billing.services.admin_subscription_service import (
|
|
AdminSubscriptionService,
|
|
admin_subscription_service,
|
|
)
|
|
from app.modules.billing.services.billing_service import (
|
|
BillingService,
|
|
billing_service,
|
|
)
|
|
from app.modules.billing.services.feature_service import (
|
|
FeatureService,
|
|
feature_service,
|
|
)
|
|
from app.modules.billing.services.platform_pricing_service import (
|
|
PlatformPricingService,
|
|
platform_pricing_service,
|
|
)
|
|
from app.modules.billing.services.stripe_service import (
|
|
StripeService,
|
|
stripe_service,
|
|
)
|
|
from app.modules.billing.services.subscription_service import (
|
|
SubscriptionService,
|
|
subscription_service,
|
|
)
|
|
from app.modules.billing.services.usage_service import (
|
|
LimitCheckData,
|
|
TierInfoData,
|
|
UpgradeTierData,
|
|
UsageData,
|
|
UsageMetricData,
|
|
UsageService,
|
|
usage_service,
|
|
)
|
|
|
|
__all__ = [
|
|
"SubscriptionService",
|
|
"subscription_service",
|
|
"StripeService",
|
|
"stripe_service",
|
|
"AdminSubscriptionService",
|
|
"admin_subscription_service",
|
|
"BillingService",
|
|
"billing_service",
|
|
"FeatureService",
|
|
"feature_service",
|
|
"PlatformPricingService",
|
|
"platform_pricing_service",
|
|
"UsageService",
|
|
"usage_service",
|
|
"UsageData",
|
|
"UsageMetricData",
|
|
"TierInfoData",
|
|
"UpgradeTierData",
|
|
"LimitCheckData",
|
|
]
|