IP Search

This commit is contained in:
xiaomlove
2025-10-21 03:22:55 +07:00
parent 1b1a2a4969
commit ec66dca358
6 changed files with 274 additions and 0 deletions
+76
View File
@@ -0,0 +1,76 @@
<?php
namespace App\Policies;
use App\Models\IpLog;
use App\Models\User;
use Illuminate\Auth\Access\HandlesAuthorization;
use Illuminate\Auth\Access\Response;
class IpLogPolicy extends BasePolicy
{
use HandlesAuthorization;
/**
* Determine whether the user can view any models.
*/
public function viewAny(User $user): bool
{
return $this->can($user);
}
/**
* Determine whether the user can view the model.
*/
public function view(User $user, IpLog $ipLog): bool
{
return $this->can($user);
}
/**
* Determine whether the user can create models.
*/
public function create(User $user): bool
{
return false;
}
/**
* Determine whether the user can update the model.
*/
public function update(User $user, IpLog $ipLog): bool
{
return false;
}
/**
* Determine whether the user can delete the model.
*/
public function delete(User $user, IpLog $ipLog): bool
{
return $this->can($user);
}
/**
* Determine whether the user can restore the model.
*/
public function restore(User $user, IpLog $ipLog): bool
{
return false;
}
/**
* Determine whether the user can permanently delete the model.
*/
public function forceDelete(User $user, IpLog $ipLog): bool
{
return $this->can($user);
}
private function can(User $user)
{
if ($user->class >= User::CLASS_SYSOP) {
return true;
}
return false;
}
}