mirror of
https://github.com/snipe/snipe-it.git
synced 2025-01-12 06:17:28 -08:00
Merge pull request #14827 from fe80/fix/controller-signature-s3
fix(ActionlogController): correct signature image for s3 bucket
This commit is contained in:
commit
a742105c21
|
@ -14,6 +14,12 @@ class ActionlogController extends Controller
|
||||||
// file_get_contents, so we set the error reporting for just this class
|
// file_get_contents, so we set the error reporting for just this class
|
||||||
error_reporting(0);
|
error_reporting(0);
|
||||||
|
|
||||||
|
$disk = config('filesystems.default');
|
||||||
|
switch (config("filesystems.disks.$disk.driver")) {
|
||||||
|
case 's3':
|
||||||
|
$file = 'private_uploads/signatures/'.$filename;
|
||||||
|
return redirect()->away(Storage::disk($disk)->temporaryUrl($file, now()->addMinutes(5)));
|
||||||
|
default:
|
||||||
$this->authorize('view', \App\Models\Asset::class);
|
$this->authorize('view', \App\Models\Asset::class);
|
||||||
$file = config('app.private_uploads').'/signatures/'.$filename;
|
$file = config('app.private_uploads').'/signatures/'.$filename;
|
||||||
$filetype = Helper::checkUploadIsImage($file);
|
$filetype = Helper::checkUploadIsImage($file);
|
||||||
|
@ -25,7 +31,6 @@ class ActionlogController extends Controller
|
||||||
} else {
|
} else {
|
||||||
return Response::make($contents)->header('Content-Type', $filetype);
|
return Response::make($contents)->header('Content-Type', $filetype);
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
public function getStoredEula($filename){
|
public function getStoredEula($filename){
|
||||||
$this->authorize('view', \App\Models\Asset::class);
|
$this->authorize('view', \App\Models\Asset::class);
|
||||||
|
|
Loading…
Reference in a new issue