mirror of
https://github.com/HDInnovations/UNIT3D-Community-Edition.git
synced 2026-03-14 09:00:07 -05:00
60 lines
2.4 KiB
PHP
60 lines
2.4 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
/**
|
|
* NOTICE OF LICENSE.
|
|
*
|
|
* UNIT3D Community Edition is open-sourced software licensed under the GNU Affero General Public License v3.0
|
|
* The details is bundled with this project in the file LICENSE.txt.
|
|
*
|
|
* @project UNIT3D Community Edition
|
|
*
|
|
* @author HDVinnie <hdinnovations@protonmail.com>
|
|
* @license https://www.gnu.org/licenses/agpl-3.0.en.html/ GNU Affero General Public License v3.0
|
|
*/
|
|
|
|
namespace App\Http\Resources;
|
|
|
|
use Illuminate\Http\Resources\Json\JsonResource;
|
|
use Illuminate\Http\Request;
|
|
|
|
/**
|
|
* @mixin \App\Models\TorrentRequest
|
|
*/
|
|
class TorrentRequestResource extends JsonResource
|
|
{
|
|
/**
|
|
* Transform the resource into an array.
|
|
*
|
|
* @param Request $request
|
|
* @return array<string, mixed>
|
|
*/
|
|
public function toArray(Request $request): array
|
|
{
|
|
return [
|
|
'id' => $this->id,
|
|
'name' => $this->name,
|
|
'description' => $this->description,
|
|
'category_id' => $this->category_id,
|
|
'type_id' => $this->type_id,
|
|
'resolution_id' => $this->whenNotNull($this->resolution_id),
|
|
'user' => $this->anon ? 'anonymous' : $this->user->username,
|
|
'tmdb' => $this->tmdb_movie_id ?: $this->tmdb_tv_id,
|
|
'imdb' => $this->imdb,
|
|
'tvdb' => $this->tvdb,
|
|
'mal' => $this->mal,
|
|
'igdb' => $this->igdb,
|
|
'season_number' => $this->whenNotNull($this->season_number),
|
|
'episode_number' => $this->whenNotNull($this->episode_number),
|
|
'bounty' => $this->whenAggregated('bounties', 'seedbonus', 'sum'),
|
|
'status' => $this->filled_by !== null ? ($this->approved_by !== null ? 'filled' : 'pending') : ($this->claim ? 'claimed' : 'unfilled'),
|
|
'claimed' => $this->claim !== null,
|
|
'claimed_by' => $this->when($this->claim !== null, $this->claim?->anon ? 'anonymous' : ($this->claim?->user?->username ?? null)),
|
|
'filled_by' => $this->when($this->filled_by !== null, $this->filled_anon ? 'anonymous' : ($this->filler?->username ?? null)),
|
|
'created' => $this->created_at->toIso8601String(),
|
|
'updated_at' => $this->updated_at->toIso8601String(),
|
|
];
|
|
}
|
|
}
|