1
0
Fork 0
mirror of https://github.com/archtechx/tenancy.git synced 2025-12-12 21:54:03 +00:00
tenancy/src/helpers.php
2019-12-06 22:34:02 +01:00

71 lines
1.6 KiB
PHP

<?php
declare(strict_types=1);
use Stancl\Tenancy\Tenant;
use Stancl\Tenancy\TenantManager;
if (! function_exists('tenancy')) {
/** @return TenantManager|mixed */
function tenancy($key = null)
{
if ($key) {
return app(TenantManager::class)->getTenant($key) ?? null;
}
return app(TenantManager::class);
}
}
if (! function_exists('tenant')) {
/**
* Get a key from the current tenant's storage.
*
* @param string|null $key
* @return Tenant|mixed
*/
function tenant($key = null)
{
if (is_null($key)) {
return app(Tenant::class);
}
return optional(app(Tenant::class))->get($key) ?? null;
}
}
if (! function_exists('tenant_asset')) {
/** @return string */
function tenant_asset($asset)
{
return route('stancl.tenancy.asset', ['path' => $asset]);
}
}
if (! function_exists('global_asset')) {
function global_asset($asset)
{
return app('globalUrl')->asset($asset);
}
}
if (! function_exists('global_cache')) {
function global_cache()
{
return app('globalCache');
}
}
if (! function_exists('tenant_route')) {
function tenant_route($route, $parameters = [], string $domain = null)
{
$domain = $domain ?? request()->getHost();
// replace first occurance of hostname fragment with $domain
$url = route($route, $parameters);
$hostname = parse_url($url, PHP_URL_HOST);
$position = strpos($url, $hostname);
return substr_replace($url, $domain, $position, strlen($hostname));
}
}