560856cf22
Deploy / Build Production Runtime Images (push) Has been skipped
Deploy / Deploy Production (push) Has been skipped
Deploy / Production Browser E2E (push) Has been skipped
Deploy / Deploy Staging (push) Failing after 210h26m26s
CI/CD Pipeline / Frontend Lint (push) Failing after 210h27m0s
CI/CD Pipeline / Validate Code Quality And Tests (push) Failing after 210h27m7s
278 lines
9.2 KiB
Python
278 lines
9.2 KiB
Python
"""SQLAlchemy implementation of TemplateRepository."""
|
|
|
|
from __future__ import annotations
|
|
|
|
from typing import List, Optional
|
|
|
|
from sqlalchemy.orm import Session
|
|
|
|
from packages.adapters.sqlalchemy_impl.models import (
|
|
TemplateCategoryModel,
|
|
TemplateModel,
|
|
TemplateSegmentModel,
|
|
)
|
|
from packages.domain.template import Template, TemplateCategory, TemplateSegment
|
|
|
|
|
|
class SQLAlchemyTemplateRepository:
|
|
"""SQLAlchemy 剪辑计划模板仓储."""
|
|
|
|
def __init__(self, session: Session) -> None:
|
|
self.session = session
|
|
|
|
# ── Template CRUD ──
|
|
|
|
def list_by_user(
|
|
self,
|
|
user_id: str,
|
|
*,
|
|
skip: int = 0,
|
|
limit: int = 50,
|
|
) -> List[Template]:
|
|
models = (
|
|
self.session.query(TemplateModel)
|
|
.filter(
|
|
TemplateModel.user_id == user_id,
|
|
TemplateModel.is_active.is_(True),
|
|
)
|
|
.order_by(TemplateModel.created_at.desc())
|
|
.offset(skip)
|
|
.limit(limit)
|
|
.all()
|
|
)
|
|
templates = [self._model_to_entity(m) for m in models]
|
|
# 批量加载所有 segments,避免 N+1 查询
|
|
if templates:
|
|
template_ids = [t.id for t in templates]
|
|
seg_models = (
|
|
self.session.query(TemplateSegmentModel)
|
|
.filter(TemplateSegmentModel.template_id.in_(template_ids))
|
|
.order_by(TemplateSegmentModel.segment_order)
|
|
.all()
|
|
)
|
|
# 按 template_id 分组
|
|
seg_map: dict[str, list] = {}
|
|
for sm in seg_models:
|
|
seg_map.setdefault(sm.template_id, []).append(
|
|
self._segment_model_to_entity(sm),
|
|
)
|
|
for t in templates:
|
|
t.segments = seg_map.get(t.id, [])
|
|
return templates
|
|
|
|
def get(self, template_id: str, user_id: str) -> Optional[Template]:
|
|
model = (
|
|
self.session.query(TemplateModel)
|
|
.filter(
|
|
TemplateModel.id == template_id,
|
|
TemplateModel.user_id == user_id,
|
|
)
|
|
.first()
|
|
)
|
|
if model is None:
|
|
return None
|
|
template = self._model_to_entity(model)
|
|
template.segments = self.list_segments(template.id)
|
|
return template
|
|
|
|
def create(self, template: Template) -> Template:
|
|
model = TemplateModel(
|
|
id=template.id,
|
|
user_id=template.user_id,
|
|
name=template.name,
|
|
mode=template.mode,
|
|
category=template.category,
|
|
tags=template.tags,
|
|
title_config=template.title_config,
|
|
subtitle_config=template.subtitle_config,
|
|
bgm_config=template.bgm_config,
|
|
estimated_duration=template.estimated_duration,
|
|
is_active=template.is_active,
|
|
)
|
|
self.session.add(model)
|
|
# flush 而非 commit,让 create + create_segments 在同一事务中提交
|
|
self.session.flush()
|
|
self.session.refresh(model)
|
|
result = self._model_to_entity(model)
|
|
result.segments = template.segments
|
|
return result
|
|
|
|
def update(self, template: Template) -> Template:
|
|
model = (
|
|
self.session.query(TemplateModel)
|
|
.filter(
|
|
TemplateModel.id == template.id,
|
|
TemplateModel.user_id == template.user_id,
|
|
)
|
|
.first()
|
|
)
|
|
if model is None:
|
|
raise ValueError(f"Template {template.id} not found")
|
|
model.name = template.name
|
|
model.mode = template.mode
|
|
model.category = template.category
|
|
model.tags = template.tags
|
|
model.title_config = template.title_config
|
|
model.subtitle_config = template.subtitle_config
|
|
model.bgm_config = template.bgm_config
|
|
model.estimated_duration = template.estimated_duration
|
|
model.is_active = template.is_active
|
|
self.session.commit()
|
|
self.session.refresh(model)
|
|
result = self._model_to_entity(model)
|
|
result.segments = template.segments
|
|
return result
|
|
|
|
def delete(self, template_id: str, user_id: str) -> bool:
|
|
model = (
|
|
self.session.query(TemplateModel)
|
|
.filter(
|
|
TemplateModel.id == template_id,
|
|
TemplateModel.user_id == user_id,
|
|
)
|
|
.first()
|
|
)
|
|
if model is None:
|
|
return False
|
|
model.is_active = False
|
|
# 级联清理关联的 segments,避免孤儿数据
|
|
self.session.query(TemplateSegmentModel).filter(
|
|
TemplateSegmentModel.template_id == template_id,
|
|
).delete(synchronize_session=False)
|
|
self.session.commit()
|
|
return True
|
|
|
|
def count_by_user(self, user_id: str) -> int:
|
|
return (
|
|
self.session.query(TemplateModel)
|
|
.filter(
|
|
TemplateModel.user_id == user_id,
|
|
TemplateModel.is_active.is_(True),
|
|
)
|
|
.count()
|
|
)
|
|
|
|
# ── Segments ──
|
|
|
|
def list_segments(self, template_id: str) -> List[TemplateSegment]:
|
|
models = (
|
|
self.session.query(TemplateSegmentModel)
|
|
.filter(TemplateSegmentModel.template_id == template_id)
|
|
.order_by(TemplateSegmentModel.segment_order)
|
|
.all()
|
|
)
|
|
return [self._segment_model_to_entity(m) for m in models]
|
|
|
|
def create_segments(self, segments: List[TemplateSegment]) -> List[TemplateSegment]:
|
|
for seg in segments:
|
|
model = TemplateSegmentModel(
|
|
id=seg.id,
|
|
template_id=seg.template_id,
|
|
segment_order=seg.segment_order,
|
|
duration_min=seg.duration_min,
|
|
duration_max=seg.duration_max,
|
|
material_type=seg.material_type,
|
|
)
|
|
self.session.add(model)
|
|
self.session.commit()
|
|
return segments
|
|
|
|
def delete_segments_by_template(self, template_id: str) -> int:
|
|
count = (
|
|
self.session.query(TemplateSegmentModel).filter(TemplateSegmentModel.template_id == template_id).delete()
|
|
)
|
|
self.session.commit()
|
|
return count
|
|
|
|
# ── Categories ──
|
|
|
|
def list_categories(self, user_id: str) -> List[TemplateCategory]:
|
|
models = (
|
|
self.session.query(TemplateCategoryModel)
|
|
.filter(TemplateCategoryModel.user_id == user_id)
|
|
.order_by(TemplateCategoryModel.created_at)
|
|
.all()
|
|
)
|
|
return [self._category_model_to_entity(m) for m in models]
|
|
|
|
def create_category(self, category: TemplateCategory) -> TemplateCategory:
|
|
model = TemplateCategoryModel(
|
|
id=category.id,
|
|
user_id=category.user_id,
|
|
name=category.name,
|
|
)
|
|
self.session.add(model)
|
|
self.session.commit()
|
|
self.session.refresh(model)
|
|
return self._category_model_to_entity(model)
|
|
|
|
def get_category(self, category_id: str, user_id: str) -> Optional[TemplateCategory]:
|
|
model = (
|
|
self.session.query(TemplateCategoryModel)
|
|
.filter(
|
|
TemplateCategoryModel.id == category_id,
|
|
TemplateCategoryModel.user_id == user_id,
|
|
)
|
|
.first()
|
|
)
|
|
if model is None:
|
|
return None
|
|
return self._category_model_to_entity(model)
|
|
|
|
def delete_category(self, category_id: str, user_id: str) -> bool:
|
|
model = (
|
|
self.session.query(TemplateCategoryModel)
|
|
.filter(
|
|
TemplateCategoryModel.id == category_id,
|
|
TemplateCategoryModel.user_id == user_id,
|
|
)
|
|
.first()
|
|
)
|
|
if model is None:
|
|
return False
|
|
self.session.delete(model)
|
|
self.session.commit()
|
|
return True
|
|
|
|
# ── Mapping helpers ──
|
|
|
|
@staticmethod
|
|
def _model_to_entity(model: TemplateModel) -> Template:
|
|
return Template(
|
|
id=model.id,
|
|
user_id=model.user_id,
|
|
name=model.name,
|
|
mode=model.mode,
|
|
category=model.category or "",
|
|
tags=model.tags or [],
|
|
title_config=model.title_config or {},
|
|
subtitle_config=model.subtitle_config or {},
|
|
bgm_config=model.bgm_config or {},
|
|
estimated_duration=model.estimated_duration or 0.0,
|
|
is_active=model.is_active,
|
|
created_at=model.created_at,
|
|
updated_at=model.updated_at,
|
|
)
|
|
|
|
@staticmethod
|
|
def _segment_model_to_entity(model: TemplateSegmentModel) -> TemplateSegment:
|
|
return TemplateSegment(
|
|
id=model.id,
|
|
template_id=model.template_id,
|
|
segment_order=model.segment_order,
|
|
duration_min=model.duration_min,
|
|
duration_max=model.duration_max,
|
|
material_type=model.material_type,
|
|
created_at=model.created_at,
|
|
updated_at=model.updated_at,
|
|
)
|
|
|
|
@staticmethod
|
|
def _category_model_to_entity(model: TemplateCategoryModel) -> TemplateCategory:
|
|
return TemplateCategory(
|
|
id=model.id,
|
|
user_id=model.user_id,
|
|
name=model.name,
|
|
created_at=model.created_at,
|
|
)
|