-
Notifications
You must be signed in to change notification settings - Fork 73
Expand file tree
/
Copy pathapi.ts
More file actions
177 lines (150 loc) · 5.15 KB
/
api.ts
File metadata and controls
177 lines (150 loc) · 5.15 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
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
/**
* Copyright 2019 Google LLC
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
import { RestApi, fetchMaybeWithCredentials } from '../common/rest_api';
import {
AddAuthUserPayload,
AuthUser,
EmulatorV1ProjectsConfig,
Tenant,
UpdateAuthUserPayload,
} from './types';
const importUser = (user: AuthUser & ApiAuthUserFields) => {
const match = user.passwordHash?.match(PASSWORD_HASH_REGEX);
return {
password: match ? match[1] : '',
...user,
providerUserInfo: user.providerUserInfo || [],
};
};
export interface ApiAuthUserFields {
passwordHash: string;
}
export default class AuthApi extends RestApi {
// Note: Always use API paths that contain `projectId` for consistency.
// Unprefixed versions (e.g. /v1/accounts:signUp) are intended for non-admin
// clients and infers projectId, which can lead to unexpected mismatches.
// https://cloud.google.com/identity-platform/docs/reference/rest/v1/projects.accounts
private readonly baseUrl: string;
private readonly baseUrlV2: string;
private readonly baseEmulatorUrl: string;
constructor(
private readonly hostAndPort: string,
private readonly projectId: string,
private readonly tenantId?: string
) {
super();
// https://cloud.google.com/identity-platform/docs/reference/rest/v1/projects.accounts
this.baseUrl = `//${this.hostAndPort}/identitytoolkit.googleapis.com/v1/projects/${this.projectId}`;
this.baseUrlV2 = `//${this.hostAndPort}/identitytoolkit.googleapis.com/v2/projects/${this.projectId}`;
this.baseEmulatorUrl = `//${this.hostAndPort}/emulator/v1/projects/${this.projectId}`;
}
async nukeUsersForAllTenants(): Promise<void> {
const deletePromises = [];
// clear users from default tenant
deletePromises.push(this.deleteRequest(`${this.baseEmulatorUrl}/accounts`));
// clear users from all other tenants
const tenants = await this.fetchTenants();
const tenantDeletes = tenants.map(({ tenantId }) => {
return this.deleteRequest(
`${this.baseEmulatorUrl}/tenants/${tenantId}/accounts`
);
});
deletePromises.concat(tenantDeletes);
await Promise.all(deletePromises);
}
async nukeUsers() {
if (this.tenantId) {
await this.deleteRequest(
`${this.baseEmulatorUrl}/tenants/${this.tenantId}/accounts`
);
} else {
await this.deleteRequest(`${this.baseEmulatorUrl}/accounts`);
}
return [];
}
async fetchUsers(): Promise<AuthUser[]> {
const { json } = await this.jsonRequest(
`${this.baseUrl}/accounts:query`,
{ tenantId: this.tenantId },
'POST'
);
return json.userInfo.map(importUser);
}
async fetchTenants(): Promise<Tenant[]> {
const { json } = await this.jsonRequest(`${this.baseUrlV2}/tenants`);
return json.tenants;
}
async fetchUser(localId: string): Promise<AuthUser> {
const { json } = await this.jsonRequest(
`${this.baseUrl}/accounts:lookup`,
{ localId: [localId], tenantId: this.tenantId },
'POST'
);
if (!json.users || !json.users.length) {
throw new Error(
`User "${localId}" not found in Project "${this.projectId}"!`
);
}
return importUser(json.users[0]);
}
async createUser(user: AddAuthUserPayload): Promise<AuthUser> {
const { json } = await this.jsonRequest(
`${this.baseUrl}/accounts`,
{ ...user, tenantId: this.tenantId },
'POST'
);
return this.fetchUser(json.localId);
}
async updateConfig(
newConfig: Partial<EmulatorV1ProjectsConfig>
): Promise<EmulatorV1ProjectsConfig> {
const { json: updatedConfig } = await this.patchRequest(
`${this.baseEmulatorUrl}/config`,
newConfig
);
return updatedConfig;
}
async getConfig(): Promise<EmulatorV1ProjectsConfig> {
const config = await (
await fetchMaybeWithCredentials(`${this.baseEmulatorUrl}/config`)
).json();
return config;
}
async updateUser(
user: AddAuthUserPayload & { localId: string }
): Promise<AuthUser> {
// AddAuthUserPayload isn't always a valid update payload.
// Convert to valid update payload.
const userUpdate: UpdateAuthUserPayload = {
...user,
mfa: user.mfaInfo ? { enrollments: user.mfaInfo } : undefined,
};
const { json } = await this.jsonRequest(
`${this.baseUrl}/accounts:update`,
{ ...userUpdate, tenantId: this.tenantId },
'POST'
);
return this.fetchUser(json.localId);
}
async deleteUser(user: AuthUser): Promise<void> {
await this.jsonRequest(
`${this.baseUrl}/accounts:delete`,
{ ...user, tenantId: this.tenantId },
'POST'
);
}
}
const PASSWORD_HASH_REGEX = /^fakeHash:salt=[\w\d]+:password=(.*)$/;