2021-06-26 11:23:15 -04:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace BookStack\Http;
|
2019-08-04 09:26:39 -04:00
|
|
|
|
|
|
|
use Illuminate\Http\Request as LaravelRequest;
|
|
|
|
|
|
|
|
class Request extends LaravelRequest
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Override the default request methods to get the scheme and host
|
2022-04-02 12:14:37 -04:00
|
|
|
* to directly use the custom APP_URL, if set.
|
2021-06-26 11:23:15 -04:00
|
|
|
*
|
2022-04-02 12:14:37 -04:00
|
|
|
* @return string
|
2019-08-04 09:26:39 -04:00
|
|
|
*/
|
|
|
|
public function getSchemeAndHttpHost()
|
|
|
|
{
|
2022-04-02 12:14:37 -04:00
|
|
|
$appUrl = config('app.url', null);
|
2019-08-04 09:26:39 -04:00
|
|
|
|
2022-04-02 12:14:37 -04:00
|
|
|
if ($appUrl) {
|
|
|
|
return implode('/', array_slice(explode('/', $appUrl), 0, 3));
|
2019-08-04 09:26:39 -04:00
|
|
|
}
|
|
|
|
|
2022-04-02 12:14:37 -04:00
|
|
|
return parent::getSchemeAndHttpHost();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Override the default request methods to get the base URL
|
|
|
|
* to directly use the custom APP_URL, if set.
|
2022-04-13 07:46:19 -04:00
|
|
|
* The base URL never ends with a / but should start with one if not empty.
|
2022-04-02 12:14:37 -04:00
|
|
|
*
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function getBaseUrl()
|
|
|
|
{
|
|
|
|
$appUrl = config('app.url', null);
|
|
|
|
|
|
|
|
if ($appUrl) {
|
2022-05-04 15:08:22 -04:00
|
|
|
$parsedBaseUrl = rtrim(implode('/', array_slice(explode('/', $appUrl), 3)), '/');
|
2022-05-04 16:19:46 -04:00
|
|
|
|
2022-05-04 15:08:22 -04:00
|
|
|
return empty($parsedBaseUrl) ? '' : ('/' . $parsedBaseUrl);
|
2022-04-02 12:14:37 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
return parent::getBaseUrl();
|
2019-08-04 09:26:39 -04:00
|
|
|
}
|
2019-09-15 13:29:51 -04:00
|
|
|
}
|