All checks were successful
- Fix platform-grouped merchant sidebar menu with core items at root level - Add merchant store management (detail page, create store, team page) - Fix store settings 500 error by removing dead stripe/API tab - Move onboarding translations to module-owned locale files - Fix onboarding banner i18n with server-side rendering + context inheritance - Refactor login language selectors to use languageSelector() function (LANG-002) - Move HTTPException handling to global exception handler in merchant routes (API-003) - Add language selector to all login pages and portal headers - Fix customer module: drop order stats from customer model, add to orders module - Fix admin menu config visibility for super admin platform context - Fix storefront auth and layout issues - Add missing i18n translations for onboarding steps (en/fr/de/lb) Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
80 lines
2.6 KiB
Python
80 lines
2.6 KiB
Python
# app/modules/marketplace/services/marketplace_onboarding.py
|
|
"""
|
|
Onboarding provider for the marketplace module.
|
|
|
|
Provides two onboarding steps:
|
|
1. Connect Letzshop API - completed when StoreLetzshopCredentials exists with api_key
|
|
2. Import products - completed when at least 1 product exists in catalog
|
|
"""
|
|
|
|
import logging
|
|
|
|
from sqlalchemy.orm import Session
|
|
|
|
from app.modules.contracts.onboarding import OnboardingStepDefinition
|
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
|
|
class MarketplaceOnboardingProvider:
|
|
"""Onboarding provider for marketplace module."""
|
|
|
|
@property
|
|
def onboarding_category(self) -> str:
|
|
return "marketplace"
|
|
|
|
def get_onboarding_steps(self) -> list[OnboardingStepDefinition]:
|
|
return [
|
|
OnboardingStepDefinition(
|
|
key="marketplace.connect_api",
|
|
title_key="marketplace.onboarding.connect_api.title",
|
|
description_key="marketplace.onboarding.connect_api.description",
|
|
icon="plug",
|
|
route_template="/store/{store_code}/letzshop",
|
|
order=200,
|
|
category="marketplace",
|
|
),
|
|
OnboardingStepDefinition(
|
|
key="marketplace.import_products",
|
|
title_key="marketplace.onboarding.import_products.title",
|
|
description_key="marketplace.onboarding.import_products.description",
|
|
icon="package",
|
|
route_template="/store/{store_code}/marketplace",
|
|
order=210,
|
|
category="marketplace",
|
|
),
|
|
]
|
|
|
|
def is_step_completed(
|
|
self, db: Session, store_id: int, step_key: str
|
|
) -> bool:
|
|
if step_key == "marketplace.connect_api":
|
|
return self._has_letzshop_credentials(db, store_id)
|
|
if step_key == "marketplace.import_products":
|
|
return self._has_products(db, store_id)
|
|
return False
|
|
|
|
def _has_letzshop_credentials(self, db: Session, store_id: int) -> bool:
|
|
from app.modules.marketplace.models.letzshop import StoreLetzshopCredentials
|
|
|
|
creds = (
|
|
db.query(StoreLetzshopCredentials)
|
|
.filter(StoreLetzshopCredentials.store_id == store_id)
|
|
.first()
|
|
)
|
|
return bool(creds and creds.api_key_encrypted)
|
|
|
|
def _has_products(self, db: Session, store_id: int) -> bool:
|
|
from app.modules.catalog.models.product import Product
|
|
|
|
count = (
|
|
db.query(Product)
|
|
.filter(Product.store_id == store_id)
|
|
.limit(1)
|
|
.count()
|
|
)
|
|
return count > 0
|
|
|
|
|
|
marketplace_onboarding_provider = MarketplaceOnboardingProvider()
|