47 lines
1.3 KiB
PHP
47 lines
1.3 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Http\Controllers;
|
|
|
|
use App\Helpers\ResponseJsonMessage;
|
|
use App\Http\Requests\UploadInfoSectorialRequest;
|
|
use App\Models\InfoSectorial;
|
|
|
|
use Illuminate\Support\Facades\Storage;
|
|
use Illuminate\Support\Str;
|
|
|
|
class InfoSectorialController extends Controller
|
|
{
|
|
|
|
|
|
public function updateFile(UploadInfoSectorialRequest $uploadInfoSectorialRequest)
|
|
{
|
|
$data = $uploadInfoSectorialRequest->all();
|
|
|
|
if (!$uploadInfoSectorialRequest->hasFile('file')) {
|
|
return $this->errorResponse(false, '', 500);
|
|
}
|
|
|
|
$file = $uploadInfoSectorialRequest->file('file');
|
|
|
|
$data['name'] = Str::of($file->getClientOriginalName())->explode('.')->offsetGet(0);
|
|
$data['uid'] = Str::of($file->hashName())->explode('.')->offsetGet(0);
|
|
$extension = $file->getClientOriginalExtension();
|
|
$data['path'] = $file->storeAs('pdf', $data['uid'] . ".{$extension}", 's3');
|
|
|
|
return InfoSectorial::query()->create($data);
|
|
}
|
|
|
|
public function download()
|
|
{
|
|
$created_at = InfoSectorial::max('created_at');
|
|
|
|
$data = InfoSectorial::where('created_at', '=', $created_at)->first();
|
|
|
|
return ResponseJsonMessage::withData(
|
|
!empty($data) ? Storage::disk('s3')->url($data->path) : ''
|
|
);
|
|
}
|
|
}
|