insomnia/packages/insomnia-cookies/index.js

62 lines
1.5 KiB
JavaScript
Raw Normal View History

2018-06-25 17:42:50 +00:00
const { CookieJar, Cookie } = require('tough-cookie');
/**
* Get a list of cookie objects from a request.jar()
*
* @param jar
*/
2018-06-25 17:42:50 +00:00
module.exports.cookiesFromJar = function(jar) {
return new Promise(resolve => {
2016-10-05 04:43:48 +00:00
jar.store.getAllCookies((err, cookies) => {
if (err) {
console.warn('Failed to get cookies form jar', err);
resolve([]);
} else {
// NOTE: Perform toJSON so we have a plain JS object instead of Cookie instance
resolve(cookies.map(c => c.toJSON()));
}
});
});
};
2016-10-05 04:43:48 +00:00
/**
* Get a request.jar() from a list of cookie objects
*
* @param cookies
*/
2018-06-25 17:42:50 +00:00
module.exports.jarFromCookies = function(cookies) {
2016-10-06 16:52:26 +00:00
let jar;
try {
// For some reason, fromJSON modifies `cookies`. Create a copy first
// just to be sure
2018-06-25 17:42:50 +00:00
const copy = JSON.stringify({ cookies });
2016-10-06 16:52:26 +00:00
jar = CookieJar.fromJSON(copy);
} catch (e) {
console.log('[cookies] Failed to initialize cookie jar', e);
2016-10-06 16:52:26 +00:00
jar = new CookieJar();
}
2016-10-06 16:52:26 +00:00
jar.rejectPublicSuffixes = false;
jar.looseMode = true;
return jar;
};
2018-06-25 17:42:50 +00:00
module.exports.cookieToString = function(cookie) {
2017-10-16 22:19:16 +00:00
// Cookie can either be a plain JS object or Cookie instance
if (!(cookie instanceof Cookie)) {
cookie = Cookie.fromJSON(cookie);
}
let str = cookie.toString();
// tough-cookie toString() doesn't put domain on all the time.
// This hack adds when tough-cookie won't
if (cookie.domain && cookie.hostOnly) {
str += '; Domain=' + cookie.domain;
}
return str;
};