KGRKJGETMRETU895U-589TY5MIGM5JGB5SDFESFREWTGR54TY
Server : Apache/2.4.41 (Ubuntu)
System : Linux vmi1525618.contaboserver.net 5.4.0-105-generic #119-Ubuntu SMP Mon Mar 7 18:49:24 UTC 2022 x86_64
User : www-data ( 33)
PHP Version : 8.2.12
Disable Function : NONE
Directory :  /var/www/lecturebazaar.com/app/Policies/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : //var/www/lecturebazaar.com/app/Policies/WebinarPolicy.php
<?php

namespace App\Policies;

use App\Models\Webinar;
use App\User;
use Illuminate\Auth\Access\HandlesAuthorization;

class WebinarPolicy
{
    use HandlesAuthorization;

    /**
     * Determine whether the user can view any models.
     *
     * @param \App\User $user
     * @return mixed
     */
    public function viewAny(User $user)
    {
        //
    }

    /**
     * Determine whether the user can view the model.
     *
     * @param \App\User $user
     * @param \App\Models\Api\Webinar $webinar
     * @return mixed
     */
    public function view(User $user, Webinar $webinar)
    {
        $access = false;
        if ($webinar->checkUserHasBought($user)) {
            $isPrivate = $webinar->private;
            if (!empty($user) and ($user->id == $webinar->creator_id or $user->organ_id == $webinar->creator_id or $user->isAdmin())) {
                $isPrivate = false;
            }
            $access = true;
            if ($isPrivate) {
                $access = false;
            }
        }
        return $access;
    }

    /**
     * Determine whether the user can create models.
     *
     * @param \App\User $user
     * @return mixed
     */
    public function create(User $user)
    {
        //
    }

    /**
     * Determine whether the user can update the model.
     *
     * @param \App\User $user
     * @param \App\Models\Api\Webinar $webinar
     * @return mixed
     */
    public function update(User $user, Webinar $webinar)
    {
        //
    }

    /**
     * Determine whether the user can delete the model.
     *
     * @param \App\User $user
     * @param \App\Models\Api\Webinar $webinar
     * @return mixed
     */
    public function delete(User $user, Webinar $webinar)
    {
        //
    }

    /**
     * Determine whether the user can restore the model.
     *
     * @param \App\User $user
     * @param \App\Models\Api\Webinar $webinar
     * @return mixed
     */
    public function restore(User $user, Webinar $webinar)
    {
        //
    }

    /**
     * Determine whether the user can permanently delete the model.
     *
     * @param \App\User $user
     * @param \App\Models\Api\Webinar $webinar
     * @return mixed
     */
    public function forceDelete(User $user, Webinar $webinar)
    {
        //
    }
}

Anon7 - 2021