|
|
@ -171,7 +171,7 @@ window.helpers = window.helpers || {
|
|
|
|
*/
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
/**
|
|
|
|
* Universal storage proxy. Uses inside localStorage or cookies
|
|
|
|
* Universal storage, stores and returns JS objects. Uses inside localStorage or cookies
|
|
|
|
* @type {invidiousStorage}
|
|
|
|
* @type {invidiousStorage}
|
|
|
|
*/
|
|
|
|
*/
|
|
|
|
storage: (function () {
|
|
|
|
storage: (function () {
|
|
|
@ -181,8 +181,8 @@ window.helpers = window.helpers || {
|
|
|
|
|
|
|
|
|
|
|
|
if (localStorageIsUsable) {
|
|
|
|
if (localStorageIsUsable) {
|
|
|
|
return {
|
|
|
|
return {
|
|
|
|
get: function (key) { return localStorage[key]; },
|
|
|
|
get: function (key) { if (localStorage[key]) return JSON.parse(decodeURIComponent(localStorage[key])); },
|
|
|
|
set: function (key, value) { localStorage[key] = value; },
|
|
|
|
set: function (key, value) { localStorage[key] = encodeURIComponent(JSON.stringify(value)); },
|
|
|
|
remove: function (key) { localStorage.removeItem(key); }
|
|
|
|
remove: function (key) { localStorage.removeItem(key); }
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|
|
|
@ -192,27 +192,21 @@ window.helpers = window.helpers || {
|
|
|
|
get: function (key) {
|
|
|
|
get: function (key) {
|
|
|
|
const cookiePrefix = key + '=';
|
|
|
|
const cookiePrefix = key + '=';
|
|
|
|
function findCallback(cookie) {return cookie.startsWith(cookiePrefix);}
|
|
|
|
function findCallback(cookie) {return cookie.startsWith(cookiePrefix);}
|
|
|
|
const matchedCookie = document.cookie.split(';').find(findCallback);
|
|
|
|
const matchedCookie = document.cookie.split('; ').find(findCallback);
|
|
|
|
if (matchedCookie)
|
|
|
|
if (matchedCookie) {
|
|
|
|
return matchedCookie.replace(cookiePrefix, '');
|
|
|
|
const cookieBody = matchedCookie.replace(cookiePrefix, '');
|
|
|
|
return null;
|
|
|
|
if (cookieBody.length === 0) return;
|
|
|
|
|
|
|
|
return JSON.parse(decodeURIComponent(cookieBody));
|
|
|
|
|
|
|
|
}
|
|
|
|
},
|
|
|
|
},
|
|
|
|
set: function (key, value) {
|
|
|
|
set: function (key, value) {
|
|
|
|
const cookie_data = encodeURIComponent(JSON.stringify(value));
|
|
|
|
const cookie_data = encodeURIComponent(JSON.stringify(value));
|
|
|
|
|
|
|
|
|
|
|
|
// Set expiration in 2 year
|
|
|
|
// Set expiration in 2 year
|
|
|
|
const date = new Date();
|
|
|
|
const date = new Date();
|
|
|
|
date.setTime(date.getTime() + 2*365.25*24*60*60);
|
|
|
|
date.setFullYear(date.getFullYear()+2);
|
|
|
|
|
|
|
|
|
|
|
|
const ip_regex = /^((\d+\.){3}\d+|[A-Fa-f0-9]*:[A-Fa-f0-9:]*:[A-Fa-f0-9:]+)$/;
|
|
|
|
document.cookie = key + '=' + cookie_data + '; expires=' + date.toGMTString();
|
|
|
|
let domain_used = location.hostname;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// Fix for a bug in FF where the leading dot in the FQDN is not ignored
|
|
|
|
|
|
|
|
if (domain_used.charAt(0) !== '.' && !ip_regex.test(domain_used) && domain_used !== 'localhost')
|
|
|
|
|
|
|
|
domain_used = '.' + location.hostname;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
document.cookie = key + '=' + cookie_data + '; SameSite=Strict; path=/; domain=' +
|
|
|
|
|
|
|
|
domain_used + '; expires=' + date.toGMTString() + ';';
|
|
|
|
|
|
|
|
},
|
|
|
|
},
|
|
|
|
remove: function (key) {
|
|
|
|
remove: function (key) {
|
|
|
|
document.cookie = key + '=; Max-Age=0';
|
|
|
|
document.cookie = key + '=; Max-Age=0';
|
|
|
|