12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 |
- <?php
- namespace App\Http\Resources;
- use Illuminate\Http\Resources\Json\JsonResource;
- use Cache;
- use App\Services\AccountService;
- use App\Services\HashidService;
- use App\Services\LikeService;
- use App\Services\MediaService;
- use App\Services\MediaTagService;
- use App\Services\StatusHashtagService;
- use App\Services\StatusLabelService;
- use App\Services\StatusMentionService;
- use App\Services\PollService;
- use App\Models\CustomEmoji;
- class StatusStateless extends JsonResource
- {
- /**
- * Transform the resource into an array.
- *
- * @param \Illuminate\Http\Request $request
- * @return array|\Illuminate\Contracts\Support\Arrayable|\JsonSerializable
- */
- public function toArray($request)
- {
- $status = $this;
- $taggedPeople = MediaTagService::get($status->id);
- $poll = $status->type === 'poll' ? PollService::get($status->id) : null;
- return [
- '_v' => 1,
- 'id' => (string) $status->id,
- //'gid' => $status->group_id ? (string) $status->group_id : null,
- 'shortcode' => HashidService::encode($status->id),
- 'uri' => $status->url(),
- 'url' => $status->url(),
- 'in_reply_to_id' => $status->in_reply_to_id ? (string) $status->in_reply_to_id : null,
- 'in_reply_to_account_id' => $status->in_reply_to_profile_id ? (string) $status->in_reply_to_profile_id : null,
- 'reblog' => null,
- 'content' => $status->rendered ?? $status->caption,
- 'content_text' => $status->caption,
- 'created_at' => str_replace('+00:00', 'Z', $status->created_at->format(DATE_RFC3339_EXTENDED)),
- 'emojis' => CustomEmoji::scan($status->caption),
- 'reblogs_count' => $status->reblogs_count ?? 0,
- 'favourites_count' => $status->likes_count ?? 0,
- 'reblogged' => null,
- 'favourited' => null,
- 'muted' => null,
- 'sensitive' => (bool) $status->is_nsfw,
- 'spoiler_text' => $status->cw_summary ?? '',
- 'visibility' => $status->scope ?? $status->visibility,
- 'application' => [
- 'name' => 'web',
- 'website' => null
- ],
- 'language' => null,
- 'mentions' => StatusMentionService::get($status->id),
- 'pf_type' => $status->type ?? $status->setType(),
- 'reply_count' => (int) $status->reply_count,
- 'comments_disabled' => (bool) $status->comments_disabled,
- 'thread' => false,
- 'replies' => [],
- 'parent' => [],
- 'place' => $status->place,
- 'local' => (bool) $status->local,
- 'taggedPeople' => $taggedPeople,
- 'liked_by' => LikeService::likedBy($status),
- 'media_attachments' => MediaService::get($status->id),
- 'account' => AccountService::get($status->profile_id, true),
- 'tags' => StatusHashtagService::statusTags($status->id),
- 'poll' => $poll
- ];
- }
- }
|