2018-11-06 10:30:27 +01:00
|
|
|
|
import Vue from 'vue';
|
|
|
|
|
import VueApollo from 'vue-apollo';
|
2019-12-03 11:29:51 +01:00
|
|
|
|
import { ApolloLink, Observable, split } from 'apollo-link';
|
2019-11-08 19:37:14 +01:00
|
|
|
|
import { defaultDataIdFromObject, InMemoryCache, IntrospectionFragmentMatcher } from 'apollo-cache-inmemory';
|
2019-08-12 16:04:16 +02:00
|
|
|
|
import { onError } from 'apollo-link-error';
|
2018-11-06 10:30:27 +01:00
|
|
|
|
import { createLink } from 'apollo-absinthe-upload-link';
|
2019-12-03 11:29:51 +01:00
|
|
|
|
import { GRAPHQL_API_ENDPOINT, GRAPHQL_API_FULL_PATH, MOBILIZON_INSTANCE_HOST } from './api/_entrypoint';
|
2019-01-18 14:47:10 +01:00
|
|
|
|
import { ApolloClient } from 'apollo-client';
|
2019-08-12 16:04:16 +02:00
|
|
|
|
import { buildCurrentUserResolver } from '@/apollo/user';
|
|
|
|
|
import { isServerError } from '@/types/apollo';
|
|
|
|
|
import { REFRESH_TOKEN } from '@/graphql/auth';
|
|
|
|
|
import { AUTH_ACCESS_TOKEN, AUTH_REFRESH_TOKEN } from '@/constants';
|
|
|
|
|
import { logout, saveTokenData } from '@/utils/auth';
|
2019-10-13 13:56:24 +02:00
|
|
|
|
import { SnackbarProgrammatic as Snackbar } from 'buefy';
|
|
|
|
|
import { defaultError, errors, IError, refreshSuggestion } from '@/utils/errors';
|
2019-12-03 11:29:51 +01:00
|
|
|
|
import { Socket as PhoenixSocket } from 'phoenix';
|
|
|
|
|
import * as AbsintheSocket from '@absinthe/socket';
|
|
|
|
|
import { createAbsintheSocketLink } from '@absinthe/socket-apollo-link';
|
|
|
|
|
import { getMainDefinition } from 'apollo-utilities';
|
2018-11-06 10:30:27 +01:00
|
|
|
|
|
|
|
|
|
// Install the vue plugin
|
|
|
|
|
Vue.use(VueApollo);
|
|
|
|
|
|
2019-12-03 11:29:51 +01:00
|
|
|
|
// Endpoints
|
2018-11-15 17:35:47 +01:00
|
|
|
|
const httpServer = GRAPHQL_API_ENDPOINT || 'http://localhost:4000';
|
|
|
|
|
const httpEndpoint = GRAPHQL_API_FULL_PATH || `${httpServer}/api`;
|
2019-12-03 11:29:51 +01:00
|
|
|
|
const wsEndpoint = `ws${httpServer.substring(httpServer.indexOf(':'))}/graphql_socket`;
|
2018-11-06 10:30:27 +01:00
|
|
|
|
|
|
|
|
|
const fragmentMatcher = new IntrospectionFragmentMatcher({
|
|
|
|
|
introspectionQueryResultData: {
|
|
|
|
|
__schema: {
|
|
|
|
|
types: [
|
|
|
|
|
{
|
|
|
|
|
kind: 'UNION',
|
|
|
|
|
name: 'SearchResult',
|
|
|
|
|
possibleTypes: [
|
|
|
|
|
{ name: 'Event' },
|
2019-04-03 17:29:03 +02:00
|
|
|
|
{ name: 'Person' },
|
|
|
|
|
{ name: 'Group' },
|
2018-11-06 10:30:27 +01:00
|
|
|
|
],
|
2019-04-03 17:29:03 +02:00
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
kind: 'INTERFACE',
|
|
|
|
|
name: 'Actor',
|
|
|
|
|
possibleTypes: [
|
|
|
|
|
{ name: 'Person' },
|
|
|
|
|
{ name: 'Group' },
|
|
|
|
|
],
|
|
|
|
|
},
|
2018-11-06 10:30:27 +01:00
|
|
|
|
],
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
const authMiddleware = new ApolloLink((operation, forward) => {
|
|
|
|
|
// add the authorization to the headers
|
|
|
|
|
operation.setContext({
|
|
|
|
|
headers: {
|
2019-08-12 16:04:16 +02:00
|
|
|
|
authorization: generateTokenHeader(),
|
2018-11-06 10:30:27 +01:00
|
|
|
|
},
|
|
|
|
|
});
|
|
|
|
|
|
2018-12-28 15:41:32 +01:00
|
|
|
|
if (forward) return forward(operation);
|
2018-12-21 15:41:34 +01:00
|
|
|
|
|
|
|
|
|
return null;
|
2018-11-06 10:30:27 +01:00
|
|
|
|
});
|
|
|
|
|
|
2019-08-12 16:04:16 +02:00
|
|
|
|
let refreshingTokenPromise: Promise<boolean> | undefined;
|
|
|
|
|
let alreadyRefreshedToken = false;
|
|
|
|
|
const errorLink = onError(({ graphQLErrors, networkError, forward, operation }) => {
|
|
|
|
|
if (isServerError(networkError) && networkError.statusCode === 401 && !alreadyRefreshedToken) {
|
|
|
|
|
if (!refreshingTokenPromise) refreshingTokenPromise = refreshAccessToken();
|
|
|
|
|
|
|
|
|
|
return promiseToObservable(refreshingTokenPromise).flatMap(() => {
|
|
|
|
|
refreshingTokenPromise = undefined;
|
|
|
|
|
alreadyRefreshedToken = true;
|
|
|
|
|
|
|
|
|
|
const context = operation.getContext();
|
|
|
|
|
const oldHeaders = context.headers;
|
|
|
|
|
|
|
|
|
|
operation.setContext({
|
|
|
|
|
headers: {
|
|
|
|
|
...oldHeaders,
|
|
|
|
|
authorization: generateTokenHeader(),
|
|
|
|
|
},
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
return forward(operation);
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (graphQLErrors) {
|
2019-10-13 16:24:43 +02:00
|
|
|
|
const messages: Set<string> = new Set();
|
|
|
|
|
|
2019-10-13 13:56:24 +02:00
|
|
|
|
graphQLErrors.forEach(({ message, locations, path }) => {
|
2019-10-13 17:03:48 +02:00
|
|
|
|
const computedMessage = computeErrorMessage(message);
|
|
|
|
|
if (computedMessage) {
|
|
|
|
|
console.log('computed message', computedMessage);
|
|
|
|
|
messages.add(computedMessage);
|
|
|
|
|
}
|
2019-10-13 13:56:24 +02:00
|
|
|
|
console.log(`[GraphQL error]: Message: ${message}, Location: ${locations}, Path: ${path}`);
|
|
|
|
|
});
|
2019-10-13 16:24:43 +02:00
|
|
|
|
|
|
|
|
|
for (const message of messages) {
|
|
|
|
|
Snackbar.open({ message, type: 'is-danger', position: 'is-bottom' });
|
|
|
|
|
}
|
2019-08-12 16:04:16 +02:00
|
|
|
|
}
|
|
|
|
|
|
2019-10-13 13:56:24 +02:00
|
|
|
|
if (networkError) {
|
|
|
|
|
console.log(`[Network error]: ${networkError}`);
|
2019-10-13 17:03:48 +02:00
|
|
|
|
const computedMessage = computeErrorMessage(networkError);
|
|
|
|
|
if (computedMessage) {
|
|
|
|
|
Snackbar.open({ message: computedMessage, type: 'is-danger', position: 'is-bottom' });
|
|
|
|
|
}
|
2019-10-13 13:56:24 +02:00
|
|
|
|
}
|
2019-01-18 14:47:10 +01:00
|
|
|
|
});
|
2018-11-06 10:30:27 +01:00
|
|
|
|
|
2019-10-13 13:56:24 +02:00
|
|
|
|
const computeErrorMessage = (message) => {
|
|
|
|
|
const error: IError = errors.reduce((acc, error) => {
|
|
|
|
|
if (RegExp(error.match).test(message)) {
|
|
|
|
|
return error;
|
|
|
|
|
}
|
|
|
|
|
return acc;
|
|
|
|
|
}, defaultError);
|
|
|
|
|
|
2019-10-13 17:03:48 +02:00
|
|
|
|
if (error.value === null) return null;
|
2019-10-13 13:56:24 +02:00
|
|
|
|
return error.suggestRefresh === false ? error.value : `${error.value}<br>${refreshSuggestion}`;
|
|
|
|
|
};
|
|
|
|
|
|
2019-12-03 11:29:51 +01:00
|
|
|
|
const uploadLink = createLink({
|
|
|
|
|
uri: httpEndpoint,
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
const phoenixSocket = new PhoenixSocket(wsEndpoint, {
|
|
|
|
|
params: () => {
|
|
|
|
|
const token = localStorage.getItem(AUTH_ACCESS_TOKEN);
|
|
|
|
|
if (token) {
|
|
|
|
|
return { token };
|
|
|
|
|
}
|
|
|
|
|
return {};
|
|
|
|
|
|
|
|
|
|
},
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
const absintheSocket = AbsintheSocket.create(phoenixSocket);
|
|
|
|
|
const wsLink = createAbsintheSocketLink(absintheSocket);
|
|
|
|
|
|
|
|
|
|
const link = split(
|
|
|
|
|
// split based on operation type
|
|
|
|
|
({ query }) => {
|
|
|
|
|
const definition = getMainDefinition(query);
|
|
|
|
|
return definition.kind === 'OperationDefinition' &&
|
|
|
|
|
definition.operation === 'subscription';
|
|
|
|
|
},
|
|
|
|
|
wsLink,
|
|
|
|
|
uploadLink,
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
const fullLink = authMiddleware
|
2019-08-12 16:04:16 +02:00
|
|
|
|
.concat(errorLink)
|
2019-12-03 11:29:51 +01:00
|
|
|
|
.concat(link);
|
2019-08-12 16:04:16 +02:00
|
|
|
|
|
2019-09-09 11:21:42 +02:00
|
|
|
|
const cache = new InMemoryCache({
|
|
|
|
|
fragmentMatcher,
|
2019-11-08 19:37:14 +01:00
|
|
|
|
dataIdFromObject: object => {
|
|
|
|
|
if (object.__typename === 'Address') {
|
|
|
|
|
// @ts-ignore
|
|
|
|
|
return object.origin_id;
|
|
|
|
|
}
|
|
|
|
|
return defaultDataIdFromObject(object);
|
|
|
|
|
},
|
2019-09-09 11:21:42 +02:00
|
|
|
|
});
|
2018-11-06 10:30:27 +01:00
|
|
|
|
|
2019-01-18 14:47:10 +01:00
|
|
|
|
const apolloClient = new ApolloClient({
|
2018-12-21 15:41:34 +01:00
|
|
|
|
cache,
|
2019-12-03 11:29:51 +01:00
|
|
|
|
link: fullLink,
|
2018-12-21 15:41:34 +01:00
|
|
|
|
connectToDevTools: true,
|
2019-09-02 14:35:50 +02:00
|
|
|
|
resolvers: buildCurrentUserResolver(cache),
|
2019-01-18 14:47:10 +01:00
|
|
|
|
});
|
2018-11-06 10:30:27 +01:00
|
|
|
|
|
2019-01-18 14:47:10 +01:00
|
|
|
|
export const apolloProvider = new VueApollo({
|
|
|
|
|
defaultClient: apolloClient,
|
|
|
|
|
errorHandler(error) {
|
2018-11-06 10:30:27 +01:00
|
|
|
|
// eslint-disable-next-line no-console
|
2019-01-18 14:47:10 +01:00
|
|
|
|
console.log('%cError', 'background: red; color: white; padding: 2px 4px; border-radius: 3px; font-weight: bold;', error.message);
|
|
|
|
|
},
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
// Manually call this when user log in
|
|
|
|
|
export function onLogin(apolloClient) {
|
|
|
|
|
// if (apolloClient.wsClient) restartWebsockets(apolloClient.wsClient);
|
2018-11-06 10:30:27 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Manually call this when user log out
|
2019-08-12 16:04:16 +02:00
|
|
|
|
export async function onLogout() {
|
2019-01-18 14:47:10 +01:00
|
|
|
|
// if (apolloClient.wsClient) restartWebsockets(apolloClient.wsClient);
|
|
|
|
|
|
2019-09-18 17:32:37 +02:00
|
|
|
|
// We don't reset store because we rely on currentUser & currentActor
|
|
|
|
|
// which are in the cache (even null). Maybe try to rerun cache init after resetStore ?
|
|
|
|
|
// try {
|
|
|
|
|
// await apolloClient.resetStore();
|
|
|
|
|
// } catch (e) {
|
|
|
|
|
// // eslint-disable-next-line no-console
|
|
|
|
|
// console.log('%cError on cache reset (logout)', 'color: orange;', e.message);
|
|
|
|
|
// }
|
2018-11-06 10:30:27 +01:00
|
|
|
|
}
|
2019-08-12 16:04:16 +02:00
|
|
|
|
|
|
|
|
|
async function refreshAccessToken() {
|
|
|
|
|
// Remove invalid access token, so the next request is not authenticated
|
|
|
|
|
localStorage.removeItem(AUTH_ACCESS_TOKEN);
|
|
|
|
|
|
|
|
|
|
const refreshToken = localStorage.getItem(AUTH_REFRESH_TOKEN);
|
|
|
|
|
|
|
|
|
|
console.log('Refreshing access token.');
|
|
|
|
|
|
|
|
|
|
try {
|
|
|
|
|
const res = await apolloClient.mutate({
|
|
|
|
|
mutation: REFRESH_TOKEN,
|
|
|
|
|
variables: {
|
|
|
|
|
refreshToken,
|
|
|
|
|
},
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
saveTokenData(res.data.refreshToken);
|
|
|
|
|
|
|
|
|
|
return true;
|
|
|
|
|
} catch (err) {
|
|
|
|
|
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function generateTokenHeader() {
|
|
|
|
|
const token = localStorage.getItem(AUTH_ACCESS_TOKEN);
|
|
|
|
|
|
|
|
|
|
return token ? `Bearer ${token}` : null;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Thanks: https://github.com/apollographql/apollo-link/issues/747#issuecomment-502676676
|
|
|
|
|
const promiseToObservable = <T> (promise: Promise<T>) => {
|
|
|
|
|
return new Observable<T>((subscriber) => {
|
|
|
|
|
promise.then(
|
|
|
|
|
(value) => {
|
|
|
|
|
if (subscriber.closed) {
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
subscriber.next(value);
|
|
|
|
|
subscriber.complete();
|
|
|
|
|
},
|
|
|
|
|
(err) => {
|
|
|
|
|
console.error('Cannot refresh token.', err);
|
|
|
|
|
|
|
|
|
|
subscriber.error(err);
|
|
|
|
|
logout(apolloClient);
|
|
|
|
|
},
|
|
|
|
|
);
|
|
|
|
|
});
|
|
|
|
|
};
|