Spaces:
Paused
Paused
File size: 11,164 Bytes
9ada4bc |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 |
"use strict";Object.defineProperty(exports, "__esModule", {value: true});var __create = Object.create;
var __defProp = Object.defineProperty;
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
var __getOwnPropNames = Object.getOwnPropertyNames;
var __getProtoOf = Object.getPrototypeOf;
var __hasOwnProp = Object.prototype.hasOwnProperty;
var __commonJS = (cb, mod) => function __require() {
return mod || (0, cb[__getOwnPropNames(cb)[0]])((mod = { exports: {} }).exports, mod), mod.exports;
};
var __copyProps = (to, from, except, desc) => {
if (from && typeof from === "object" || typeof from === "function") {
for (let key of __getOwnPropNames(from))
if (!__hasOwnProp.call(to, key) && key !== except)
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
}
return to;
};
var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
mod
));
// node_modules/set-cookie-parser/lib/set-cookie.js
var require_set_cookie = __commonJS({
"node_modules/set-cookie-parser/lib/set-cookie.js"(exports, module) {
"use strict";
var defaultParseOptions = {
decodeValues: true,
map: false,
silent: false
};
function isNonEmptyString(str) {
return typeof str === "string" && !!str.trim();
}
function parseString(setCookieValue, options) {
var parts = setCookieValue.split(";").filter(isNonEmptyString);
var nameValuePairStr = parts.shift();
var parsed = parseNameValuePair(nameValuePairStr);
var name = parsed.name;
var value = parsed.value;
options = options ? Object.assign({}, defaultParseOptions, options) : defaultParseOptions;
try {
value = options.decodeValues ? decodeURIComponent(value) : value;
} catch (e) {
console.error(
"set-cookie-parser encountered an error while decoding a cookie with value '" + value + "'. Set options.decodeValues to false to disable this feature.",
e
);
}
var cookie = {
name,
value
};
parts.forEach(function(part) {
var sides = part.split("=");
var key = sides.shift().trimLeft().toLowerCase();
var value2 = sides.join("=");
if (key === "expires") {
cookie.expires = new Date(value2);
} else if (key === "max-age") {
cookie.maxAge = parseInt(value2, 10);
} else if (key === "secure") {
cookie.secure = true;
} else if (key === "httponly") {
cookie.httpOnly = true;
} else if (key === "samesite") {
cookie.sameSite = value2;
} else {
cookie[key] = value2;
}
});
return cookie;
}
function parseNameValuePair(nameValuePairStr) {
var name = "";
var value = "";
var nameValueArr = nameValuePairStr.split("=");
if (nameValueArr.length > 1) {
name = nameValueArr.shift();
value = nameValueArr.join("=");
} else {
value = nameValuePairStr;
}
return { name, value };
}
function parse(input, options) {
options = options ? Object.assign({}, defaultParseOptions, options) : defaultParseOptions;
if (!input) {
if (!options.map) {
return [];
} else {
return {};
}
}
if (input.headers) {
if (typeof input.headers.getSetCookie === "function") {
input = input.headers.getSetCookie();
} else if (input.headers["set-cookie"]) {
input = input.headers["set-cookie"];
} else {
var sch = input.headers[Object.keys(input.headers).find(function(key) {
return key.toLowerCase() === "set-cookie";
})];
if (!sch && input.headers.cookie && !options.silent) {
console.warn(
"Warning: set-cookie-parser appears to have been called on a request object. It is designed to parse Set-Cookie headers from responses, not Cookie headers from requests. Set the option {silent: true} to suppress this warning."
);
}
input = sch;
}
}
if (!Array.isArray(input)) {
input = [input];
}
options = options ? Object.assign({}, defaultParseOptions, options) : defaultParseOptions;
if (!options.map) {
return input.filter(isNonEmptyString).map(function(str) {
return parseString(str, options);
});
} else {
var cookies = {};
return input.filter(isNonEmptyString).reduce(function(cookies2, str) {
var cookie = parseString(str, options);
cookies2[cookie.name] = cookie;
return cookies2;
}, cookies);
}
}
function splitCookiesString(cookiesString) {
if (Array.isArray(cookiesString)) {
return cookiesString;
}
if (typeof cookiesString !== "string") {
return [];
}
var cookiesStrings = [];
var pos = 0;
var start;
var ch;
var lastComma;
var nextStart;
var cookiesSeparatorFound;
function skipWhitespace() {
while (pos < cookiesString.length && /\s/.test(cookiesString.charAt(pos))) {
pos += 1;
}
return pos < cookiesString.length;
}
function notSpecialChar() {
ch = cookiesString.charAt(pos);
return ch !== "=" && ch !== ";" && ch !== ",";
}
while (pos < cookiesString.length) {
start = pos;
cookiesSeparatorFound = false;
while (skipWhitespace()) {
ch = cookiesString.charAt(pos);
if (ch === ",") {
lastComma = pos;
pos += 1;
skipWhitespace();
nextStart = pos;
while (pos < cookiesString.length && notSpecialChar()) {
pos += 1;
}
if (pos < cookiesString.length && cookiesString.charAt(pos) === "=") {
cookiesSeparatorFound = true;
pos = nextStart;
cookiesStrings.push(cookiesString.substring(start, lastComma));
start = pos;
} else {
pos = lastComma + 1;
}
} else {
pos += 1;
}
}
if (!cookiesSeparatorFound || pos >= cookiesString.length) {
cookiesStrings.push(cookiesString.substring(start, cookiesString.length));
}
}
return cookiesStrings;
}
module.exports = parse;
module.exports.parse = parse;
module.exports.parseString = parseString;
module.exports.splitCookiesString = splitCookiesString;
}
});
// src/store.ts
var import_set_cookie_parser = __toESM(require_set_cookie());
var PERSISTENCY_KEY = "MSW_COOKIE_STORE";
function supportsLocalStorage() {
try {
if (localStorage == null) {
return false;
}
const testKey = PERSISTENCY_KEY + "_test";
localStorage.setItem(testKey, "test");
localStorage.getItem(testKey);
localStorage.removeItem(testKey);
return true;
} catch (error) {
return false;
}
}
var hasLocalStorageSupport = supportsLocalStorage();
function isPropertyAccessible(object, method) {
try {
object[method];
return true;
} catch (e2) {
return false;
}
}
var CookieStore = class {
constructor() {
this.store = /* @__PURE__ */ new Map();
}
add(request, response) {
if (isPropertyAccessible(request, "credentials") && request.credentials === "omit") {
return;
}
const requestUrl = new URL(request.url);
const responseCookies = response.headers.get("set-cookie");
if (!responseCookies) {
return;
}
const now = Date.now();
const parsedResponseCookies = (0, import_set_cookie_parser.parse)(responseCookies).map(
({ maxAge, ...cookie }) => ({
...cookie,
expires: maxAge === void 0 ? cookie.expires : new Date(now + maxAge * 1e3),
maxAge
})
);
const prevCookies = this.store.get(requestUrl.origin) || /* @__PURE__ */ new Map();
parsedResponseCookies.forEach((cookie) => {
this.store.set(requestUrl.origin, prevCookies.set(cookie.name, cookie));
});
}
get(request) {
this.deleteExpiredCookies();
const requestUrl = new URL(request.url);
const originCookies = this.store.get(requestUrl.origin) || /* @__PURE__ */ new Map();
if (!isPropertyAccessible(request, "credentials")) {
return originCookies;
}
switch (request.credentials) {
case "include": {
if (typeof document === "undefined") {
return originCookies;
}
const documentCookies = (0, import_set_cookie_parser.parse)(document.cookie);
documentCookies.forEach((cookie) => {
originCookies.set(cookie.name, cookie);
});
return originCookies;
}
case "same-origin": {
return originCookies;
}
default:
return /* @__PURE__ */ new Map();
}
}
getAll() {
this.deleteExpiredCookies();
return this.store;
}
deleteAll(request) {
const requestUrl = new URL(request.url);
this.store.delete(requestUrl.origin);
}
clear() {
this.store.clear();
}
hydrate() {
if (!hasLocalStorageSupport) {
return;
}
const persistedCookies = localStorage.getItem(PERSISTENCY_KEY);
if (!persistedCookies) {
return;
}
try {
const parsedCookies = JSON.parse(persistedCookies);
parsedCookies.forEach(([origin, cookies]) => {
this.store.set(
origin,
new Map(
cookies.map(([token, { expires, ...cookie }]) => [
token,
expires === void 0 ? cookie : { ...cookie, expires: new Date(expires) }
])
)
);
});
} catch (error) {
console.warn(`
[virtual-cookie] Failed to parse a stored cookie from the localStorage (key "${PERSISTENCY_KEY}").
Stored value:
${localStorage.getItem(PERSISTENCY_KEY)}
Thrown exception:
${error}
Invalid value has been removed from localStorage to prevent subsequent failed parsing attempts.`);
localStorage.removeItem(PERSISTENCY_KEY);
}
}
persist() {
if (!hasLocalStorageSupport) {
return;
}
const serializedCookies = Array.from(this.store.entries()).map(
([origin, cookies]) => {
return [origin, Array.from(cookies.entries())];
}
);
localStorage.setItem(PERSISTENCY_KEY, JSON.stringify(serializedCookies));
}
deleteExpiredCookies() {
const now = Date.now();
this.store.forEach((originCookies, origin) => {
originCookies.forEach(({ expires, name }) => {
if (expires !== void 0 && expires.getTime() <= now) {
originCookies.delete(name);
}
});
if (originCookies.size === 0) {
this.store.delete(origin);
}
});
}
};
var store = new CookieStore();
exports.PERSISTENCY_KEY = PERSISTENCY_KEY; exports.store = store;
//# sourceMappingURL=index.js.map |