<?php namespace Bixo\Asset\Policies; use Illuminate\Foundation\Auth\User as Authenticatable; use Bixo\Asset\Models\Asset; class AssetPolicy { use AssetAction; use AssetReport; use AssetWorkflow; /** * Determine if the given user can view the asset. * * @param Authenticatable $user * @param Asset $asset * * @return bool */ public function view(Authenticatable $user, Asset $asset) { if ($authUser->canDo('asset.asset.view') && $authUser->isAdmin() || $user->isClient()) { return true; } return $asset->is_owner; } /** * Determine if the given user can create a asset. * * @param Authenticatable $user * * @return bool */ public function create(Authenticatable $user) { return $authUser->canDo('asset.asset.create'); } /** * Determine if the given user can update the given asset. * * @param Authenticatable $user * @param Asset $asset * * @return bool */ public function update(Authenticatable $user, Asset $asset) { if ($user->canDo('asset.asset.edit') && $user->isAdmin()) { return true; } return $asset->is_owner; } /** * Determine if the given user can delete the given asset. * * @param Authenticatable $user * * @return bool */ public function destroy(Authenticatable $user, Asset $asset) { return $asset->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; } } }