generated from cfpb/open-source-project-template
-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathfetch.js
81 lines (67 loc) · 2.22 KB
/
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
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
import createQueryString from './createQueryString.js'
import makeUrl from './makeUrl.js'
import * as AccessToken from '../../common/api/AccessToken.js'
import { login } from '../utils/keycloak.js'
import { getStore } from '../utils/store.js'
import log, { error } from '../utils/log.js'
export function getFilingData() {
const appState = getStore().getState().app
return {
lei: appState.lei,
filing: appState.filingPeriod,
submission: appState.submission.id && appState.submission.id.sequenceNumber
}
}
export function fetchData(options = { method: 'GET' }) {
const accessToken = AccessToken.get()
const pathname = options.pathname
const filingData = pathname ? {} : getFilingData()
const isFormData =
options.body && options.body.toString() === '[object FormData]'
options = Object.assign({}, filingData, options)
if (options.params) {
options.querystring = createQueryString(options.params)
}
const url = options.url || makeUrl(options)
if (typeof options.body === 'object' && !isFormData)
options.body = JSON.stringify(options.body)
let headers = { Accept: 'application/json' }
if (options.method === 'POST' && !isFormData) {
headers = {
'Content-Type': 'application/json',
Accept: 'application/json'
}
}
if (options.params && options.params.format === 'csv') {
headers = {
'Content-Type': 'text/csv',
Accept: 'text/csv'
}
}
if (accessToken) headers.Authorization = 'Bearer ' + accessToken
if(options.noCache || options.method === 'POST') {
headers['Cache-Control'] = 'no-cache, no-store'
}
var fetchOptions = {
method: options.method || 'GET',
body: options.body,
headers: headers
}
return fetch(url, fetchOptions)
.then(response => {
return new Promise(resolve => {
if (response.status === 401 || response.status === 403) login()
if (fetchOptions.method === 'HEAD') {
return resolve(response.status === 200) // 304?
}
if (response.status > 399) return resolve(response)
if (options.params && options.params.format === 'csv') {
return resolve(response.text())
}
resolve(response.json())
})
})
.catch(err => {
error(err)
})
}