mirror of
https://github.com/lkddi/nexusphp.git
synced 2026-04-14 12:30:49 +08:00
86 lines
3.1 KiB
PHP
86 lines
3.1 KiB
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace App\Http\Resources;
|
||
|
|
|
||
|
|
use App\Models\Attachment;
|
||
|
|
use Carbon\CarbonInterface;
|
||
|
|
use Illuminate\Http\Resources\Json\JsonResource;
|
||
|
|
|
||
|
|
class TorrentResource extends JsonResource
|
||
|
|
{
|
||
|
|
protected $imageTypes = ['image', 'attachment'];
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Transform the resource into an array.
|
||
|
|
*
|
||
|
|
* @param \Illuminate\Http\Request $request
|
||
|
|
* @return array
|
||
|
|
*/
|
||
|
|
public function toArray($request)
|
||
|
|
{
|
||
|
|
$out = [
|
||
|
|
'id' => $this->id,
|
||
|
|
'name' => $this->name,
|
||
|
|
'filename' => $this->filename,
|
||
|
|
'small_descr' => $this->small_descr,
|
||
|
|
'comments' => $this->comments,
|
||
|
|
'size_human' => mksize($this->size),
|
||
|
|
'added' => $this->added->toDateTimeString(),
|
||
|
|
'added_human' => $this->added->format('Y-m-d H:i'),
|
||
|
|
'ttl' => $this->added->diffForHumans(['syntax' => CarbonInterface::DIFF_ABSOLUTE]),
|
||
|
|
'leechers' => $this->leechers,
|
||
|
|
'seeders' => $this->seeders,
|
||
|
|
'times_completed' => $this->times_completed,
|
||
|
|
'numfiles' => $this->numfiles,
|
||
|
|
'user' => new UserResource($this->whenLoaded('user')),
|
||
|
|
'basic_category' => new CategoryResource($this->whenLoaded('basic_category')),
|
||
|
|
];
|
||
|
|
|
||
|
|
if ($request->routeIs('torrents.show')) {
|
||
|
|
$baseInfo = [
|
||
|
|
['label' => '大小', 'value' => mksize($this->size)],
|
||
|
|
];
|
||
|
|
if ($info = $this->whenLoaded('basic_category')) {
|
||
|
|
$baseInfo[] = ['label' => '类型', 'value' => $info->name];
|
||
|
|
}
|
||
|
|
if ($info = $this->whenLoaded('basic_audiocodec')) {
|
||
|
|
$baseInfo[] = ['label' => '音频编码', 'value' => $info->name];
|
||
|
|
}
|
||
|
|
if ($info = $this->whenLoaded('basic_codec')) {
|
||
|
|
$baseInfo[] = ['label' => '视频编码', 'value' => $info->name];
|
||
|
|
}
|
||
|
|
if ($info = $this->whenLoaded('basic_media')) {
|
||
|
|
$baseInfo[] = ['label' => '媒介', 'value' => $info->name];
|
||
|
|
}
|
||
|
|
if ($info = $this->whenLoaded('basic_source')) {
|
||
|
|
$baseInfo[] = ['label' => '来源', 'value' => $info->name];
|
||
|
|
}
|
||
|
|
if ($info = $this->whenLoaded('basic_standard')) {
|
||
|
|
$baseInfo[] = ['label' => '分辨率', 'value' => $info->name];
|
||
|
|
}
|
||
|
|
if ($info = $this->whenLoaded('basic_team')) {
|
||
|
|
$baseInfo[] = ['label' => '制作组', 'value' => $info->name];
|
||
|
|
}
|
||
|
|
$out['base_info'] = $baseInfo;
|
||
|
|
$descriptionArr = format_description($this->descr);
|
||
|
|
$out['description'] = $descriptionArr;
|
||
|
|
|
||
|
|
$out['images'] = get_image_from_description($descriptionArr);
|
||
|
|
|
||
|
|
$out['thank_users_count'] = $this->thank_users_count;
|
||
|
|
$out['peers_count'] = $this->peers_count;
|
||
|
|
}
|
||
|
|
|
||
|
|
$out['cover'] = get_image_from_description(format_description($this->descr), true);
|
||
|
|
// $out['upload_peers_count'] = $this->upload_peers_count;
|
||
|
|
// $out['download_peers_count'] = $this->download_peers_count;
|
||
|
|
// $out['finish_peers_count'] = $this->finish_peers_count;
|
||
|
|
|
||
|
|
return $out;
|
||
|
|
|
||
|
|
}
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
}
|