Updated packages and added better upload failure logging

To fix #2689
Updates all packages but mainly focused on aws-sdk
This commit is contained in:
Dan Brown 2021-04-19 20:16:49 +01:00
parent 0c880def5e
commit 60ffe6a993
3 changed files with 255 additions and 213 deletions

View File

@ -202,6 +202,7 @@ class AttachmentService
try {
$storage->put($attachmentPath, $attachmentData);
} catch (Exception $e) {
\Log::error('Error when attempting file upload:' . $e->getMessage());
throw new FileUploadException(trans('errors.path_not_writable', ['filePath' => $attachmentPath]));
}

View File

@ -109,6 +109,7 @@ class ImageService
$storage->put($fullPath, $imageData);
$storage->setVisibility($fullPath, 'public');
} catch (Exception $e) {
\Log::error('Error when attempting image upload:' . $e->getMessage());
throw new ImageUploadException(trans('errors.path_not_writable', ['filePath' => $fullPath]));
}

466
composer.lock generated

File diff suppressed because it is too large Load Diff