feat: infrastructure assets management with warranty tracking and EAN lookup integration
This commit is contained in:
53
app/Policies/AssetPolicy.php
Normal file
53
app/Policies/AssetPolicy.php
Normal file
@@ -0,0 +1,53 @@
|
||||
<?php
|
||||
|
||||
namespace App\Policies;
|
||||
|
||||
use App\Models\Asset;
|
||||
use App\Models\User;
|
||||
use Illuminate\Auth\Access\Response;
|
||||
|
||||
class AssetPolicy
|
||||
{
|
||||
/**
|
||||
* Determine whether the user can view any models.
|
||||
*/
|
||||
public function viewAny(User $user): bool
|
||||
{
|
||||
return true;
|
||||
}
|
||||
|
||||
/**
|
||||
* Determine whether the user can view the model.
|
||||
*/
|
||||
public function view(User $user, Asset $asset): bool
|
||||
{
|
||||
if ($user->hasRole('admin')) return true;
|
||||
return $user->commune_id === $asset->commune_id;
|
||||
}
|
||||
|
||||
/**
|
||||
* Determine whether the user can create models.
|
||||
*/
|
||||
public function create(User $user): bool
|
||||
{
|
||||
return true;
|
||||
}
|
||||
|
||||
/**
|
||||
* Determine whether the user can update the model.
|
||||
*/
|
||||
public function update(User $user, Asset $asset): bool
|
||||
{
|
||||
if ($user->hasRole('admin')) return true;
|
||||
return $user->commune_id === $asset->commune_id;
|
||||
}
|
||||
|
||||
/**
|
||||
* Determine whether the user can delete the model.
|
||||
*/
|
||||
public function delete(User $user, Asset $asset): bool
|
||||
{
|
||||
if ($user->hasRole('admin')) return true;
|
||||
return $user->commune_id === $asset->commune_id;
|
||||
}
|
||||
}
|
||||
53
app/Policies/LicencePolicy.php
Normal file
53
app/Policies/LicencePolicy.php
Normal file
@@ -0,0 +1,53 @@
|
||||
<?php
|
||||
|
||||
namespace App\Policies;
|
||||
|
||||
use App\Models\Licence;
|
||||
use App\Models\User;
|
||||
use Illuminate\Auth\Access\Response;
|
||||
|
||||
class LicencePolicy
|
||||
{
|
||||
/**
|
||||
* Determine whether the user can view any models.
|
||||
*/
|
||||
public function viewAny(User $user): bool
|
||||
{
|
||||
return true; // Everyone can see the list (filtered in controller)
|
||||
}
|
||||
|
||||
/**
|
||||
* Determine whether the user can view the model.
|
||||
*/
|
||||
public function view(User $user, Licence $licence): bool
|
||||
{
|
||||
if ($user->hasRole('admin')) return true;
|
||||
return $user->commune_id === $licence->commune_id;
|
||||
}
|
||||
|
||||
/**
|
||||
* Determine whether the user can create models.
|
||||
*/
|
||||
public function create(User $user): bool
|
||||
{
|
||||
return true; // Simple users can create
|
||||
}
|
||||
|
||||
/**
|
||||
* Determine whether the user can update the model.
|
||||
*/
|
||||
public function update(User $user, Licence $licence): bool
|
||||
{
|
||||
if ($user->hasRole('admin')) return true;
|
||||
return $user->commune_id === $licence->commune_id;
|
||||
}
|
||||
|
||||
/**
|
||||
* Determine whether the user can delete the model.
|
||||
*/
|
||||
public function delete(User $user, Licence $licence): bool
|
||||
{
|
||||
if ($user->hasRole('admin')) return true;
|
||||
return $user->commune_id === $licence->commune_id;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user