File "NotificationController.php"

Full Path: /var/www/drive/foundation/src/Notifications/NotificationController.php
File size: 1.46 KB
MIME-type: text/x-php
Charset: utf-8

<?php

namespace Common\Notifications;

use Auth;
use Common\Core\BaseController;
use Illuminate\Http\JsonResponse;
use Illuminate\Http\Request;
use Illuminate\Notifications\DatabaseNotification;

class NotificationController extends BaseController
{
    public function __construct(
        protected DatabaseNotification $notification,
        protected Request $request,
    ) {
        $this->middleware('auth');
    }

    public function index(): JsonResponse
    {
        $pagination = Auth::user()
            ->notifications()
            ->simplePaginate(request('perPage', 10));

        return $this->success(['pagination' => $pagination]);
    }

    public function markAsRead()
    {
        $data = $this->validate($this->request, [
            'ids' => 'array|required_without:markAllAsUnread',
            'markAllAsUnread' => 'boolean|required_without:ids',
        ]);

        Auth::user()
            ->unreadNotifications()
            ->when(
                isset($data['ids']),
                fn($q) => $q->whereIn('id', $data['ids']),
            )
            ->update(['read_at' => now()]);

        $unreadCount = Auth::user()
            ->unreadNotifications()
            ->count();

        return $this->success(['unreadCount' => $unreadCount, 'date' => now()]);
    }

    public function destroy($ids)
    {
        $ids = explode(',', $ids);
        Auth::user()
            ->notifications()
            ->whereIn('id', $ids)
            ->delete();
    }
}