03b569d708
- Remove all sector-specific extensions (construction, ecommerce, export, hotel, restaurant, tech) — only general-purpose extensions remain - Move NE-bilaga and SRU export from extensions to core reports (lib/reports/) - Move moms-box-mapping from extensions/export/shared to lib/vat/ - Replace per-extension API routes with catch-all dispatcher (app/api/extensions/ext/[...path]/route.ts) - Add manifest.json for each extension with metadata, env vars, and deps - Add api-routes.ts pattern for extension-defined API endpoints - Add code generation scripts (generate-extension-registry, create-extension) - Add extensions.config.json for opt-in extension loading - Add extensions.schema.json for config validation - Add email service interface with noop default (lib/email/service.ts) - Add CI workflow (core-build.yml) to verify core builds with zero extensions - Add migration 045: expand account_type CHECK for untaxed_reserves - Update CLAUDE.md with comprehensive extension system documentation - Update all report engines and bookkeeping services for new imports - Clean up extensions.schema.json to only list existing extensions Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
102 lines
2.7 KiB
TypeScript
102 lines
2.7 KiB
TypeScript
import { createClient } from '@/lib/supabase/server'
|
|
import { NextResponse } from 'next/server'
|
|
import { ensureInitialized } from '@/lib/init'
|
|
import { createNewVersion } from '@/lib/core/documents/document-service'
|
|
|
|
ensureInitialized()
|
|
|
|
/**
|
|
* POST /api/documents/:id/versions
|
|
* Create a new version of an existing document (atomic via RPC)
|
|
*
|
|
* Accepts multipart/form-data with:
|
|
* - file: The new version file
|
|
*/
|
|
export async function POST(
|
|
request: Request,
|
|
{ params }: { params: Promise<{ id: string }> }
|
|
) {
|
|
const supabase = await createClient()
|
|
|
|
const { data: { user } } = await supabase.auth.getUser()
|
|
|
|
if (!user) {
|
|
return NextResponse.json({ error: 'Unauthorized' }, { status: 401 })
|
|
}
|
|
|
|
const { id } = await params
|
|
|
|
try {
|
|
const formData = await request.formData()
|
|
const file = formData.get('file') as File | null
|
|
|
|
if (!file) {
|
|
return NextResponse.json({ error: 'No file provided' }, { status: 400 })
|
|
}
|
|
|
|
const buffer = await file.arrayBuffer()
|
|
|
|
const newVersion = await createNewVersion(supabase, user.id, id, {
|
|
name: file.name,
|
|
buffer,
|
|
type: file.type,
|
|
})
|
|
|
|
return NextResponse.json({ data: newVersion })
|
|
} catch (error) {
|
|
console.error('[documents/versions/POST] Version creation failed:', error)
|
|
return NextResponse.json(
|
|
{ error: error instanceof Error ? error.message : 'Version creation failed' },
|
|
{ status: 500 }
|
|
)
|
|
}
|
|
}
|
|
|
|
/**
|
|
* GET /api/documents/:id/versions
|
|
* List all versions in the document chain
|
|
*/
|
|
export async function GET(
|
|
request: Request,
|
|
{ params }: { params: Promise<{ id: string }> }
|
|
) {
|
|
const supabase = await createClient()
|
|
|
|
const { data: { user } } = await supabase.auth.getUser()
|
|
|
|
if (!user) {
|
|
return NextResponse.json({ error: 'Unauthorized' }, { status: 401 })
|
|
}
|
|
|
|
const { id } = await params
|
|
|
|
// First, check if the document belongs to the user
|
|
const { data: doc, error: docError } = await supabase
|
|
.from('document_attachments')
|
|
.select('id, original_id')
|
|
.eq('id', id)
|
|
.eq('user_id', user.id)
|
|
.single()
|
|
|
|
if (docError || !doc) {
|
|
return NextResponse.json({ error: 'Document not found' }, { status: 404 })
|
|
}
|
|
|
|
// The root document is either the original_id or the document itself
|
|
const rootId = doc.original_id || doc.id
|
|
|
|
// Fetch all versions in the chain
|
|
const { data: versions, error: versionsError } = await supabase
|
|
.from('document_attachments')
|
|
.select('*')
|
|
.eq('user_id', user.id)
|
|
.or(`id.eq.${rootId},original_id.eq.${rootId}`)
|
|
.order('version', { ascending: true })
|
|
|
|
if (versionsError) {
|
|
return NextResponse.json({ error: versionsError.message }, { status: 500 })
|
|
}
|
|
|
|
return NextResponse.json({ data: versions })
|
|
}
|