mirror of
https://github.com/IT4Change/gradido.git
synced 2025-12-13 07:45:54 +00:00
36 lines
1.1 KiB
JavaScript
36 lines
1.1 KiB
JavaScript
import { ApolloClient, ApolloLink, InMemoryCache, HttpLink } from 'apollo-boost'
|
|
import VueApollo from 'vue-apollo'
|
|
import CONFIG from '../config'
|
|
import store from '../store/store'
|
|
|
|
const httpLink = new HttpLink({ uri: CONFIG.GRAPHQL_URI })
|
|
|
|
const authLink = new ApolloLink((operation, forward) => {
|
|
const token = store.state.token
|
|
operation.setContext({
|
|
headers: {
|
|
Authorization: token && token.length > 0 ? `Bearer ${token}` : '',
|
|
clientRequestTime: new Date().toString(),
|
|
},
|
|
})
|
|
return forward(operation).map((response) => {
|
|
if (response.errors && response.errors[0].message === '403.13 - Client certificate revoked') {
|
|
store.dispatch('logout', null)
|
|
window.location.assign(CONFIG.WALLET_URL)
|
|
return response
|
|
}
|
|
const newToken = operation.getContext().response.headers.get('token')
|
|
if (newToken) store.commit('token', newToken)
|
|
return response
|
|
})
|
|
})
|
|
|
|
const apolloClient = new ApolloClient({
|
|
link: authLink.concat(httpLink),
|
|
cache: new InMemoryCache(),
|
|
})
|
|
|
|
export const apolloProvider = new VueApollo({
|
|
defaultClient: apolloClient,
|
|
})
|