d92909321c
CI/CD Pipeline / Deploy Staging (Watchtower auto-deploy) (push) Successful in 1m14s
CI/CD Pipeline / Check if frontend-only change (push) Has been skipped
CI/CD Pipeline / Validate - Code Quality (push) Failing after 2m12s
CI/CD Pipeline / Validate - Type Check (mypy) (push) Successful in 1m28s
CI/CD Pipeline / Validate - Migration (alembic) (push) Successful in 1m24s
CI/CD Pipeline / Unit Tests (push) Successful in 6m25s
CI/CD Pipeline / Integration Tests (push) Successful in 5m4s
CI/CD Pipeline / Frontend Lint (push) Successful in 45s
CI/CD Pipeline / Frontend Unit Tests (push) Successful in 1m23s
CI/CD Pipeline / PR Build API Image (push) Has been skipped
CI/CD Pipeline / PR Build Web Image (push) Has been skipped
CI/CD Pipeline / PR Build Worker Image (push) Has been skipped
CI/CD Pipeline / Build Staging API Image (push) Successful in 11m44s
CI/CD Pipeline / Build Staging Web Image (push) Successful in 1m17s
CI/CD Pipeline / Build Staging Worker Image (push) Successful in 2m36s
CI/CD Pipeline / Build Production API Image (push) Has been skipped
CI/CD Pipeline / Build Production Web Image (push) Has been skipped
CI/CD Pipeline / Build Production Worker Image (push) Has been skipped
CI/CD Pipeline / Deploy Production (push) Has been skipped
CI/CD Pipeline / Production Browser E2E (push) Has been skipped
CI/CD Pipeline / Staging E2E Tests (push) Has been cancelled
CI/CD Pipeline / Staging API Integration Tests (push) Has been cancelled
CI/CD Pipeline / ACR Image Cleanup (push) Has been cancelled
63 lines
1.5 KiB
Python
Executable File
63 lines
1.5 KiB
Python
Executable File
"""邮件服务端口(领域层接口).
|
|
|
|
定义邮件发送服务的抽象接口,具体实现由基础设施层(adapters)提供。
|
|
遵循 DDD 依赖倒置原则:领域层定义端口,外层实现端口。
|
|
"""
|
|
|
|
from __future__ import annotations
|
|
|
|
from abc import ABC, abstractmethod
|
|
from dataclasses import dataclass
|
|
from typing import List, Optional
|
|
|
|
|
|
@dataclass
|
|
class EmailConfig:
|
|
"""邮件配置(领域层值对象)"""
|
|
|
|
smtp_host: str = "smtp.gmail.com"
|
|
smtp_port: int = 587
|
|
smtp_user: str = ""
|
|
smtp_password: str = ""
|
|
from_email: str = ""
|
|
from_name: str = "小虾 SaaS"
|
|
use_tls: bool = True
|
|
|
|
|
|
class EmailServicePort(ABC):
|
|
"""邮件服务端口(抽象接口)"""
|
|
|
|
@abstractmethod
|
|
def send_email(
|
|
self,
|
|
to_email: str,
|
|
subject: str,
|
|
html_body: str,
|
|
text_body: Optional[str] = None,
|
|
cc: Optional[List[str]] = None,
|
|
bcc: Optional[List[str]] = None,
|
|
) -> tuple[bool, Optional[str]]:
|
|
"""发送邮件"""
|
|
...
|
|
|
|
@abstractmethod
|
|
def send_verification_email(
|
|
self,
|
|
to_email: str,
|
|
verification_code: str,
|
|
username: str = "",
|
|
) -> tuple[bool, Optional[str]]:
|
|
"""发送验证邮件"""
|
|
...
|
|
|
|
@abstractmethod
|
|
def send_password_reset_email(
|
|
self,
|
|
to_email: str,
|
|
reset_token: str,
|
|
reset_url: str = "",
|
|
username: str = "",
|
|
) -> tuple[bool, Optional[str]]:
|
|
"""发送密码重置邮件"""
|
|
...
|