<?php

namespace Litepie\Location\Policies;

use Illuminate\Foundation\Auth\User as Authenticatable;
use Litepie\Location\Models\Location;

class LocationPolicy
{

    use LocationAction;
    use LocationExim;

    /**
     * Determine if the given user can view the location.
     *
     * @param Authenticatable $user
     * @param Location $location
     *
     * @return bool
     */
    public function view(Authenticatable $user, Location $location)
    {
        if ($authUser->canDo('location.location.view') && $authUser->isAdmin() || $user->isClient()) {
            return true;
        }

        return $location->is_owner;
    }

    /**
     * Determine if the given user can create a location.
     *
     * @param Authenticatable $user
     *
     * @return bool
     */
    public function create(Authenticatable $user)
    {
        return  $authUser->canDo('location.location.create');
    }

    /**
     * Determine if the given user can update the given location.
     *
     * @param Authenticatable $user
     * @param Location $location
     *
     * @return bool
     */
    public function update(Authenticatable $user, Location $location)
    {
        if ($user->canDo('location.location.edit') && $user->isAdmin()) {
            return true;
        }

        return $location->is_owner;
    }

    /**
     * Determine if the given user can delete the given location.
     *
     * @param Authenticatable $user
     *
     * @return bool
     */
    public function destroy(Authenticatable $user, Location $location)
    {
        return $location->is_owner;
    }

    /**
     * Determine if the user can perform a given action ve.
     *
     * @param [type] $user    [description]
     * @param [type] $ability [description]
     *
     * @return [type] [description]
     */
    public function before($user, $ability)
    {
        if ($user->isSuperuser()) {
            return true;
        }
    }
}