12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- <?php
- namespace App\Http\Resources;
- use Illuminate\Http\Request;
- use Illuminate\Http\Resources\Json\JsonResource;
- use App\Instance;
- use App\Services\AccountService;
- use App\Services\StatusService;
- class AdminRemoteReport extends JsonResource
- {
- /**
- * Transform the resource into an array.
- *
- * @return array<string, mixed>
- */
- public function toArray(Request $request): array
- {
- $instance = parse_url($this->uri, PHP_URL_HOST);
- $statuses = [];
- if($this->status_ids && count($this->status_ids)) {
- foreach($this->status_ids as $sid) {
- $s = StatusService::get($sid, false);
- if($s && $s['in_reply_to_id'] != null) {
- $parent = StatusService::get($s['in_reply_to_id'], false);
- if($parent) {
- $s['parent'] = $parent;
- }
- }
- if($s) {
- $statuses[] = $s;
- }
- }
- }
- $res = [
- 'id' => $this->id,
- 'instance' => $instance,
- 'reported' => AccountService::get($this->account_id, true),
- 'status_ids' => $this->status_ids,
- 'statuses' => $statuses,
- 'message' => $this->comment,
- 'report_meta' => $this->report_meta,
- 'created_at' => optional($this->created_at)->format('c'),
- 'action_taken_at' => optional($this->action_taken_at)->format('c'),
- ];
- return $res;
- }
- }
|