summaryrefslogtreecommitdiff
path: root/app/api/revision-upload/route.ts
blob: 35344b4bff925e8781754c1c73e69141a0f598a3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
import { NextRequest, NextResponse } from "next/server"
import { writeFile } from "fs/promises"
import { join } from "path"
import { v4 as uuidv4 } from "uuid"
import path from "path"
import { revalidateTag } from "next/cache" // ✅ 추가

import db from "@/db/db"
import {
  documents,
  issueStages,
  revisions,
  documentAttachments,
} from "@/db/schema/vendorDocu"
import { and, eq } from "drizzle-orm"

/* ① change log 유틸 */
import {
  logRevisionChange,
  logAttachmentChange,
} from "@/lib/vendor-document-list/sync-service"

export async function POST(request: NextRequest) {
  try {
    const formData = await request.formData()

    /* ------- 파라미터 파싱 ------- */
    const stage            = formData.get("stage")        as string | null
    const revision         = formData.get("revision")     as string | null
    const docId            = Number(formData.get("documentId"))
    const uploaderName     = formData.get("uploaderName") as string | null
    const comment          = formData.get("comment")      as string | null
    const mode             = (formData.get("mode") || "new") as string // 'new'|'append'
    const targetSystem     = (formData.get("targetSystem") as string | null) ?? "DOLCE"
    const attachmentFiles  = formData.getAll("attachments") as File[]

    /* ------- 검증 ------- */
    if (!docId || Number.isNaN(docId))
      return NextResponse.json({ error: "Invalid documentId" }, { status: 400 })
    if (!stage || !revision)
      return NextResponse.json({ error: "Missing stage or revision" }, { status: 400 })
    if (!attachmentFiles.length)
      return NextResponse.json({ error: "No files provided" }, { status: 400 })

    const MAX = 3 * 1024 * 1024 * 1024 // 3 GB
    for (const f of attachmentFiles)
      if (f.size > MAX)
        return NextResponse.json(
          { error: `${f.name} > 3 GB` },
          { status: 400 }
        )

    /* ------- 계약 ID 확보 ------- */
    const [{ contractId }] = await db
      .select({ contractId: documents.contractId })
      .from(documents)
      .where(eq(documents.id, docId))
      .limit(1)

    /* ------- 트랜잭션 ------- */
    const result = await db.transaction(async (tx) => {
      /* 1) Stage */
      let issueStageId: number
      const [stageRow] = await tx
        .select({ id: issueStages.id })
        .from(issueStages)
        .where(and(
          eq(issueStages.stageName, stage),
          eq(issueStages.documentId, docId)
        ))
        .limit(1)

      if (!stageRow) {
        const [s] = await tx.insert(issueStages)
          .values({ documentId: docId, stageName: stage, updatedAt: new Date() })
          .returning({ id: issueStages.id })
        issueStageId = s.id
      } else issueStageId = stageRow.id

      /* 2) Revision */
      const today = new Date().toISOString().slice(0, 10)
      let revisionId: number
      const [revRow] = await tx
        .select()
        .from(revisions)
        .where(and(
          eq(revisions.issueStageId, issueStageId),
          eq(revisions.revision, revision)
        ))
        .limit(1)

      if (!revRow || mode === "new") {
        /* --- CREATE --- */
        const [newRev] = await tx.insert(revisions)
          .values({
            issueStageId,
            revision,
            uploaderType: "vendor",
            uploaderName: uploaderName ?? undefined,
            revisionStatus: "UPLOADED",
            uploadedAt: today,
            comment: comment ?? undefined,
            updatedAt: new Date(),
          })
          .returning()
        revisionId = newRev.id

        // change_logs: CREATE
        await logRevisionChange(
          contractId,
          revisionId,
          "CREATE",
          newRev,
          undefined,
          undefined,
          uploaderName ?? undefined,
          [targetSystem]
        )
      } else {
        /* --- UPDATE --- */
        await tx.update(revisions)
          .set({
            uploaderName: uploaderName ?? revRow.uploaderName,
            comment: comment ?? revRow.comment,
            updatedAt: new Date(),
          })
          .where(eq(revisions.id, revRow.id))

        const [updated] = await tx
          .select()
          .from(revisions)
          .where(eq(revisions.id, revRow.id))

        revisionId = revRow.id

        await logRevisionChange(
          contractId,
          revisionId,
          "UPDATE",
          updated,
          revRow,
          undefined,
          uploaderName ?? undefined,
          [targetSystem]
        )
      }

      /* 3) Attachments */
      const uploadedFiles: any[] = []
      const baseDir = join(process.cwd(), "public", "documents")

      for (const file of attachmentFiles) {
        const ext   = path.extname(file.name)
        const fname = uuidv4() + ext
        const dest  = join(baseDir, fname)

        await writeFile(dest, Buffer.from(await file.arrayBuffer()))

        const [att] = await tx.insert(documentAttachments)
          .values({
            revisionId,
            fileName: file.name,
            filePath: "/documents/" + fname,
            fileSize: file.size,
            fileType: ext.slice(1).toLowerCase() || undefined,
            updatedAt: new Date(),
          })
          .returning()

        uploadedFiles.push({
          id: att.id,
          fileName: file.name,
          fileSize: file.size,
          filePath: att.filePath,
        })

        // change_logs: attachment CREATE
        await logAttachmentChange(
          contractId,
          att.id,
          "CREATE",
          att,
          undefined,
          undefined,
          uploaderName ?? undefined,
          [targetSystem]
        )
      }

      /* 4) documents.updatedAt */
      await tx.update(documents)
        .set({ updatedAt: new Date() })
        .where(eq(documents.id, docId))

      return { revisionId, stage, revision, uploadedFiles, mode, contractId }
    })

    // ✅ 캐시 무효화 - 트랜잭션 완료 후에 실행
    try {
      // enhanced documents 캐시 무효화
      revalidateTag(`enhanced-documents-${result.contractId}`)
      
      // sync status 관련 캐시도 무효화 (필요시)
      revalidateTag(`sync-status-${result.contractId}`)
      
      console.log(`✅ Cache invalidated for contract ${result.contractId}`)
    } catch (cacheError) {
      console.warn('⚠️ Cache invalidation failed:', cacheError)
      // 캐시 무효화 실패해도 업로드는 성공으로 처리
    }

    return NextResponse.json({
      success: true,
      message: `${result.uploadedFiles.length}개 파일 업로드 완료`,
      data: result,
    })
  } catch (e) {
    console.error("revision-upload error:", e)
    return NextResponse.json(
      { error: "Failed to upload revision", details: String(e) },
      { status: 500 },
    )
  }
}