|
"use strict"; |
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { |
|
if (k2 === undefined) k2 = k; |
|
var desc = Object.getOwnPropertyDescriptor(m, k); |
|
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { |
|
desc = { enumerable: true, get: function() { return m[k]; } }; |
|
} |
|
Object.defineProperty(o, k2, desc); |
|
}) : (function(o, m, k, k2) { |
|
if (k2 === undefined) k2 = k; |
|
o[k2] = m[k]; |
|
})); |
|
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { |
|
Object.defineProperty(o, "default", { enumerable: true, value: v }); |
|
}) : function(o, v) { |
|
o["default"] = v; |
|
}); |
|
var __importStar = (this && this.__importStar) || function (mod) { |
|
if (mod && mod.__esModule) return mod; |
|
var result = {}; |
|
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k); |
|
__setModuleDefault(result, mod); |
|
return result; |
|
}; |
|
Object.defineProperty(exports, "__esModule", { value: true }); |
|
exports.CookieJar = exports.parse = exports.createCookieJar = exports.XHR = void 0; |
|
const XMLHttpRequestModule = __importStar(require("xmlhttprequest-ssl")); |
|
exports.XHR = XMLHttpRequestModule.default || XMLHttpRequestModule; |
|
function createCookieJar() { |
|
return new CookieJar(); |
|
} |
|
exports.createCookieJar = createCookieJar; |
|
|
|
|
|
|
|
function parse(setCookieString) { |
|
const parts = setCookieString.split("; "); |
|
const i = parts[0].indexOf("="); |
|
if (i === -1) { |
|
return; |
|
} |
|
const name = parts[0].substring(0, i).trim(); |
|
if (!name.length) { |
|
return; |
|
} |
|
let value = parts[0].substring(i + 1).trim(); |
|
if (value.charCodeAt(0) === 0x22) { |
|
|
|
value = value.slice(1, -1); |
|
} |
|
const cookie = { |
|
name, |
|
value, |
|
}; |
|
for (let j = 1; j < parts.length; j++) { |
|
const subParts = parts[j].split("="); |
|
if (subParts.length !== 2) { |
|
continue; |
|
} |
|
const key = subParts[0].trim(); |
|
const value = subParts[1].trim(); |
|
switch (key) { |
|
case "Expires": |
|
cookie.expires = new Date(value); |
|
break; |
|
case "Max-Age": |
|
const expiration = new Date(); |
|
expiration.setUTCSeconds(expiration.getUTCSeconds() + parseInt(value, 10)); |
|
cookie.expires = expiration; |
|
break; |
|
default: |
|
|
|
} |
|
} |
|
return cookie; |
|
} |
|
exports.parse = parse; |
|
class CookieJar { |
|
constructor() { |
|
this.cookies = new Map(); |
|
} |
|
parseCookies(xhr) { |
|
const values = xhr.getResponseHeader("set-cookie"); |
|
if (!values) { |
|
return; |
|
} |
|
values.forEach((value) => { |
|
const parsed = parse(value); |
|
if (parsed) { |
|
this.cookies.set(parsed.name, parsed); |
|
} |
|
}); |
|
} |
|
addCookies(xhr) { |
|
const cookies = []; |
|
this.cookies.forEach((cookie, name) => { |
|
var _a; |
|
if (((_a = cookie.expires) === null || _a === void 0 ? void 0 : _a.getTime()) < Date.now()) { |
|
this.cookies.delete(name); |
|
} |
|
else { |
|
cookies.push(`${name}=${cookie.value}`); |
|
} |
|
}); |
|
if (cookies.length) { |
|
xhr.setDisableHeaderCheck(true); |
|
xhr.setRequestHeader("cookie", cookies.join("; ")); |
|
} |
|
} |
|
} |
|
exports.CookieJar = CookieJar; |
|
|