Merge pull request #23942 from nextcloud/techdebt/cookie-lax-php7.3
Remove the cookie paths for php<7.3
This commit is contained in:
commit
cab80e685b
|
@ -96,17 +96,13 @@ class Output implements IOutput {
|
|||
public function setCookie($name, $value, $expire, $path, $domain, $secure, $httpOnly, $sameSite = 'Lax') {
|
||||
$path = $this->webRoot ? : '/';
|
||||
|
||||
if (PHP_VERSION_ID < 70300) {
|
||||
setcookie($name, $value, $expire, $path, $domain, $secure, $httpOnly);
|
||||
} else {
|
||||
setcookie($name, $value, [
|
||||
'expires' => $expire,
|
||||
'path' => $path,
|
||||
'domain' => $domain,
|
||||
'secure' => $secure,
|
||||
'httponly' => $httpOnly,
|
||||
'samesite' => $sameSite
|
||||
]);
|
||||
}
|
||||
setcookie($name, $value, [
|
||||
'expires' => $expire,
|
||||
'path' => $path,
|
||||
'domain' => $domain,
|
||||
'secure' => $secure,
|
||||
'httponly' => $httpOnly,
|
||||
'samesite' => $sameSite
|
||||
]);
|
||||
}
|
||||
}
|
||||
|
|
|
@ -88,22 +88,18 @@ class CryptoWrapper {
|
|||
$webRoot = '/';
|
||||
}
|
||||
|
||||
if (PHP_VERSION_ID < 70300) {
|
||||
setcookie(self::COOKIE_NAME, $this->passphrase, 0, $webRoot, '', $secureCookie, true);
|
||||
} else {
|
||||
setcookie(
|
||||
self::COOKIE_NAME,
|
||||
$this->passphrase,
|
||||
[
|
||||
'expires' => 0,
|
||||
'path' => $webRoot,
|
||||
'domain' => '',
|
||||
'secure' => $secureCookie,
|
||||
'httponly' => true,
|
||||
'samesite' => 'Lax',
|
||||
]
|
||||
);
|
||||
}
|
||||
setcookie(
|
||||
self::COOKIE_NAME,
|
||||
$this->passphrase,
|
||||
[
|
||||
'expires' => 0,
|
||||
'path' => $webRoot,
|
||||
'domain' => '',
|
||||
'secure' => $secureCookie,
|
||||
'httponly' => true,
|
||||
'samesite' => 'Lax',
|
||||
]
|
||||
);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -214,10 +214,6 @@ class Internal extends Session {
|
|||
}
|
||||
|
||||
private function startSession(bool $silence = false) {
|
||||
if (PHP_VERSION_ID < 70300) {
|
||||
$this->invoke('session_start', [], $silence);
|
||||
} else {
|
||||
$this->invoke('session_start', [['cookie_samesite' => 'Lax']], $silence);
|
||||
}
|
||||
$this->invoke('session_start', [['cookie_samesite' => 'Lax']], $silence);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue