This commit is contained in:
2025-06-10 15:01:04 +02:00
parent 8c0d8cae69
commit 4b6d3fd991
3 changed files with 133 additions and 12 deletions

View File

@@ -7,7 +7,10 @@ import mime from 'mime-types';
export default defineEventHandler(async (event) => {
const xTagHeader = getRequestHeader(event, "x-tag");
console.log('[EOI Upload] Request received with x-tag:', xTagHeader);
if (!xTagHeader || (xTagHeader !== "094ut234" && xTagHeader !== "pjnvü1230")) {
console.error('[EOI Upload] Authentication failed - invalid x-tag');
throw createError({ statusCode: 401, statusMessage: "unauthenticated" });
}
@@ -16,7 +19,10 @@ export default defineEventHandler(async (event) => {
const query = getQuery(event);
const interestId = query.interestId as string;
console.log('[EOI Upload] Interest ID:', interestId);
if (!interestId) {
console.error('[EOI Upload] No interest ID provided');
throw createError({
statusCode: 400,
statusMessage: 'Interest ID is required',
@@ -24,6 +30,7 @@ export default defineEventHandler(async (event) => {
}
// Ensure bucket exists
console.log('[EOI Upload] Ensuring client-portal bucket exists');
await createBucketIfNotExists('client-portal');
// Parse multipart form data
@@ -32,39 +39,61 @@ export default defineEventHandler(async (event) => {
keepExtensions: true,
});
console.log('[EOI Upload] Parsing multipart form data');
const [fields, files] = await form.parse(event.node.req);
// Handle the uploaded file
const uploadedFile = Array.isArray(files.file) ? files.file[0] : files.file;
if (!uploadedFile) {
console.error('[EOI Upload] No file uploaded in request');
throw createError({
statusCode: 400,
statusMessage: 'No file uploaded',
});
}
console.log('[EOI Upload] File received:', {
originalFilename: uploadedFile.originalFilename,
size: uploadedFile.size,
mimetype: uploadedFile.mimetype
});
// Read file buffer
console.log('[EOI Upload] Reading file from disk');
const fileBuffer = await fs.readFile(uploadedFile.filepath);
// Generate filename with timestamp
// Generate filename with timestamp - ensure it goes to EOIs folder
const timestamp = Date.now();
const sanitizedName = uploadedFile.originalFilename?.replace(/[^a-zA-Z0-9.-]/g, '_') || 'eoi-document.pdf';
const fileName = `EOIs/${interestId}-${timestamp}-${sanitizedName}`;
console.log('[EOI Upload] Generated filename:', fileName);
// Get content type
const contentType = mime.lookup(uploadedFile.originalFilename || '') || 'application/pdf';
console.log('[EOI Upload] Content type:', contentType);
// Upload to MinIO client-portal bucket
console.log('[EOI Upload] Uploading to MinIO client-portal bucket');
const client = getMinioClient();
await client.putObject('client-portal', fileName, fileBuffer, fileBuffer.length, {
'Content-Type': contentType,
});
try {
await client.putObject('client-portal', fileName, fileBuffer, fileBuffer.length, {
'Content-Type': contentType,
});
console.log('[EOI Upload] Successfully uploaded to MinIO');
} catch (minioError: any) {
console.error('[EOI Upload] MinIO upload failed:', minioError);
throw new Error(`Failed to upload to MinIO: ${minioError.message}`);
}
// Clean up temp file
console.log('[EOI Upload] Cleaning up temp file');
await fs.unlink(uploadedFile.filepath);
// Get download URL for the uploaded file
console.log('[EOI Upload] Generating presigned URL');
const url = await client.presignedGetObject('client-portal', fileName, 24 * 60 * 60); // 24 hour expiry
// Prepare document data for database
@@ -77,6 +106,7 @@ export default defineEventHandler(async (event) => {
};
// Update interest with EOI document information
console.log('[EOI Upload] Updating interest with EOI document info');
await updateInterestEOIDocument(interestId, documentData);
// Also update the status fields
@@ -84,6 +114,7 @@ export default defineEventHandler(async (event) => {
'EOI Status': 'Waiting for Signatures',
'EOI Time Sent': new Date().toISOString()
};
console.log('[EOI Upload] Updating interest status fields');
// Update Sales Process Level if it's below "LOI and NDA Sent"
const currentLevel = await getCurrentSalesLevel(interestId);
@@ -103,13 +134,15 @@ export default defineEventHandler(async (event) => {
}
});
console.log('[EOI Upload] Upload completed successfully');
return {
success: true,
document: documentData,
message: 'EOI document uploaded successfully',
};
} catch (error: any) {
console.error('Failed to upload EOI document:', error);
console.error('[EOI Upload] Failed to upload EOI document:', error);
console.error('[EOI Upload] Error stack:', error.stack);
throw createError({
statusCode: 500,
statusMessage: error.message || 'Failed to upload EOI document',