59 lines
1.6 KiB
PHP
59 lines
1.6 KiB
PHP
<?php
|
|
|
|
namespace App\Http\Resources;
|
|
|
|
use Illuminate\Http\Resources\Json\JsonResource;
|
|
|
|
class FormSubmissionResource extends JsonResource
|
|
{
|
|
|
|
/**
|
|
* Transform the resource into an array.
|
|
*
|
|
* @param \Illuminate\Http\Request $request
|
|
* @return array|\Illuminate\Contracts\Support\Arrayable|\JsonSerializable
|
|
*/
|
|
public function toArray($request)
|
|
{
|
|
$this->generateFileLinks();
|
|
$this->addTimestamp();
|
|
|
|
return [
|
|
'data' => $this->data,
|
|
'form_id' => $this->form_id,
|
|
'id' => $this->id,
|
|
];
|
|
}
|
|
|
|
private function addTimestamp()
|
|
{
|
|
$this->data = array_merge($this->data, [
|
|
"created_at" => $this->created_at->toDateTimeString()
|
|
]);
|
|
}
|
|
|
|
/**
|
|
* Link to the file (generating signed s3 URL)
|
|
* @return void
|
|
*/
|
|
private function generateFileLinks()
|
|
{
|
|
$data = $this->data;
|
|
$formFields = collect($this->form->properties)->concat(collect($this->form->removed_properties));
|
|
$fileFields = $formFields->filter(function ($field) {
|
|
return in_array($field['type'], ['files', 'signature']);
|
|
});
|
|
foreach ($fileFields as $field) {
|
|
if (isset($data[$field['id']]) && !empty($data[$field['id']])) {
|
|
$data[$field['id']] = collect($data[$field['id']])->map(function ($file) {
|
|
return [
|
|
'file_url' => route('open.forms.submissions.file', [$this->form_id, $file]),
|
|
'file_name' => $file,
|
|
];
|
|
});
|
|
}
|
|
}
|
|
$this->data = $data;
|
|
}
|
|
}
|