Bug fixes (Flutter): - Wrap multi-statement DB writes (insert/update/delete note, deleteDocument, deletePageData, OCR FTS merge, migrations) in transactions to prevent data loss on interruption and a read-modify-write FTS race. - Fix PdfDocument leaks on exception (try/finally dispose) and preserve image aspect ratio when stamping images onto PDF pages. - Guard file-picker against empty selection (was .single -> crash). - Fix eraser ConcurrentModificationError and unmodifiable-list crash on PDF pages; capture page synchronously on save to stop wrong-page data loss. - Fix Riverpod DB-not-ready races, broken pull-to-refresh, settings load race, and search N+1; transform stored annotations on PDF page rotation. - Normalize pen pressure for devices without a pressure range. - PPT: single source of truth for slide strokes so ink displays and exports. UI/UX: - Material 3 typography, theme-aware colors (dark-mode fixes), hover cursors and right-click/visible actions on desktop, keyboard shortcuts (undo/redo/ save/find), toolbar overflow handling, friendlier empty states, semantic OCR status badges, relative timestamps, 1-based page indicators, large-deck PPT navigation, and a scratchpad-scope label in split view. Server (optional backend): - Persist JWT secret (was per-process random), block path traversal in storage, fix CORS '*'+credentials, add OCR job ownership checks, last-writer-wins sync guard, constant-time login, and split out heavy OCR deps so the API/tests run without them. CI: Gitea workflows for format+analyze+test (Linux, system sqlite) and a Windows release build; pristine `flutter analyze`, all Flutter and server tests green. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
91 lines
2.8 KiB
Python
91 lines
2.8 KiB
Python
"""Sync router for BadNote — push/pull notes."""
|
|
|
|
import json
|
|
from datetime import datetime, timezone
|
|
from uuid import uuid4
|
|
|
|
from fastapi import APIRouter, Depends, status
|
|
|
|
from ..auth import get_current_user
|
|
from ..database import get_db
|
|
from ..models import NoteResponse, SyncPullRequest, SyncPushRequest, SyncResponse
|
|
|
|
router = APIRouter()
|
|
|
|
|
|
@router.post("/push", response_model=SyncResponse, status_code=status.HTTP_200_OK)
|
|
async def sync_push(
|
|
body: SyncPushRequest,
|
|
user_id: str = Depends(get_current_user),
|
|
) -> SyncResponse:
|
|
"""Upsert notes from client."""
|
|
db = await get_db()
|
|
synced = 0
|
|
|
|
for note in body.notes:
|
|
now = datetime.now(timezone.utc).isoformat()
|
|
tags_json = json.dumps(note.tags)
|
|
|
|
existing = await (
|
|
await db.execute(
|
|
"SELECT id FROM notes WHERE id = ? AND user_id = ?", (note.id, user_id)
|
|
)
|
|
).fetchone()
|
|
|
|
if existing:
|
|
# Last-writer-wins by timestamp: only apply the client's version if
|
|
# it is newer than what the server already has, so a stale client
|
|
# cannot overwrite a more recent note (data loss).
|
|
await db.execute(
|
|
"""UPDATE notes SET title = ?, tags = ?, strokes_json = ?, updated_at = ?
|
|
WHERE id = ? AND user_id = ? AND updated_at < ?""",
|
|
(
|
|
note.title,
|
|
tags_json,
|
|
note.strokes_json,
|
|
note.updated_at,
|
|
note.id,
|
|
user_id,
|
|
note.updated_at,
|
|
),
|
|
)
|
|
else:
|
|
await db.execute(
|
|
"""INSERT INTO notes (id, user_id, title, created_at, updated_at, tags, strokes_json)
|
|
VALUES (?, ?, ?, ?, ?, ?, ?)""",
|
|
(note.id, user_id, note.title, now, note.updated_at, tags_json, note.strokes_json),
|
|
)
|
|
synced += 1
|
|
|
|
await db.commit()
|
|
return SyncResponse(synced_count=synced)
|
|
|
|
|
|
@router.post("/pull", status_code=status.HTTP_200_OK)
|
|
async def sync_pull(
|
|
body: SyncPullRequest,
|
|
user_id: str = Depends(get_current_user),
|
|
) -> dict:
|
|
"""Pull notes updated since a timestamp."""
|
|
db = await get_db()
|
|
cursor = await db.execute(
|
|
"""SELECT * FROM notes WHERE user_id = ? AND updated_at > ? ORDER BY updated_at""",
|
|
(user_id, body.since),
|
|
)
|
|
rows = await cursor.fetchall()
|
|
|
|
notes = [
|
|
NoteResponse(
|
|
id=r["id"],
|
|
user_id=r["user_id"],
|
|
title=r["title"],
|
|
created_at=r["created_at"],
|
|
updated_at=r["updated_at"],
|
|
tags=json.loads(r["tags"]),
|
|
strokes_json=r["strokes_json"],
|
|
).model_dump()
|
|
for r in rows
|
|
]
|
|
|
|
return {"notes": notes}
|