1
0
Fork 0
mirror of https://github.com/archtechx/tenancy.git synced 2025-12-13 19:04:03 +00:00

[v3] Rename tenant redirect macro (#389)

* [v3] Rename tenant redirect macro

* update tests
This commit is contained in:
Samuel Štancl 2020-05-03 17:59:59 +02:00 committed by GitHub
parent 5972364075
commit 60665517a0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 6 additions and 5 deletions

View file

@ -0,0 +1,25 @@
<?php
declare(strict_types=1);
namespace Stancl\Tenancy\Features;
use Illuminate\Http\RedirectResponse;
use Stancl\Tenancy\Contracts\Feature;
use Stancl\Tenancy\TenantManager;
class CrossDomainRedirect implements Feature
{
public function bootstrap(TenantManager $tenantManager): void
{
RedirectResponse::macro('domain', function (string $domain) {
// replace first occurance of hostname fragment with $domain
$url = $this->getTargetUrl();
$hostname = parse_url($url, PHP_URL_HOST);
$position = strpos($url, $hostname);
$this->setTargetUrl(substr_replace($url, $domain, $position, strlen($hostname)));
return $this;
});
}
}