mirror of
https://github.com/archtechx/tenancy.git
synced 2026-02-06 00:34:05 +00:00
38 lines
887 B
PHP
38 lines
887 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Stancl\Tenancy\Middleware;
|
|
|
|
use Stancl\Tenancy\Contracts\TenantCouldNotBeIdentifiedException;
|
|
use Stancl\Tenancy\Contracts\TenantResolver;
|
|
use Stancl\Tenancy\Tenancy;
|
|
|
|
abstract class IdentificationMiddleware
|
|
{
|
|
/** @var callable */
|
|
public static $onFail;
|
|
|
|
/** @var Tenancy */
|
|
protected $tenancy;
|
|
|
|
/** @var TenantResolver */
|
|
protected $resolver;
|
|
|
|
public function initializeTenancy($request, $next, ...$resolverArguments)
|
|
{
|
|
try {
|
|
$this->tenancy->initialize(
|
|
$this->resolver->resolve(...$resolverArguments)
|
|
);
|
|
} catch (TenantCouldNotBeIdentifiedException $e) {
|
|
$onFail = static::$onFail ?? function ($e) {
|
|
throw $e;
|
|
};
|
|
|
|
return $onFail($e, $request, $next);
|
|
}
|
|
|
|
return $next($request);
|
|
}
|
|
}
|