mirror of
https://github.com/archtechx/tenancy.git
synced 2026-02-06 00:54:03 +00:00
31 lines
857 B
PHP
31 lines
857 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Stancl\Tenancy\Middleware;
|
|
|
|
use Closure;
|
|
use Illuminate\Http\Request;
|
|
use Stancl\Tenancy\Exceptions\TenancyNotInitializedException;
|
|
|
|
class ScopeSessions
|
|
{
|
|
public static $tenantIdKey = '_tenant_id';
|
|
|
|
public function handle(Request $request, Closure $next)
|
|
{
|
|
if (! tenancy()->initialized) {
|
|
throw new TenancyNotInitializedException('Tenancy needs to be initialized before the session scoping middleware is executed');
|
|
}
|
|
|
|
if (! $request->session()->has(static::$tenantIdKey)) {
|
|
$request->session()->put(static::$tenantIdKey, tenant()->getTenantKey());
|
|
} else {
|
|
if ($request->session()->get(static::$tenantIdKey) !== tenant()->getTenantKey()) {
|
|
abort(403);
|
|
}
|
|
}
|
|
|
|
return $next($request);
|
|
}
|
|
}
|