mirror of
https://github.com/VueFileManager/vuefilemanager.git
synced 2026-05-13 08:45:01 +00:00
98 lines
4.8 KiB
PHP
98 lines
4.8 KiB
PHP
<?php
|
|
namespace Domain\Files\Resources;
|
|
|
|
use ByteUnits\Metric;
|
|
use Domain\Sharing\Resources\ShareResource;
|
|
use Illuminate\Http\Resources\Json\JsonResource;
|
|
|
|
class FileResource extends JsonResource
|
|
{
|
|
/**
|
|
* Transform the resource into an array.
|
|
*
|
|
* @param \Illuminate\Http\Request $request
|
|
* @return array
|
|
*/
|
|
public function toArray($request)
|
|
{
|
|
$fileSize = Metric::bytes($this->filesize)->format();
|
|
|
|
return [
|
|
'data' => [
|
|
'id' => $this->id,
|
|
'type' => $this->type,
|
|
'attributes' => [
|
|
'filesize' => $fileSize,
|
|
'name' => $this->name,
|
|
'basename' => $this->basename,
|
|
'mimetype' => $this->mimetype,
|
|
'file_url' => $this->file_url,
|
|
'thumbnail' => $this->thumbnail,
|
|
'parent_id' => $this->parent_id,
|
|
'created_at' => set_time_by_user_timezone($this->owner, $this->created_at),
|
|
'updated_at' => set_time_by_user_timezone($this->owner, $this->updated_at),
|
|
'deleted_at' => $this->deleted_at
|
|
? set_time_by_user_timezone($this->owner, $this->deleted_at)
|
|
: null,
|
|
],
|
|
'relationships' => [
|
|
$this->mergeWhen($this->shared, fn () => [
|
|
'shared' => new ShareResource($this->shared),
|
|
]),
|
|
$this->mergeWhen($this->parent, fn () => [
|
|
'parent' => [
|
|
'data' => [
|
|
'type' => 'folder',
|
|
'id' => $this->parent->id,
|
|
'attributes' => [
|
|
'name' => $this->parent->name,
|
|
],
|
|
],
|
|
],
|
|
]),
|
|
$this->mergeWhen($this->owner, fn () => [
|
|
'owner' => [
|
|
'data' => [
|
|
'type' => 'owner',
|
|
'id' => $this->user_id,
|
|
'attributes' => [
|
|
'name' => $this->owner->settings->name,
|
|
'avatar' => $this->owner->settings->avatar,
|
|
'color' => $this->owner->settings->color,
|
|
],
|
|
],
|
|
],
|
|
]),
|
|
$this->mergeWhen($this->exif, fn() => [
|
|
'exif' => [
|
|
'data' => [
|
|
'type' => 'exif',
|
|
'id' => $this->exif->id,
|
|
'attributes' => [
|
|
'date_time_original' => format_date($this->exif->date_time_original),
|
|
'artist' => $this->exif->artist,
|
|
'height' => $this->exif->height,
|
|
'width' => $this->exif->width,
|
|
'x_resolution' => substr($this->exif->x_resolution, 0, strrpos($this->exif->x_resolution, '/')),
|
|
'y_resolution' => substr($this->exif->y_resolution, 0, strrpos($this->exif->y_resolution, '/')),
|
|
'color_space' => $this->exif->color_space,
|
|
'camera' => $this->exif->camera,
|
|
'model' => $this->exif->model,
|
|
'aperture_value' => intval($this->exif->aperture_value) / 100,
|
|
'exposure_time' => $this->exif->exposure_time,
|
|
'focal_length' => $this->exif->focal_length,
|
|
'iso' => $this->exif->iso,
|
|
'aperture_f_number' => $this->exif->aperture_f_number,
|
|
'ccd_width' => $this->exif->ccd_width,
|
|
'longitude' => formatGPSCoordinates($this->exif->longitude, $this->exif->longitude_ref),
|
|
'latitude' => formatGPSCoordinates($this->exif->latitude, $this->exif->latitude_ref),
|
|
],
|
|
],
|
|
]
|
|
])
|
|
],
|
|
],
|
|
];
|
|
}
|
|
}
|