updated role middleware
This commit is contained in:
@@ -5,6 +5,7 @@ namespace App\Http\Middleware;
|
|||||||
use Closure;
|
use Closure;
|
||||||
|
|
||||||
use App\Models\User\UserRole;
|
use App\Models\User\UserRole;
|
||||||
|
use App\Models\User\AvailableUserRole;
|
||||||
|
|
||||||
class RequireRole
|
class RequireRole
|
||||||
{
|
{
|
||||||
@@ -17,8 +18,26 @@ class RequireRole
|
|||||||
*/
|
*/
|
||||||
public function handle($request, Closure $next, $role)
|
public function handle($request, Closure $next, $role)
|
||||||
{
|
{
|
||||||
$confirmed = false;
|
$ranking = array();
|
||||||
|
$roles = AvailableUserRole::all();
|
||||||
|
|
||||||
|
foreach($roles as $r) {
|
||||||
|
$temp[$r->role] = $r->rank;
|
||||||
|
|
||||||
|
array_push($temp, $ranking);
|
||||||
|
}
|
||||||
|
|
||||||
|
$check = UserRole::where('character_id', auth()->user()->character_id)->get(['role']);
|
||||||
|
|
||||||
|
if(!isset($check[0]->role)) {
|
||||||
|
abort(403, "You don't have any roles. You don't belong here.");
|
||||||
|
}
|
||||||
|
|
||||||
|
if($ranking[$check[0]->role] > $ranking[$role]) {
|
||||||
|
abort(403, "You don't have the correct role to be in this area.");
|
||||||
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
$ranking = [
|
$ranking = [
|
||||||
'None' => 0,
|
'None' => 0,
|
||||||
'Guest' => 1,
|
'Guest' => 1,
|
||||||
@@ -31,12 +50,13 @@ class RequireRole
|
|||||||
$check = UserRole::where('character_id', auth()->user()->character_id)->get(['role']);
|
$check = UserRole::where('character_id', auth()->user()->character_id)->get(['role']);
|
||||||
|
|
||||||
if(!isset($check[0]->role)) {
|
if(!isset($check[0]->role)) {
|
||||||
abort(403, "You don't any roles. You don't belong here.");
|
abort(403, "You don't have any roles. You don't belong here.");
|
||||||
}
|
}
|
||||||
|
|
||||||
if($ranking[$check[0]->role] < $ranking[$role]) {
|
if($ranking[$check[0]->role] < $ranking[$role]) {
|
||||||
abort(403, "You don't have the correct role to be in this area.");
|
abort(403, "You don't have the correct role to be in this area.");
|
||||||
}
|
}
|
||||||
|
*/
|
||||||
|
|
||||||
return $next($request);
|
return $next($request);
|
||||||
}
|
}
|
||||||
|
|||||||
23
app/Models/User/AvailableUserRole.php
Normal file
23
app/Models/User/AvailableUserRole.php
Normal file
@@ -0,0 +1,23 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
namespace App\Models\User;
|
||||||
|
|
||||||
|
use Illuminate\Database\Eloquent\Model;
|
||||||
|
|
||||||
|
class AvailableUserRole extends Model
|
||||||
|
{
|
||||||
|
//Table Name
|
||||||
|
protected $table = 'available_user_roles';
|
||||||
|
|
||||||
|
//Timestamps
|
||||||
|
public $timestamps = false;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The attribute that are mass assignable
|
||||||
|
*/
|
||||||
|
protected $fillable = [
|
||||||
|
'role',
|
||||||
|
'rank',
|
||||||
|
'description',
|
||||||
|
];
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user