Files
librenms-librenms/app/Policies/DevicePolicy.php
Jellyfrog 77c531527c Apply fixes from StyleCI (#12117)
* Apply fixes from StyleCI

* Disable style check
2020-09-21 14:54:51 +02:00

121 lines
2.7 KiB
PHP

<?php
namespace App\Policies;
use App\Facades\Permissions;
use App\Models\Device;
use App\Models\User;
use Illuminate\Auth\Access\HandlesAuthorization;
class DevicePolicy
{
use HandlesAuthorization;
/**
* Determine whether the user can view any devices.
*
* @param \App\Models\User $user
* @return mixed
*/
public function viewAny(User $user)
{
return $user->hasGlobalRead();
}
/**
* Determine whether the user can view the device.
*
* @param \App\Models\User $user
* @param \App\Models\Device $device
* @return mixed
*/
public function view(User $user, Device $device)
{
return $this->viewAny($user) || Permissions::canAccessDevice($device, $user);
}
/**
* Determine whether the user can create devices.
*
* @param \App\Models\User $user
* @return mixed
*/
public function create(User $user)
{
return $user->hasGlobalAdmin();
}
/**
* Determine whether the user can update the device.
*
* @param \App\Models\User $user
* @param \App\Models\Device $device
* @return mixed
*/
public function update(User $user, Device $device)
{
return $user->isAdmin();
}
/**
* Determine whether the user can delete the device.
*
* @param \App\Models\User $user
* @param \App\Models\Device $device
* @return mixed
*/
public function delete(User $user, Device $device)
{
return $user->isAdmin();
}
/**
* Determine whether the user can restore the device.
*
* @param \App\Models\User $user
* @param \App\Models\Device $device
* @return mixed
*/
public function restore(User $user, Device $device)
{
return $user->hasGlobalAdmin();
}
/**
* Determine whether the user can permanently delete the device.
*
* @param \App\Models\User $user
* @param \App\Models\Device $device
* @return mixed
*/
public function forceDelete(User $user, Device $device)
{
return $user->isAdmin();
}
/**
* Determine whether the user can view the stored configuration of the device
* from Oxidized or Rancid
*
* @param \App\Models\User $user
* @param \App\Models\Device $device
* @return mixed
*/
public function showConfig(User $user, Device $device)
{
return $user->isAdmin();
}
/**
* Determine whether the user can update device notes.
*
* @param \App\Models\User $user
* @param \App\Models\Device $device
* @return mixed
*/
public function updateNotes(User $user, Device $device)
{
return $user->isAdmin();
}
}