pixelfed/pixelfed

View on GitHub
app/Http/Resources/AdminSpamReport.php

Summary

Maintainability
A
0 mins
Test Coverage
<?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;
    }
}