fedi-feed-router/app/Http/Resources/ArticleResource.php

36 lines
1.3 KiB
PHP
Raw Normal View History

2025-08-02 15:20:09 +02:00
<?php
namespace App\Http\Resources;
use Illuminate\Http\Request;
use Illuminate\Http\Resources\Json\JsonResource;
2025-08-12 01:31:37 +02:00
/**
* @property int $id
*/
2025-08-02 15:20:09 +02:00
class ArticleResource extends JsonResource
{
public function toArray(Request $request): array
{
return [
'id' => $this->id,
'feed_id' => $this->feed_id,
'url' => $this->url,
'title' => $this->title,
'description' => $this->description,
'is_valid' => $this->is_valid,
'is_duplicate' => $this->is_duplicate,
'approval_status' => $this->approval_status,
'approved_at' => $this->approved_at?->toISOString(),
'approved_by' => $this->approved_by,
'fetched_at' => $this->fetched_at?->toISOString(),
'validated_at' => $this->validated_at?->toISOString(),
2025-08-12 01:31:37 +02:00
'is_published' => $this->relationLoaded('articlePublication') && $this->articlePublication !== null,
2025-08-02 15:20:09 +02:00
'created_at' => $this->created_at->toISOString(),
'updated_at' => $this->updated_at->toISOString(),
'feed' => new FeedResource($this->whenLoaded('feed')),
'article_publication' => new ArticlePublicationResource($this->whenLoaded('articlePublication')),
];
}
2025-08-12 01:31:37 +02:00
}