164 lines
4.8 KiB
TypeScript
164 lines
4.8 KiB
TypeScript
import {
|
|
ApolloClient,
|
|
ApolloClientOptions,
|
|
ApolloLink,
|
|
fromPromise,
|
|
ServerError,
|
|
ServerParseError,
|
|
} from '@apollo/client';
|
|
import { setContext } from '@apollo/client/link/context';
|
|
import { onError } from '@apollo/client/link/error';
|
|
import { RetryLink } from '@apollo/client/link/retry';
|
|
import { createUploadLink } from 'apollo-upload-client';
|
|
|
|
import { renewToken } from '@/auth/services/AuthService';
|
|
import { AuthTokenPair } from '~/generated/graphql';
|
|
import { isDefined } from '~/utils/isDefined';
|
|
import { logDebug } from '~/utils/logDebug';
|
|
|
|
import { GraphQLFormattedError } from 'graphql';
|
|
import { ApolloManager } from '../types/apolloManager.interface';
|
|
import { loggerLink } from '../utils/loggerLink';
|
|
|
|
const logger = loggerLink(() => 'Twenty');
|
|
|
|
export interface Options<TCacheShape> extends ApolloClientOptions<TCacheShape> {
|
|
onError?: (err: readonly GraphQLFormattedError[] | undefined) => void;
|
|
onNetworkError?: (err: Error | ServerParseError | ServerError) => void;
|
|
onTokenPairChange?: (tokenPair: AuthTokenPair) => void;
|
|
onUnauthenticatedError?: () => void;
|
|
initialTokenPair: AuthTokenPair | null;
|
|
extraLinks?: ApolloLink[];
|
|
isDebugMode?: boolean;
|
|
}
|
|
|
|
export class ApolloFactory<TCacheShape> implements ApolloManager<TCacheShape> {
|
|
private client: ApolloClient<TCacheShape>;
|
|
private tokenPair: AuthTokenPair | null = null;
|
|
|
|
constructor(opts: Options<TCacheShape>) {
|
|
const {
|
|
uri,
|
|
onError: onErrorCb,
|
|
onNetworkError,
|
|
onTokenPairChange,
|
|
onUnauthenticatedError,
|
|
initialTokenPair,
|
|
extraLinks,
|
|
isDebugMode,
|
|
...options
|
|
} = opts;
|
|
|
|
this.tokenPair = initialTokenPair;
|
|
|
|
const buildApolloLink = (): ApolloLink => {
|
|
const httpLink = createUploadLink({
|
|
uri,
|
|
});
|
|
|
|
const authLink = setContext(async (_, { headers }) => {
|
|
return {
|
|
headers: {
|
|
...headers,
|
|
...options.headers,
|
|
authorization: this.tokenPair?.accessToken.token
|
|
? `Bearer ${this.tokenPair?.accessToken.token}`
|
|
: '',
|
|
},
|
|
};
|
|
});
|
|
|
|
const retryLink = new RetryLink({
|
|
delay: {
|
|
initial: 3000,
|
|
},
|
|
attempts: {
|
|
max: 2,
|
|
retryIf: (error) => !!error,
|
|
},
|
|
});
|
|
const errorLink = onError(
|
|
({ graphQLErrors, networkError, forward, operation }) => {
|
|
if (isDefined(graphQLErrors)) {
|
|
onErrorCb?.(graphQLErrors);
|
|
for (const graphQLError of graphQLErrors) {
|
|
if (graphQLError.message === 'Unauthorized') {
|
|
return fromPromise(
|
|
renewToken(uri, this.tokenPair)
|
|
.then((tokens) => {
|
|
if (isDefined(tokens)) {
|
|
onTokenPairChange?.(tokens);
|
|
}
|
|
})
|
|
.catch(() => {
|
|
onUnauthenticatedError?.();
|
|
}),
|
|
).flatMap(() => forward(operation));
|
|
}
|
|
|
|
switch (graphQLError?.extensions?.code) {
|
|
case 'UNAUTHENTICATED': {
|
|
return fromPromise(
|
|
renewToken(uri, this.tokenPair)
|
|
.then((tokens) => {
|
|
if (isDefined(tokens)) {
|
|
onTokenPairChange?.(tokens);
|
|
}
|
|
})
|
|
.catch(() => {
|
|
onUnauthenticatedError?.();
|
|
}),
|
|
).flatMap(() => forward(operation));
|
|
}
|
|
default:
|
|
if (isDebugMode === true) {
|
|
logDebug(
|
|
`[GraphQL error]: Message: ${
|
|
graphQLError.message
|
|
}, Location: ${
|
|
graphQLError.locations
|
|
? JSON.stringify(graphQLError.locations)
|
|
: graphQLError.locations
|
|
}, Path: ${graphQLError.path}`,
|
|
);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
if (isDefined(networkError)) {
|
|
if (isDebugMode === true) {
|
|
logDebug(`[Network error]: ${networkError}`);
|
|
}
|
|
onNetworkError?.(networkError);
|
|
}
|
|
},
|
|
);
|
|
|
|
return ApolloLink.from(
|
|
[
|
|
errorLink,
|
|
authLink,
|
|
...(extraLinks || []),
|
|
isDebugMode ? logger : null,
|
|
retryLink,
|
|
httpLink,
|
|
].filter(isDefined),
|
|
);
|
|
};
|
|
|
|
this.client = new ApolloClient({
|
|
...options,
|
|
link: buildApolloLink(),
|
|
});
|
|
}
|
|
|
|
updateTokenPair(tokenPair: AuthTokenPair | null) {
|
|
this.tokenPair = tokenPair;
|
|
}
|
|
|
|
getClient() {
|
|
return this.client;
|
|
}
|
|
}
|