forked from valeriangalliat/fetch-cookie
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnode-fetch.js
28 lines (24 loc) · 1.13 KB
/
node-fetch.js
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
module.exports = function nodeFetchCookieDecorator (nodeFetch, jar) {
var fetchCookie = require('./')(nodeFetch, jar)
return function nodeFetchCookie (url, userOptions) {
const opts = Object.assign({}, userOptions, { redirect: 'manual' })
// Forward identical options to wrapped node-fetch but tell to not handle redirection.
return fetchCookie(url, opts)
.then(res => {
var isRedirect = (res.status === 303 || ((res.status === 301 || res.status === 302)))
// Interpret the proprietary "redirect" option in the same way that node-fetch does.
if (isRedirect && userOptions.redirect !== 'manual' && userOptions.follow !== 0) {
var optsForGet = Object.assign({}, {
method: 'GET',
body: null,
// Since the "follow" flag is not relevant for node-fetch in this case,
// we'll hijack it for our internal bookkeeping.
follow: userOptions.follow !== undefined ? userOptions.follow - 1 : undefined
})
return nodeFetchCookie(res.headers.get('location'), optsForGet)
} else {
return res
}
})
}
}