mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/exchange-2.0.git
synced 2026-08-19 04:23:55 +00:00
61 lines
1.6 KiB
PHP
61 lines
1.6 KiB
PHP
<?php
|
|
|
|
namespace App\Classes\Modules\Notifications\ControllersLogic;
|
|
|
|
|
|
use App\Classes\General\Abstracts\AbstractControllerLogic;
|
|
use App\Classes\Modules\Notifications\Services\ListsNotification;
|
|
use App\Http\Resources\NotificationResource;
|
|
use Illuminate\Http\JsonResponse;
|
|
use Illuminate\Http\Request;
|
|
|
|
class ListNotificationsLogic extends AbstractControllerLogic
|
|
{
|
|
|
|
/**
|
|
* @return array
|
|
*/
|
|
protected function notification():array {
|
|
return [
|
|
'title' => 'Retrieve Notifications',
|
|
'message' => 'You have successfully retrieved a list of Notifications'
|
|
];
|
|
}
|
|
|
|
/** @var ListsNotification */
|
|
private $listsNotification;
|
|
|
|
/**
|
|
* ListNotificationsLogic constructor.
|
|
* @param ListsNotification $listsNotification
|
|
*/
|
|
public function __construct(
|
|
ListsNotification $listsNotification
|
|
)
|
|
{
|
|
$this->listsNotification = $listsNotification;
|
|
}
|
|
|
|
|
|
/**
|
|
* @param Request $request
|
|
* @return JsonResponse
|
|
* @throws \App\Classes\Exceptions\AccessForbiddenException
|
|
* @throws \App\Classes\Exceptions\MalformedRequestException
|
|
* @throws \App\Classes\Exceptions\RequestValidationException
|
|
*/
|
|
public function logic(Request $request) : JsonResponse
|
|
{
|
|
|
|
$filters = [
|
|
// 'target_id'=>auth()->user()->id,
|
|
// 'per_page'=>$request->route('per_page')
|
|
];
|
|
|
|
$notifications = $this->listsNotification->execute($filters);
|
|
|
|
return $this->collectionResponse(NotificationResource::collection($notifications));
|
|
|
|
}
|
|
|
|
} |