-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathgenerateAccount.ts
61 lines (48 loc) · 1.55 KB
/
generateAccount.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
import {
GenerateAccountRequest,
GenerateAccountResponse,
} from "./../../shared/messageModels";
import * as functions from "firebase-functions";
import {firebaseConnector} from "./ServerFirebaseConnector";
/**
* Option to generate on the server side instead.
*/
export const generateAccount = functions
.https.onCall({
cors: ["https://coderev.app"],
minInstances: 0,
maxInstances: 5,
timeoutSeconds: 240,
}, async (
request: functions.https.CallableRequest<GenerateAccountRequest>
) => {
let response: GenerateAccountResponse = {
succeeded: true,
message: "Completed",
};
if (!request.auth) {
response = {
succeeded: false,
message: "No authentication info",
};
return response;
}
const {username, password, label, workspaceUid, createdBy} = request.data;
// TODO: Check if the user is in the workspace?
console.info(`Generating user: ${username}`);
const user = await firebaseConnector.auth.createUser({});
console.info(`Updating user: ${username}`);
await firebaseConnector.auth.updateUser(user.uid, {
displayName: label,
email: username,
password: password,
});
console.info(`Setting claims on user: ${username}`);
await firebaseConnector.auth.setCustomUserClaims(user.uid, {
assigned_workspace_uid: workspaceUid,
created_by_uid: createdBy.uid,
});
// eslint-disable-next-line
console.info(`Generated user: ${username} (requested by ${createdBy.name} (${createdBy.uid}))`);
return response;
});