forked from mirror/pixelfed
34 lines
673 B
PHP
34 lines
673 B
PHP
<?php
|
|
|
|
namespace App\Http\Resources;
|
|
|
|
use Illuminate\Http\Request;
|
|
use Illuminate\Http\Resources\Json\JsonResource;
|
|
use App\Services\AccountService;
|
|
use App\Services\StatusService;
|
|
|
|
class AdminSpamReport extends JsonResource
|
|
{
|
|
/**
|
|
* Transform the resource into an array.
|
|
*
|
|
* @return array<string, mixed>
|
|
*/
|
|
public function toArray(Request $request): array
|
|
{
|
|
$res = [
|
|
'id' => $this->id,
|
|
'type' => $this->type,
|
|
'status' => null,
|
|
'read_at' => $this->read_at,
|
|
'created_at' => $this->created_at,
|
|
];
|
|
|
|
if($this->item_id && $this->item_type === 'App\Status') {
|
|
$res['status'] = StatusService::get($this->item_id, false);
|
|
}
|
|
|
|
return $res;
|
|
}
|
|
}
|