Phase 1 - Foundation: - Add app/modules/contracts/ with Protocol definitions for cross-module communication (ServiceProtocol, ContentServiceProtocol, MediaServiceProtocol) - Enhance app/modules/base.py ModuleDefinition with self-contained module support (is_self_contained, services_path, models_path, etc.) - Update app/templates_config.py with multi-directory template loading using Jinja2 ChoiceLoader for module templates Phase 2 - CMS Pilot Module: - Migrate CMS service to app/modules/cms/services/content_page_service.py - Create app/modules/cms/exceptions.py with CMS-specific exceptions - Configure app/modules/cms/models/ to re-export ContentPage from canonical location (models.database) to avoid circular imports - Update cms_module definition with is_self_contained=True and paths - Add backwards compatibility shims with deprecation warnings: - app/services/content_page_service.py -> app.modules.cms.services - app/exceptions/content_page.py -> app.modules.cms.exceptions Note: SQLAlchemy models remain in models/database/ as the canonical location to avoid circular imports at startup time. Module model packages re-export from the canonical location. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
44 lines
1.3 KiB
Python
44 lines
1.3 KiB
Python
# app/exceptions/content_page.py
|
|
"""
|
|
DEPRECATED: This module has moved to app.modules.cms.exceptions
|
|
|
|
Please update your imports:
|
|
# Old (deprecated):
|
|
from app.exceptions.content_page import ContentPageNotFoundException
|
|
|
|
# New (preferred):
|
|
from app.modules.cms.exceptions import ContentPageNotFoundException
|
|
|
|
This shim re-exports from the new location for backwards compatibility.
|
|
"""
|
|
|
|
import warnings
|
|
|
|
warnings.warn(
|
|
"Import from app.modules.cms.exceptions instead of "
|
|
"app.exceptions.content_page. This shim will be removed in a future version.",
|
|
DeprecationWarning,
|
|
stacklevel=2,
|
|
)
|
|
|
|
# Re-export everything from the new location
|
|
from app.modules.cms.exceptions import ( # noqa: E402, F401
|
|
ContentPageAlreadyExistsException,
|
|
ContentPageNotFoundException,
|
|
ContentPageNotPublishedException,
|
|
ContentPageSlugReservedException,
|
|
ContentPageValidationException,
|
|
UnauthorizedContentPageAccessException,
|
|
VendorNotAssociatedException,
|
|
)
|
|
|
|
__all__ = [
|
|
"ContentPageNotFoundException",
|
|
"ContentPageAlreadyExistsException",
|
|
"ContentPageSlugReservedException",
|
|
"ContentPageNotPublishedException",
|
|
"UnauthorizedContentPageAccessException",
|
|
"VendorNotAssociatedException",
|
|
"ContentPageValidationException",
|
|
]
|