2016-10-31 21:00:30 -07:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Http\Controllers;
|
|
|
|
|
|
|
|
use App\Helpers\Helper;
|
2022-03-16 09:54:10 -07:00
|
|
|
use App\Models\Actionlog;
|
2024-05-29 04:38:15 -07:00
|
|
|
use Illuminate\Support\Facades\Response;
|
|
|
|
use Illuminate\Support\Facades\Log;
|
2024-06-05 01:55:27 -07:00
|
|
|
use Illuminate\Support\Facades\Storage;
|
2016-10-31 21:00:30 -07:00
|
|
|
class ActionlogController extends Controller
|
|
|
|
{
|
|
|
|
public function displaySig($filename)
|
|
|
|
{
|
2022-03-04 02:54:37 -08:00
|
|
|
// PHP doesn't let you handle file not found errors well with
|
|
|
|
// file_get_contents, so we set the error reporting for just this class
|
|
|
|
error_reporting(0);
|
|
|
|
|
2024-06-05 01:08:15 -07:00
|
|
|
$disk = config('filesystems.default');
|
|
|
|
switch (config("filesystems.disks.$disk.driver")) {
|
2024-06-17 14:40:06 -07:00
|
|
|
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);
|
|
|
|
$file = config('app.private_uploads').'/signatures/'.$filename;
|
|
|
|
$filetype = Helper::checkUploadIsImage($file);
|
2021-06-10 13:15:52 -07:00
|
|
|
|
2024-06-17 14:40:06 -07:00
|
|
|
$contents = file_get_contents($file, false, stream_context_create(['http' => ['ignore_errors' => true]]));
|
|
|
|
if ($contents === false) {
|
|
|
|
Log::warning('File '.$file.' not found');
|
|
|
|
return false;
|
|
|
|
} else {
|
|
|
|
return Response::make($contents)->header('Content-Type', $filetype);
|
|
|
|
}
|
|
|
|
}
|
2016-10-31 21:00:30 -07:00
|
|
|
}
|
2024-06-17 14:40:06 -07:00
|
|
|
|
2022-03-16 11:51:40 -07:00
|
|
|
public function getStoredEula($filename){
|
|
|
|
$this->authorize('view', \App\Models\Asset::class);
|
|
|
|
$file = config('app.private_uploads').'/eula-pdfs/'.$filename;
|
|
|
|
|
|
|
|
return Response::download($file);
|
|
|
|
}
|
2016-10-31 21:00:30 -07:00
|
|
|
}
|