forked from canada-ca/tracker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathclient.js
More file actions
149 lines (136 loc) · 3.93 KB
/
client.js
File metadata and controls
149 lines (136 loc) · 3.93 KB
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
import 'isomorphic-unfetch'
import { ApolloClient, createHttpLink, InMemoryCache, makeVar, from } from '@apollo/client'
import { onError } from '@apollo/client/link/error'
import { relayStylePagination } from '@apollo/client/utilities'
import { setContext } from '@apollo/client/link/context'
import { i18n } from '@lingui/core'
import { REFRESH_TOKENS } from './graphql/mutations'
import { RetryLink } from '@apollo/client/link/retry'
export function createCache() {
return new InMemoryCache({
typePolicies: {
Query: {
fields: {
findMyDomains: relayStylePagination(),
findMyDmarcSummaries: relayStylePagination(),
findMyOrganizations: relayStylePagination(['isAdmin']),
findMyUsers: relayStylePagination(),
findAuditLogs: relayStylePagination(),
getOneTimeScans: {
merge(existing = [], incoming) {
return [...existing, incoming]
},
},
},
},
DetailTables: {
fields: {
dkimFailure: relayStylePagination(),
dmarcFailure: relayStylePagination(),
spfFailure: relayStylePagination(),
fullPass: relayStylePagination(),
},
},
Domain: {
fields: {
status: {
merge(existing, incoming, { mergeObjects }) {
return mergeObjects(existing, incoming)
},
},
},
},
Organization: {
fields: {
affiliations: relayStylePagination(),
domains: relayStylePagination(),
},
},
MyTrackerResult: {
fields: {
domains: relayStylePagination(),
},
},
Period: {
keyFields: ['month', 'year', 'domain'],
fields: {
detailTables: {
merge(existing = {}, incoming) {
return { ...existing, ...incoming }
},
},
},
},
PersonalUser: {
keyFields: [],
},
SharedUser: {
fields: {
affiliations: relayStylePagination(),
},
},
},
})
}
export const cache = createCache()
export const currentUserVar = makeVar({
jwt: null,
tfaSendMethod: null,
userName: null,
})
const refreshTokens = async () => {
let currentToken = currentUserVar().jwt
if (currentToken === null) {
return
}
currentUserVar({
jwt: null,
})
const { data } = await client.mutate({ mutation: REFRESH_TOKENS })
if (data.refreshTokens.result.__typename === 'AuthResult') {
currentUserVar({
jwt: data.refreshTokens.result.authToken,
...currentUserVar(),
})
return data.refreshTokens.result.authToken
}
}
const httpLink = createHttpLink({
uri: process.env.NODE_ENV === 'production' ? `https://${window.location.host}/graphql` : '/graphql',
})
const headersLink = setContext(({ operationName }, { headers }) => {
const language = i18n.locale
const authorization = currentUserVar().jwt && operationName !== 'RefreshTokens' ? currentUserVar().jwt : ''
return {
headers: {
...headers,
authorization,
'Accept-Language': language,
},
}
})
const httpLinkWithHeaders = headersLink.concat(httpLink)
const errorLink = onError(({ graphQLErrors, operation, forward }) => {
if (graphQLErrors)
graphQLErrors.map(async ({ extensions: { code } }) => {
if (code === 'UNAUTHENTICATED') {
// Modify the operation context with a new token
const oldHeaders = operation.getContext().headers
const newToken = await refreshTokens()
operation.setContext({
headers: {
...oldHeaders,
authorization: newToken,
},
})
// Retry the request, returning the new observable
return forward(operation)
}
})
})
const retryLink = new RetryLink()
const additiveLink = from([retryLink, errorLink, httpLinkWithHeaders])
export const client = new ApolloClient({
link: additiveLink,
cache,
})