Security: - Add auth + file type/size validation to upload API - Add admin auth to /api/admin/ endpoints - Add SSRF protection to scrape action - Whitelist fields in PUT /api/notes/[id] to prevent mass assignment - Protect /lab, /agents, /chat, /canvas, /notebooks routes in middleware AI provider fixes: - Add deepseek/openrouter to factory ProviderType (was silently falling back to ollama) - Fix title-suggestion.service.ts to use factory instead of hardcoded OpenAI - Fix getAIProvider→getChatProvider in memory-echo, notebook-summary, agent-executor - Fix getAIProvider→getTagsProvider in notebook-suggestion, title-suggestions, transform-markdown Functional bugs: - Fix ALLOW_REGISTRATION AND→OR logic - Fix note-editor.tsx passing stale props to useAutoTagging instead of local state - Fix stale Note.embedding type (migrated to NoteEmbedding table) - Remove hardcoded SQLite path from prisma.ts Frontend: - Add AbortController to useAutoTagging and useTitleSuggestions hooks - Add error rollback to optimistic UI in note-inline-editor - Remove stale closure over notebookId/language in useAutoTagging Cleanup: - Rename docker-compose from keepnotes→memento - Remove unused unstable_cache import from config.ts - Remove dead useUndoRedo hook - Fix TagSuggestion type (add isNewLabel, reasoning) - Remove dead AIConfig/AIProviderType types - Fix ghost-tags unused isEmpty var and as any cast - Fix note-editor titleSuggestions typed as any[] Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
201 lines
4.8 KiB
TypeScript
201 lines
4.8 KiB
TypeScript
import { NextRequest, NextResponse } from 'next/server'
|
|
import prisma from '@/lib/prisma'
|
|
import { auth } from '@/auth'
|
|
import { parseNote } from '@/lib/utils'
|
|
|
|
// GET /api/notes/[id] - Get a single note
|
|
export async function GET(
|
|
request: NextRequest,
|
|
{ params }: { params: Promise<{ id: string }> }
|
|
) {
|
|
const session = await auth()
|
|
if (!session?.user?.id) {
|
|
return NextResponse.json(
|
|
{ success: false, error: 'Unauthorized' },
|
|
{ status: 401 }
|
|
)
|
|
}
|
|
|
|
try {
|
|
const { id } = await params
|
|
const note = await prisma.note.findUnique({
|
|
where: { id }
|
|
})
|
|
|
|
if (!note) {
|
|
return NextResponse.json(
|
|
{ success: false, error: 'Note not found' },
|
|
{ status: 404 }
|
|
)
|
|
}
|
|
|
|
if (note.userId !== session.user.id) {
|
|
const share = await prisma.noteShare.findUnique({
|
|
where: {
|
|
noteId_userId: {
|
|
noteId: note.id,
|
|
userId: session.user.id
|
|
}
|
|
}
|
|
})
|
|
if (!share || share.status !== 'accepted') {
|
|
return NextResponse.json(
|
|
{ success: false, error: 'Forbidden' },
|
|
{ status: 403 }
|
|
)
|
|
}
|
|
}
|
|
|
|
return NextResponse.json({
|
|
success: true,
|
|
data: parseNote(note)
|
|
})
|
|
} catch (error) {
|
|
console.error('Error fetching note:', error)
|
|
return NextResponse.json(
|
|
{ success: false, error: 'Failed to fetch note' },
|
|
{ status: 500 }
|
|
)
|
|
}
|
|
}
|
|
|
|
// PUT /api/notes/[id] - Update a note
|
|
export async function PUT(
|
|
request: NextRequest,
|
|
{ params }: { params: Promise<{ id: string }> }
|
|
) {
|
|
const session = await auth()
|
|
if (!session?.user?.id) {
|
|
return NextResponse.json(
|
|
{ success: false, error: 'Unauthorized' },
|
|
{ status: 401 }
|
|
)
|
|
}
|
|
|
|
try {
|
|
const { id } = await params
|
|
|
|
const existingNote = await prisma.note.findUnique({
|
|
where: { id }
|
|
})
|
|
|
|
if (!existingNote) {
|
|
return NextResponse.json(
|
|
{ success: false, error: 'Note not found' },
|
|
{ status: 404 }
|
|
)
|
|
}
|
|
|
|
if (existingNote.userId !== session.user.id) {
|
|
return NextResponse.json(
|
|
{ success: false, error: 'Forbidden' },
|
|
{ status: 403 }
|
|
)
|
|
}
|
|
|
|
const body = await request.json()
|
|
// Whitelist allowed fields to prevent mass assignment
|
|
const allowedFields = ['title', 'content', 'color', 'isPinned', 'isArchived', 'type', 'isMarkdown', 'size', 'notebookId']
|
|
const updateData: Record<string, any> = {}
|
|
for (const key of allowedFields) {
|
|
if (key in body) {
|
|
updateData[key] = body[key]
|
|
}
|
|
}
|
|
|
|
if ('checkItems' in body) {
|
|
updateData.checkItems = body.checkItems ?? null
|
|
}
|
|
if ('labels' in body) {
|
|
updateData.labels = body.labels ?? null
|
|
}
|
|
|
|
// Only update if data actually changed
|
|
const hasChanges = Object.keys(updateData).some((key) => {
|
|
const newValue = updateData[key]
|
|
const oldValue = (existingNote as any)[key]
|
|
// Handle arrays/objects by comparing JSON
|
|
if (typeof newValue === 'object' && newValue !== null) {
|
|
return JSON.stringify(newValue) !== JSON.stringify(oldValue)
|
|
}
|
|
return newValue !== oldValue
|
|
})
|
|
|
|
// If no changes, return existing note without updating timestamp
|
|
if (!hasChanges) {
|
|
return NextResponse.json({
|
|
success: true,
|
|
data: parseNote(existingNote),
|
|
})
|
|
}
|
|
|
|
const note = await prisma.note.update({
|
|
where: { id },
|
|
data: updateData,
|
|
})
|
|
|
|
return NextResponse.json({
|
|
success: true,
|
|
data: parseNote(note)
|
|
})
|
|
} catch (error) {
|
|
console.error('Error updating note:', error)
|
|
return NextResponse.json(
|
|
{ success: false, error: 'Failed to update note' },
|
|
{ status: 500 }
|
|
)
|
|
}
|
|
}
|
|
|
|
// DELETE /api/notes/[id] - Delete a note
|
|
export async function DELETE(
|
|
request: NextRequest,
|
|
{ params }: { params: Promise<{ id: string }> }
|
|
) {
|
|
const session = await auth()
|
|
if (!session?.user?.id) {
|
|
return NextResponse.json(
|
|
{ success: false, error: 'Unauthorized' },
|
|
{ status: 401 }
|
|
)
|
|
}
|
|
|
|
try {
|
|
const { id } = await params
|
|
|
|
const existingNote = await prisma.note.findUnique({
|
|
where: { id }
|
|
})
|
|
|
|
if (!existingNote) {
|
|
return NextResponse.json(
|
|
{ success: false, error: 'Note not found' },
|
|
{ status: 404 }
|
|
)
|
|
}
|
|
|
|
if (existingNote.userId !== session.user.id) {
|
|
return NextResponse.json(
|
|
{ success: false, error: 'Forbidden' },
|
|
{ status: 403 }
|
|
)
|
|
}
|
|
|
|
await prisma.note.update({
|
|
where: { id },
|
|
data: { trashedAt: new Date() }
|
|
})
|
|
|
|
return NextResponse.json({
|
|
success: true,
|
|
message: 'Note moved to trash'
|
|
})
|
|
} catch (error) {
|
|
console.error('Error deleting note:', error)
|
|
return NextResponse.json(
|
|
{ success: false, error: 'Failed to delete note' },
|
|
{ status: 500 }
|
|
)
|
|
}
|
|
}
|