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
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
|
"use server"; // Next.js 서버 액션에서 직접 import하려면 (선택)
import { asc, desc, ilike, inArray, and, or, gte, lte, eq, count } from "drizzle-orm";
import { revalidateTag } from "next/cache";
import { filterColumns } from "@/lib/filter-columns";
import { unstable_cache } from "@/lib/unstable-cache";
import { getErrorMessage } from "@/lib/handle-error";
import db from "@/db/db";
import { sendEmail } from "../mail/sendEmail";
import { CreateVendorCandidateSchema, createVendorCandidateSchema, GetTechVendorsCandidateSchema, RemoveTechCandidatesInput, removeTechCandidatesSchema, updateVendorCandidateSchema, UpdateVendorCandidateSchema } from "./validations";
import { PgTransaction } from "drizzle-orm/pg-core";
import { techVendorCandidates, techVendorCandidatesWithVendorInfo } from "@/db/schema/techVendors";
import { headers } from 'next/headers';
export async function getVendorCandidates(input: GetTechVendorsCandidateSchema) {
return unstable_cache(
async () => {
try {
const offset = (input.page - 1) * input.perPage
const fromDate = input.from ? new Date(input.from) : undefined;
const toDate = input.to ? new Date(input.to) : undefined;
// 1) Advanced filters
const advancedWhere = filterColumns({
table: techVendorCandidatesWithVendorInfo,
filters: input.filters,
joinOperator: input.joinOperator,
})
// 2) Global search
let globalWhere
if (input.search) {
const s = `%${input.search}%`
globalWhere = or(
ilike(techVendorCandidatesWithVendorInfo.companyName, s),
ilike(techVendorCandidatesWithVendorInfo.contactEmail, s),
ilike(techVendorCandidatesWithVendorInfo.contactPhone, s),
ilike(techVendorCandidatesWithVendorInfo.country, s),
ilike(techVendorCandidatesWithVendorInfo.source, s),
ilike(techVendorCandidatesWithVendorInfo.status, s),
ilike(techVendorCandidatesWithVendorInfo.taxId, s),
ilike(techVendorCandidatesWithVendorInfo.items, s),
ilike(techVendorCandidatesWithVendorInfo.remark, s),
ilike(techVendorCandidatesWithVendorInfo.address, s),
// etc.
)
}
// 3) Combine finalWhere
const finalWhere = and(
advancedWhere,
globalWhere,
fromDate ? gte(techVendorCandidatesWithVendorInfo.createdAt, fromDate) : undefined,
toDate ? lte(techVendorCandidatesWithVendorInfo.createdAt, toDate) : undefined
)
// 5) Sorting
const orderBy =
input.sort && input.sort.length > 0
? input.sort.map((item) =>
item.desc
? desc(techVendorCandidatesWithVendorInfo[item.id])
: asc(techVendorCandidatesWithVendorInfo[item.id])
)
: [desc(techVendorCandidatesWithVendorInfo.createdAt)]
// 6) Query & count
const { data, total } = await db.transaction(async (tx) => {
// a) Select from the view
const candidatesData = await tx
.select()
.from(techVendorCandidatesWithVendorInfo)
.where(finalWhere)
.orderBy(...orderBy)
.offset(offset)
.limit(input.perPage)
// b) Count total
const resCount = await tx
.select({ count: count() })
.from(techVendorCandidatesWithVendorInfo)
.where(finalWhere)
return { data: candidatesData, total: resCount[0]?.count }
})
// 7) Calculate pageCount
const pageCount = Math.ceil(total / input.perPage)
return { data, pageCount }
} catch (err) {
console.error(err)
return { data: [], pageCount: 0 }
}
},
// Cache key
[JSON.stringify(input)],
{
revalidate: 3600,
tags: ["tech-vendor-candidates"],
}
)()
}
export async function createVendorCandidate(input: CreateVendorCandidateSchema) {
try {
// Validate input
const validated = createVendorCandidateSchema.parse(input);
// 트랜잭션으로 데이터 삽입
const result = await db.transaction(async (tx) => {
// Insert into database
const [newCandidate] = await tx
.insert(techVendorCandidates)
.values({
companyName: validated.companyName,
contactEmail: validated.contactEmail,
contactPhone: validated.contactPhone || null,
taxId: validated.taxId || "",
address: validated.address || null,
country: validated.country || null,
source: validated.source || null,
status: validated.status || "COLLECTED",
remark: validated.remark || null,
items: validated.items || "", // items가 필수 필드이므로 빈 문자열이라도 제공
vendorId: validated.vendorId || null,
updatedAt: new Date(),
})
.returning();
return newCandidate;
});
// Invalidate cache
revalidateTag("tech-vendor-candidates");
return { success: true, data: result };
} catch (error) {
console.error("Failed to create tech vendor candidate:", error);
return { success: false, error: getErrorMessage(error) };
}
}
// Helper function to group tech vendor candidates by status
async function groupVendorCandidatesByStatus(tx: PgTransaction<Record<string, never>, Record<string, never>, Record<string, never>>) {
return tx
.select({
status: techVendorCandidates.status,
count: count(),
})
.from(techVendorCandidates)
.groupBy(techVendorCandidates.status);
}
/**
* Get count of tech vendor candidates grouped by status
*/
export async function getVendorCandidateCounts() {
return unstable_cache(
async () => {
try {
// Initialize counts object with all possible statuses set to 0
const initial: Record<"COLLECTED" | "INVITED" | "DISCARDED", number> = {
COLLECTED: 0,
INVITED: 0,
DISCARDED: 0,
};
// Execute query within transaction and transform results
const result = await db.transaction(async (tx) => {
const rows = await groupVendorCandidatesByStatus(tx);
return rows.reduce<Record<string, number>>((acc, { status, count }) => {
if (status in acc) {
acc[status] = count;
}
return acc;
}, initial);
});
return result;
} catch (err) {
console.error("Failed to get tech vendor candidate counts:", err);
return {
COLLECTED: 0,
INVITED: 0,
DISCARDED: 0,
};
}
},
["tech-vendor-candidate-status-counts"], // Cache key
{
revalidate: 3600, // Revalidate every hour
}
)();
}
/**
* Update a vendor candidate
*/
export async function updateVendorCandidate(input: UpdateVendorCandidateSchema) {
try {
// Validate input
const validated = updateVendorCandidateSchema.parse(input);
// Prepare update data (excluding id)
const { id, ...updateData } = validated;
const headersList = await headers();
const host = headersList.get('host') || 'localhost:3000';
const baseUrl = `http://${host}`
// Add updatedAt timestamp
const dataToUpdate = {
...updateData,
updatedAt: new Date(),
};
const result = await db.transaction(async (tx) => {
// 현재 데이터 조회 (상태 변경 감지를 위해)
const [existingCandidate] = await tx
.select()
.from(techVendorCandidates)
.where(eq(techVendorCandidates.id, id));
if (!existingCandidate) {
throw new Error("Tech vendor candidate not found");
}
// Update database
const [updatedCandidate] = await tx
.update(techVendorCandidates)
.set(dataToUpdate)
.where(eq(techVendorCandidates.id, id))
.returning();
// 로그 작성
const statusChanged =
updateData.status &&
existingCandidate.status !== updateData.status;
// If status was updated to "INVITED", send email
if (statusChanged && updateData.status === "INVITED" && updatedCandidate.contactEmail) {
await sendEmail({
to: updatedCandidate.contactEmail,
subject: "Invitation to Register as a Vendor",
template: "vendor-invitation",
context: {
companyName: updatedCandidate.companyName,
language: "en",
registrationLink: `${baseUrl}/en/partners`,
}
});
}
return updatedCandidate;
});
// Invalidate cache
revalidateTag("vendor-candidates");
return { success: true, data: result };
} catch (error) {
console.error("Failed to update vendor candidate:", error);
return { success: false, error: getErrorMessage(error) };
}
}
export async function bulkUpdateVendorCandidateStatus({
ids,
status,
}: {
ids: number[],
status: "COLLECTED" | "INVITED" | "DISCARDED",
}) {
try {
// Validate inputs
if (!ids.length) {
return { success: false, error: "No IDs provided" };
}
if (!["COLLECTED", "INVITED", "DISCARDED"].includes(status)) {
return { success: false, error: "Invalid status" };
}
const headersList = await headers();
const host = headersList.get('host') || 'localhost:3000';
const baseUrl = `http://${host}`
const result = await db.transaction(async (tx) => {
// Update all records
const updatedCandidates = await tx
.update(techVendorCandidates)
.set({
status,
updatedAt: new Date(),
})
.where(inArray(techVendorCandidates.id, ids))
.returning();
// If status is "INVITED", send emails to all updated candidates
if (status === "INVITED") {
const emailPromises = updatedCandidates
.filter(candidate => candidate.contactEmail)
.map(async (candidate) => {
await sendEmail({
to: candidate.contactEmail!,
subject: "Invitation to Register as a Vendor",
template: "vendor-invitation",
context: {
companyName: candidate.companyName,
language: "en",
registrationLink: `${baseUrl}/en/partners`,
}
});
});
// Wait for all emails to be sent
await Promise.all(emailPromises);
}
return updatedCandidates;
});
// Invalidate cache
revalidateTag("vendor-candidates");
return {
success: true,
data: result,
count: result.length
};
} catch (error) {
console.error("Failed to bulk update vendor candidates:", error);
return { success: false, error: getErrorMessage(error) };
}
}
// 4. 후보자 삭제 함수 업데이트
export async function removeCandidates(input: RemoveTechCandidatesInput) {
try {
// Validate input
const validated = removeTechCandidatesSchema.parse(input);
const result = await db.transaction(async (tx) => {
// Get candidates before deletion (for logging purposes)
const candidatesBeforeDelete = await tx
.select()
.from(techVendorCandidates)
.where(inArray(techVendorCandidates.id, validated.ids));
// Delete the candidates
const deletedCandidates = await tx
.delete(techVendorCandidates)
.where(inArray(techVendorCandidates.id, validated.ids))
.returning({ id: techVendorCandidates.id });
return {
deletedCandidates,
candidatesBeforeDelete
};
});
// If no candidates were deleted, return an error
if (!result.deletedCandidates.length) {
return {
success: false,
error: "No candidates were found with the provided IDs",
};
}
// Log deletion for audit purposes
console.log(
`Deleted ${result.deletedCandidates.length} vendor candidates:`,
result.candidatesBeforeDelete.map(c => `${c.id} (${c.companyName})`)
);
// Invalidate cache
revalidateTag("vendor-candidates");
revalidateTag("vendor-candidate-status-counts");
revalidateTag("vendor-candidate-total-count");
return {
success: true,
count: result.deletedCandidates.length,
deletedIds: result.deletedCandidates.map(c => c.id),
};
} catch (error) {
console.error("Failed to remove vendor candidates:", error);
return { success: false, error: getErrorMessage(error) };
}
}
|