mirror of
https://github.com/Bubka/2FAuth.git
synced 2024-11-22 16:23:18 +01:00
39 lines
763 B
PHP
39 lines
763 B
PHP
<?php
|
|
|
|
namespace App\Policies;
|
|
|
|
use App\Models\User;
|
|
|
|
trait OwnershipTrait
|
|
{
|
|
/**
|
|
* Ownership of single item condition
|
|
*
|
|
* @return bool
|
|
*/
|
|
protected function isOwnerOf(User $user, mixed $item)
|
|
{
|
|
return $user->id === $item->user_id;
|
|
}
|
|
|
|
/**
|
|
* Ownership of collection condition
|
|
*
|
|
* @template TKey of array-key
|
|
* @template TValue
|
|
*
|
|
* @param \Illuminate\Contracts\Support\Arrayable<TKey, TValue>|iterable<TKey, TValue> $items
|
|
* @return bool
|
|
*/
|
|
protected function isOwnerOfEach(User $user, $items)
|
|
{
|
|
foreach ($items as $item) {
|
|
if (! $this->isOwnerOf($user, $item)) {
|
|
return false;
|
|
}
|
|
}
|
|
|
|
return true;
|
|
}
|
|
}
|