-
-
Notifications
You must be signed in to change notification settings - Fork 141
/
Copy pathgraphql-client.ts
281 lines (250 loc) · 7.19 KB
/
graphql-client.ts
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
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
import { AccountsClient, TransportInterface } from '@accounts/client';
import {
CreateUser,
ImpersonationResult,
LoginResult,
User,
CreateUserResult,
} from '@accounts/types';
import { print, DocumentNode } from 'graphql/language';
import { TypedDocumentNode } from '@graphql-typed-document-node/core';
import {
CreateUserDocument,
AddEmailDocument,
AuthenticateWithServiceDocument,
GetTwoFactorSecretDocument,
ChangePasswordDocument,
LogoutDocument,
VerifyEmailDocument,
SendResetPasswordEmailDocument,
SendVerificationEmailDocument,
ResetPasswordDocument,
TwoFactorSetDocument,
TwoFactorUnsetDocument,
RefreshTokensDocument,
GetUserDocument,
ImpersonateDocument,
AuthenticateDocument,
RequestMagicLinkEmailDocument,
} from './graphql-operations';
import { GraphQLErrorList } from './GraphQLErrorList';
import { replaceUserFieldsFragment } from './utils/replace-user-fragment';
export interface AuthenticateParams {
[key: string]: string | object;
}
export interface OptionsType {
graphQLClient: any;
userFieldsFragment?: DocumentNode;
}
export default class GraphQLClient implements TransportInterface {
public client!: AccountsClient;
private options: OptionsType;
constructor(options: OptionsType) {
this.options = options;
}
/**
* Create a user with basic user info
*
* @param {CreateUser} user user object
* @returns {Promise<CreateUserResult>} contains user's ID and LoginResult object if autologin is enabled
* @memberof GraphQLClient
*/
public async createUser(user: CreateUser): Promise<CreateUserResult> {
return this.mutate(
this.options.userFieldsFragment
? replaceUserFieldsFragment(CreateUserDocument, this.options.userFieldsFragment)
: CreateUserDocument,
'createUser',
{ user }
);
}
/**
* @inheritDoc
*/
public async authenticateWithService(
service: string,
authenticateParams: { [key: string]: string | object }
): Promise<boolean> {
return this.mutate(AuthenticateWithServiceDocument, 'verifyAuthentication', {
serviceName: service,
params: authenticateParams,
});
}
/**
* @inheritDoc
*/
public async loginWithService(
service: string,
authenticateParams: AuthenticateParams
): Promise<LoginResult> {
return this.mutate(
this.options.userFieldsFragment
? replaceUserFieldsFragment(AuthenticateDocument, this.options.userFieldsFragment)
: AuthenticateDocument,
'authenticate',
{
serviceName: service,
params: authenticateParams,
}
);
}
/**
* @inheritDoc
*/
public async getUser(): Promise<User> {
return this.query(
this.options.userFieldsFragment
? replaceUserFieldsFragment(GetUserDocument, this.options.userFieldsFragment)
: GetUserDocument,
'getUser'
);
}
/**
* @inheritDoc
*/
public async logout(): Promise<void> {
return this.mutate(LogoutDocument, 'logout');
}
/**
* @inheritDoc
*/
public async refreshTokens(accessToken: string, refreshToken: string): Promise<LoginResult> {
return this.mutate(RefreshTokensDocument, 'refreshTokens', { accessToken, refreshToken });
}
/**
* @inheritDoc
*/
public async verifyEmail(token: string): Promise<void> {
return this.mutate(VerifyEmailDocument, 'verifyEmail', { token });
}
/**
* @inheritDoc
*/
public async sendResetPasswordEmail(email: string): Promise<void> {
return this.mutate(SendResetPasswordEmailDocument, 'sendResetPasswordEmail', { email });
}
/**
* @inheritDoc
*/
public async sendVerificationEmail(email: string): Promise<void> {
return this.mutate(SendVerificationEmailDocument, 'sendVerificationEmail', { email });
}
/**
* @inheritDoc
*/
public async resetPassword(token: string, newPassword: string): Promise<LoginResult | null> {
return this.mutate(ResetPasswordDocument, 'resetPassword', { token, newPassword });
}
/**
* @inheritDoc
*/
public async addEmail(newEmail: string): Promise<void> {
return this.mutate(AddEmailDocument, 'addEmail', { newEmail });
}
/**
* @inheritDoc
*/
public async changePassword(oldPassword: string, newPassword: string): Promise<void> {
return this.mutate(ChangePasswordDocument, 'changePassword', { oldPassword, newPassword });
}
/**
* @inheritDoc
*/
public async getTwoFactorSecret(): Promise<any> {
return this.query(GetTwoFactorSecretDocument, 'twoFactorSecret', {});
}
/**
* @inheritDoc
*/
public async twoFactorSet(secret: any, code: string): Promise<void> {
return this.mutate(TwoFactorSetDocument, 'twoFactorSet', { secret, code });
}
/**
* @inheritDoc
*/
public async twoFactorUnset(code: string): Promise<void> {
return this.mutate(TwoFactorUnsetDocument, 'twoFactorUnset', { code });
}
/**
* @inheritDoc
*/
public async impersonate(
token: string,
impersonated: {
username?: string;
userId?: string;
email?: string;
}
): Promise<ImpersonationResult> {
return this.mutate(
this.options.userFieldsFragment
? replaceUserFieldsFragment(ImpersonateDocument, this.options.userFieldsFragment)
: ImpersonateDocument,
'impersonate',
{
accessToken: token,
impersonated: {
userId: impersonated.userId,
username: impersonated.username,
email: impersonated.email,
},
}
);
}
private async mutate<TData = any, TVariables = Record<string, any>>(
mutation: TypedDocumentNode<TData, TVariables>,
resultField: any,
variables?: TVariables
): Promise<any> {
// If we are executing a refresh token mutation do not call refresh session again
// otherwise it will end up in an infinite loop
const tokens =
(mutation as any) === RefreshTokensDocument
? await this.client.getTokens()
: await this.client.refreshSession();
const headers: { Authorization?: string } = {};
if (tokens) {
headers.Authorization = `Bearer ${tokens.accessToken}`;
}
const { data, errors } = await this.options.graphQLClient.mutate({
mutation,
variables,
context: {
headers,
},
});
if (errors) {
throw new GraphQLErrorList(errors, `in mutation: \r\n ${print(mutation)}`);
}
return data[resultField];
}
private async query<TData = any, TVariables = Record<string, any>>(
query: TypedDocumentNode<TData, TVariables>,
resultField: any,
variables?: TVariables
): Promise<any> {
const tokens = await this.client.refreshSession();
const headers: { Authorization?: string } = {};
if (tokens) {
headers.Authorization = `Bearer ${tokens.accessToken}`;
}
const { data, errors } = await this.options.graphQLClient.query({
query,
variables,
fetchPolicy: 'network-only',
context: {
headers,
},
});
if (errors) {
throw new GraphQLErrorList(errors, `in query: \r\n ${print(query)}`);
}
return data[resultField];
}
/**
* @inheritDoc
*/
public async requestMagicLinkEmail(email: string): Promise<void> {
return this.mutate(RequestMagicLinkEmailDocument, 'requestMagicLinkEmail', { email });
}
}