fix: stabilize uploads and guest feedback filters
Mirror to GitHub / mirror (push) Successful in 1m54s
Test and Lint / backend-test (push) Successful in 1m51s
Test and Lint / frontend-test (push) Successful in 2m11s
Version and Release / version-bump (push) Successful in 1m49s
Version and Release / trigger-drone (push) Successful in 3s

This commit is contained in:
2025-09-19 16:39:18 +02:00
parent 2a4d38813f
commit aaaf59817b
2 changed files with 109 additions and 44 deletions
+37 -10
View File
@@ -66,15 +66,42 @@ async function processUploadedPhotos(files, eventId, uploadedBy = 'admin', categ
const relativeThumbPath = thumbnailPath; // thumbnailPath is already relative to storage root
// Add to database with uploaded_by field
const [photoId] = await trx('photos').insert({
event_id: eventId,
filename: newFilename,
path: relativePath,
thumbnail_path: relativeThumbPath,
type: photoType,
size_bytes: file.size
});
let insertResult;
const clientName = trx?.client?.config?.client;
const supportsReturning = ['pg', 'postgres', 'postgresql'].includes(clientName);
if (supportsReturning) {
insertResult = await trx('photos')
.insert({
event_id: eventId,
filename: newFilename,
path: relativePath,
thumbnail_path: relativeThumbPath,
type: photoType,
size_bytes: file.size
})
.returning('id');
} else {
insertResult = await trx('photos').insert({
event_id: eventId,
filename: newFilename,
path: relativePath,
thumbnail_path: relativeThumbPath,
type: photoType,
size_bytes: file.size
});
}
const insertedId = Array.isArray(insertResult)
? (insertResult[0]?.id ?? insertResult[0])
: insertResult;
const photoId = typeof insertedId === 'object' ? insertedId.id : insertedId;
if (photoId === undefined || photoId === null) {
throw new Error('Failed to determine inserted photo ID');
}
// Commit transaction
await trx.commit();
@@ -96,4 +123,4 @@ async function processUploadedPhotos(files, eventId, uploadedBy = 'admin', categ
module.exports = {
processUploadedPhotos
};
};