BannerController.php 2.04 KB
<?php

namespace App\Http\Container\AppSection\Controllers;

use App\Enums\UserScopeEnum;
use App\Helpers\JsonResource;
use App\Http\Service\UserService;
use App\Models\Banner;
use App\Models\Project;
use App\Models\UserAction;
use App\Traits\UserTrait;
use Auth;
use Illuminate\Http\JsonResponse;
use Illuminate\View\View;

class BannerController
{
    use UserTrait;

    /**
     * @return \Illuminate\Http\JsonResponse
     */
    public function index(): JsonResponse
    {
        $this->user = Auth::user();

        $role = ['public'];

        if ($this->user) {
            UserAction::query()->firstOrCreate(['event_name' => 'audited_visit', 'user_id' => $this->getUserKey()]);

            $role[] = 'visitor';

            if ($this->isScopeEquals(UserScopeEnum::SYSTEM)) {
                $role[] = 'system';
            }
            if ($this->isScopeEquals(UserScopeEnum::PROJECT)) {
                $role[] = 'project';
            }


            if (UserService::isCaptain($this->user)) {
                $role[] = 'captain';
            }

            if (in_array($this->getUserAttribute('identifier'), [2, 3], true)) {
                $role[] = 'broker';
            }
            if (Project::query()->where('master_id', $this->getUserKey())->exists()) {
                $role[] = 'manager';
            }

            $authIds = $this->user->authTags()->pluck('tag_id')->toArray();


            if (count($authIds) > 0) {
                $role[] = 'musician';

                foreach ($authIds as $authId) {
                    $role[] = 'musician_tag_' . $authId;
                }
            }
        }


        $banners = Banner::filter(['permission' => $role, 'status' => 1])
            ->latest('weight')->latest('id')->get(['id', 'name', 'type', 'cover', 'content_picture']);

        return JsonResource::success(JsonResource::SUCCESS, $banners);
    }

    /**
     * @param \App\Models\Banner $banner
     * @return \Illuminate\View\View
     */
    public function show(Banner $banner): View
    {
        return view('banner', $banner);
    }
}