Skip to content

Instantly share code, notes, and snippets.

@patrickisgreat
Created October 24, 2016 18:27
Show Gist options
  • Save patrickisgreat/35860a77d7a4283142f5cf819b87c0fb to your computer and use it in GitHub Desktop.
Save patrickisgreat/35860a77d7a4283142f5cf819b87c0fb to your computer and use it in GitHub Desktop.
just to show modern PHP structure
<?php
namespace App\Http\Middleware;
use Closure;
use Exception;
use Illuminate\Contracts\Auth\Access\Gate;
use Illuminate\Contracts\Cache\Repository;
use Log;
use App\Contracts\Permission;
use Illuminate\Support\Facades\Auth;
use Illuminate\Contracts\Auth\Guard;
use App\User;
use Illuminate\Http\Request;
class PermissionRegistrar
{
/**
* @var Auth
*/
protected $auth;
/**
* @var Gate
*/
protected $gate;
/**
* @var Repository
*/
protected $cache;
/**
* @var string
*/
protected $cacheKey = 'vacoda.permission.cache';
/**
* @param Gate $gate
* @param Repository $cache
*/
public function __construct(Gate $gate, Repository $cache, Guard $auth)
{
$this->gate = $gate;
$this->auth = $auth;
$this->cache = $cache;
}
/**
* Register the permissions.
*
* @return bool
*/
public function registerPermissions($teamId)
{
try {
$this->getPermissions($teamId)->map(function ($permission) {
$this->gate->define($permission->name, function ($user) use ($permission) {
return $user->hasPermissionTo($permission);
});
});
return true;
} catch (Exception $e) {
Log::alert('Could not register permissions');
return false;
}
}
/**
* Forget the cached permissions.
*/
public function forgetCachedPermissions()
{
$this->cache->forget($this->cacheKey);
}
/**
* Get the current permissions.
*
* @return \Illuminate\Database\Eloquent\Collection
*/
protected function getPermissions($teamId)
{
return $this->cache->rememberForever($this->cacheKey, function () use ($teamId) {
return app(Permission::class)->where('team_id', '=', $teamId)->with(array('roles' => function($query) use($teamId) {
$query->where('team_id', '=', $teamId);
}))->get();
});
}
/**
* Handle an incoming request.
*
* @param \Illuminate\Http\Request $request
* @param \Closure $next
* @return mixed
*/
public function handle($request, Closure $next)
{
if ($request->user()) {
$teamId = $this->auth->user()->currentTeam->id;
$this->registerPermissions($teamId);
}
return $next($request);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment