⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.19
Server IP:
178.33.27.10
Server:
Linux cpanel.dev-unit.com 3.10.0-1160.108.1.el7.x86_64 #1 SMP Thu Jan 25 16:17:31 UTC 2024 x86_64
Server Software:
Apache/2.4.57 (Unix) OpenSSL/1.0.2k-fips
PHP Version:
8.2.11
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
home
/
id
/
dalily.dev-unit.com
/
app
/
Http
/
Resources
/
View File Name :
ThreadResource.php
<?php /* * LaraClassifier - Classified Ads Web Application * Copyright (c) BeDigit. All Rights Reserved * * Website: https://laraclassifier.com * Author: Mayeul Akpovi (BeDigit - https://bedigit.com) * * LICENSE * ------- * This software is provided under a license agreement and may only be used or copied * in accordance with its terms, including the inclusion of the above copyright notice. * As this software is sold exclusively on CodeCanyon, * please review the full license details here: https://codecanyon.net/licenses/standard */ namespace App\Http\Resources; use App\Models\ThreadMessage; use Illuminate\Http\Request; class ThreadResource extends BaseResource { /** * Transform the resource into an array. * * @param \Illuminate\Http\Request $request * @return array */ public function toArray(Request $request): array { if (!isset($this->id)) return []; $perPage = (int)data_get($this->params, 'perPage', 10); $entity = [ 'id' => $this->id, ]; $columns = $this->getFillable(); foreach ($columns as $column) { $entity[$column] = $this->{$column} ?? null; } $entity['updated_at'] = $this->updated_at ?? null; $entity['latest_message'] = $this->latest_message ?? null; $entity['p_is_unread'] = $this->p_is_unread ?? null; $entity['p_creator'] = $this->p_creator ?? []; $entity['p_is_important'] = $this->p_is_important ?? null; $authUser = auth(getAuthGuard())->user(); if (in_array('user', $this->embed)) { if (!empty($authUser)) { $entity['user'] = new UserResource($authUser, $this->params); } } if (in_array('post', $this->embed)) { $entity['post'] = new PostResource($this->whenLoaded('post'), $this->params); } if (in_array('messages', $this->embed)) { // Get the Thread's Messages $messages = collect(); if (!empty($authUser)) { $messages = ThreadMessage::query() ->notDeletedByUser($authUser->getAuthIdentifier()) ->where('thread_id', $this->id) ->with('user') ->orderByDesc('id'); $messages = $messages->paginate($perPage); } $messagesCollection = new EntityCollection(ThreadMessageResource::class, $messages, $this->params); $message = ($messages->count() <= 0) ? t('no_messages_found') : null; $entity['messages'] = apiResponse()->withCollection($messagesCollection, $message)->getData(true); } if (in_array('participants', $this->embed)) { $users = $this->whenLoaded('users'); $usersCollection = new EntityCollection(UserResource::class, $users, $this->params); $entity['participants'] = $usersCollection->toArray($request, true); } return $entity; } }