Merge pull request #26051 from nextcloud/backport/26048/stable21
[stable21] cache baseurl in url generator
This commit is contained in:
commit
1a25b2e402
|
@ -59,6 +59,8 @@ class URLGenerator implements IURLGenerator {
|
|||
private $request;
|
||||
/** @var Router */
|
||||
private $router;
|
||||
/** @var null|string */
|
||||
private $baseUrl = null;
|
||||
|
||||
public function __construct(IConfig $config,
|
||||
ICacheFactory $cacheFactory,
|
||||
|
@ -269,6 +271,9 @@ class URLGenerator implements IURLGenerator {
|
|||
* @return string base url of the current request
|
||||
*/
|
||||
public function getBaseUrl(): string {
|
||||
return $this->request->getServerProtocol() . '://' . $this->request->getServerHost() . \OC::$WEBROOT;
|
||||
if ($this->baseUrl === null) {
|
||||
$this->baseUrl = $this->request->getServerProtocol() . '://' . $this->request->getServerHost() . \OC::$WEBROOT;
|
||||
}
|
||||
return $this->baseUrl;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue