BannerController.php
2.04 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
<?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);
    }
}