mirror of
https://github.com/ether/etherpad-lite.git
synced 2025-04-21 07:56:16 -04:00
Same site cookie fix - Ready for testing / merge (#3990)
* initial fix for httpprefs * token * express_sid fix
This commit is contained in:
parent
3ea8d571e7
commit
b15154cc23
3 changed files with 18 additions and 3 deletions
|
@ -46,7 +46,8 @@ var padcookie = (function()
|
|||
var expiresDate = new Date();
|
||||
expiresDate.setFullYear(3000);
|
||||
var secure = isHttpsScheme() ? ";secure" : "";
|
||||
document.cookie = (cookieName + "=" + safeText + ";expires=" + expiresDate.toGMTString() + secure);
|
||||
var sameSite = isHttpsScheme() ? ";sameSite=Strict": ";sameSite=Lax";
|
||||
document.cookie = (cookieName + "=" + safeText + ";expires=" + expiresDate.toGMTString() + secure + sameSite);
|
||||
}
|
||||
|
||||
function parseCookie(text)
|
||||
|
|
|
@ -56,13 +56,15 @@ function createCookie(name, value, days, path){ /* Used by IE */
|
|||
|
||||
//Check if we accessed the pad over https
|
||||
var secure = window.location.protocol == "https:" ? ";secure" : "";
|
||||
var isHttpsScheme = window.location.protocol === "https:";
|
||||
var sameSite = isHttpsScheme ? ";sameSite=Strict": ";sameSite=Lax";
|
||||
|
||||
//Check if the browser is IE and if so make sure the full path is set in the cookie
|
||||
if((navigator.appName == 'Microsoft Internet Explorer') || ((navigator.appName == 'Netscape') && (new RegExp("Trident/.*rv:([0-9]{1,}[\.0-9]{0,})").exec(navigator.userAgent) != null))){
|
||||
document.cookie = name + "=" + value + expires + "; path=/" + secure; /* Note this bodge fix for IE is temporary until auth is rewritten */
|
||||
document.cookie = name + "=" + value + expires + "; path=/" + secure + sameSite; /* Note this bodge fix for IE is temporary until auth is rewritten */
|
||||
}
|
||||
else{
|
||||
document.cookie = name + "=" + value + expires + "; path=" + path + secure;
|
||||
document.cookie = name + "=" + value + expires + "; path=" + path + secure + sameSite;
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue