Some checks failed
- Add wallet diagnostics page at /admin/loyalty/wallet-debug (super admin only) with explorer-sidebar pattern: config validation, class status, card inspector, save URL tester, recent enrollments, and Apple Wallet status panels - Fix Google Wallet fat JWT: include both loyaltyClasses and loyaltyObjects in payload, use UNDER_REVIEW instead of DRAFT for class reviewStatus - Fix StorefrontProgramResponse schema: accept google_class_id values while keeping exclude=True (was rejecting non-None values) - Standardize all module configs to read from .env file directly (env_file=".env", extra="ignore") matching core Settings pattern - Add MOD-026 architecture rule enforcing env_file in module configs - Add SVC-005 noqa support in architecture validator - Add test files for dev_tools domain_health and isolation_audit services - Add google_wallet_status.py script for querying Google Wallet API - Use table_wrapper macro in wallet-debug.html (FE-005 compliance) Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
54 lines
1.6 KiB
Python
54 lines
1.6 KiB
Python
# app/modules/loyalty/config.py
|
|
"""
|
|
Module configuration.
|
|
|
|
Environment-based configuration using Pydantic Settings.
|
|
Settings are loaded from environment variables with LOYALTY_ prefix.
|
|
|
|
Example:
|
|
LOYALTY_DEFAULT_COOLDOWN_MINUTES=15
|
|
LOYALTY_MAX_DAILY_STAMPS=5
|
|
LOYALTY_GOOGLE_ISSUER_ID=3388000000012345678
|
|
|
|
Usage:
|
|
from app.modules.loyalty.config import config
|
|
cooldown = config.default_cooldown_minutes
|
|
"""
|
|
from pydantic_settings import BaseSettings
|
|
|
|
|
|
class ModuleConfig(BaseSettings):
|
|
"""Configuration for loyalty module."""
|
|
|
|
# Default anti-fraud settings
|
|
default_cooldown_minutes: int = 15
|
|
max_daily_stamps: int = 5
|
|
pin_max_failed_attempts: int = 5
|
|
pin_lockout_minutes: int = 30
|
|
|
|
# Points configuration
|
|
default_points_per_euro: int = 10 # 10 points per euro spent
|
|
|
|
# Apple Wallet
|
|
apple_pass_type_id: str | None = None
|
|
apple_team_id: str | None = None
|
|
apple_wwdr_cert_path: str | None = None # Apple WWDR certificate
|
|
apple_signer_cert_path: str | None = None # Pass signing certificate
|
|
apple_signer_key_path: str | None = None # Pass signing key
|
|
|
|
# Google Wallet
|
|
google_issuer_id: str | None = None
|
|
google_service_account_json: str | None = None # Path to service account JSON
|
|
google_wallet_origins: list[str] = [] # Allowed origins for save-to-wallet JWT
|
|
default_logo_url: str = "https://rewardflow.lu/static/modules/loyalty/shared/img/default-logo-200.png"
|
|
|
|
# QR code settings
|
|
qr_code_size: int = 300 # pixels
|
|
|
|
model_config = {"env_prefix": "LOYALTY_", "env_file": ".env", "extra": "ignore"}
|
|
|
|
|
|
# Export for auto-discovery
|
|
config_class = ModuleConfig
|
|
config = ModuleConfig()
|