1d26646a96
- 新增协作文件夹、文件、不可变修订、成员、会话、回调回执、编辑申请与分享链接数据模型。 - 补齐新建、导入、复制、下载、回收站、恢复、成员授权、所有权转让及文件级权限接口。 - 接入 ONLYOFFICE 共同编辑、历史版本预览与恢复、修订另存副本、导出下载审计和幂等回调保存。 - 增加编辑权限申请、审批通知、项目提醒聚合、通知 Feed、已读处理及历史待办数据回填。 - 支持公开分享的查看或编辑模式、有效期、密码哈希、失败锁定、短时访问凭证与固定分享地址。 - 增加协作者导出、申请编辑、工作表结构保护和所有权管理策略,并纳入项目接口权限矩阵。 - 新增协作文件库、编辑工作区、公开分享页、下载与另存为对话框,以及导航、路由和权限入口。 - 统一网页端与桌面端通知布局,增加沉浸式工作区和浏览器、Tauri 双端全屏能力。 - 扩展运行时文件下载适配、Tauri 环境识别和原生全屏命令,继续保持业务代码运行时边界。 - 加固 ONLYOFFICE 消息桥的同源下载、签名地址隔离和保存为能力校验,并更新桌面发布检查。 - 增加连续数据库迁移、50MB 上传限制、OnlyOffice 中文文案与开发启动路由校验。 - 补充协作、通知、权限、路由、运行时、布局和 OnlyOffice 相关测试及模块说明文档。
91 lines
2.7 KiB
Python
91 lines
2.7 KiB
Python
import logging
|
|
import uuid
|
|
|
|
from fastapi import APIRouter, Depends, Response, status
|
|
from sqlalchemy.ext.asyncio import AsyncSession
|
|
|
|
from app.core.deps import get_db_session, get_current_user, require_study_member
|
|
from app.schemas.notification import GeneralNotificationFeed, GeneralNotificationRead, NotificationItem
|
|
from app.services import document_service, notification_service, project_reminder_service
|
|
|
|
router = APIRouter()
|
|
logger = logging.getLogger(__name__)
|
|
|
|
|
|
@router.get(
|
|
"/notifications",
|
|
response_model=list[NotificationItem],
|
|
dependencies=[Depends(require_study_member())],
|
|
)
|
|
async def list_notifications(
|
|
study_id: uuid.UUID,
|
|
skip: int = 0,
|
|
limit: int = 20,
|
|
db: AsyncSession = Depends(get_db_session),
|
|
current_user=Depends(get_current_user),
|
|
) -> list[NotificationItem]:
|
|
return await document_service.list_distribution_notifications(
|
|
db,
|
|
study_id,
|
|
current_user,
|
|
skip=skip,
|
|
limit=limit,
|
|
)
|
|
|
|
|
|
@router.get(
|
|
"/notifications/feed",
|
|
response_model=GeneralNotificationFeed,
|
|
dependencies=[Depends(require_study_member())],
|
|
)
|
|
async def list_general_notifications(
|
|
study_id: uuid.UUID,
|
|
limit: int = 10,
|
|
db: AsyncSession = Depends(get_db_session),
|
|
current_user=Depends(get_current_user),
|
|
) -> GeneralNotificationFeed:
|
|
try:
|
|
await project_reminder_service.sync_project_reminders(db, study_id, current_user)
|
|
except Exception:
|
|
await db.rollback()
|
|
logger.warning("Failed to synchronize legacy project reminders", exc_info=True)
|
|
return await notification_service.list_feed(
|
|
db,
|
|
study_id=study_id,
|
|
recipient_id=current_user.id,
|
|
limit=limit,
|
|
)
|
|
|
|
|
|
@router.post(
|
|
"/notifications/{notification_id}/read",
|
|
response_model=GeneralNotificationRead,
|
|
dependencies=[Depends(require_study_member())],
|
|
)
|
|
async def mark_general_notification_read(
|
|
study_id: uuid.UUID,
|
|
notification_id: uuid.UUID,
|
|
db: AsyncSession = Depends(get_db_session),
|
|
current_user=Depends(get_current_user),
|
|
) -> GeneralNotificationRead:
|
|
return await notification_service.mark_read(
|
|
db,
|
|
study_id=study_id,
|
|
recipient_id=current_user.id,
|
|
notification_id=notification_id,
|
|
)
|
|
|
|
|
|
@router.post(
|
|
"/notifications/read-all",
|
|
status_code=status.HTTP_204_NO_CONTENT,
|
|
dependencies=[Depends(require_study_member())],
|
|
)
|
|
async def mark_all_general_notifications_read(
|
|
study_id: uuid.UUID,
|
|
db: AsyncSession = Depends(get_db_session),
|
|
current_user=Depends(get_current_user),
|
|
) -> Response:
|
|
await notification_service.mark_all_read(db, study_id=study_id, recipient_id=current_user.id)
|
|
return Response(status_code=status.HTTP_204_NO_CONTENT)
|