-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
137 lines (127 loc) · 3.79 KB
/
index.js
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
import { Workflow } from "./lib/workflow.js";
/**
* @typedef User
* @property {string} id The user identifier.
* @property {string} email The email address.
* @property {string} password The password.
* @property {string} image The image URL.
*/
/**
* Delete the user.
*
* @param {Object} params The parameters.
* @param {string} params.email The email address.
* @returns {void}
*/
const deleteUser = async ({ email }) => {
await timeout(1000);
return;
};
/**
* Save the user.
*
* @param {Object} params The parameters.
* @param {string} params.email The email address.
* @param {string} params.password The password.
* @param {string} params.imageLink The image URL.
* @returns {User} The user information.
*/
const saveUser = async ({ email, password, imageLink }) => {
await timeout(1000);
return {
id: "1",
email,
password,
image: imageLink,
};
};
/**
* Send a verification email.
*
* @param {Object} params The parameters.
* @param {string} params.email The email address to send to.
*/
const sendVerificationEmail = async ({ email }) => {
await timeout(1000);
console.log("Email sent successfully to: ", email);
};
/**
* Perform a timeout for a specified amount of time.
*
* @param {number} ms Milliseconds to wait.
* @returns {Promise} A Promise to return.
*/
const timeout = (ms) => {
return new Promise((resolve) => setTimeout(resolve, ms));
};
/**
* @typedef Image
* @property {string} imageLink The image URL.
*/
/**
* Delete an image.
*
* @param {string} imageLink The image URL.
* @returns {void}
*/
const deleteImage = async (imageLink) => {
await timeout(1000);
return;
};
/**
* Upload an image.
*
* @param {Blob} _image The blob.
* @returns {Image} The image information.
*/
const uploadImage = async (_image) => {
await timeout(1000);
return { imageLink: "image link" };
};
/**
* Register a user.
*
* @param {string} email The email address.
* @param {string} password The password.
* @param {Blob} image The image blob.
*/
const register = async (email, password, image) => {
/** @type {Array<Function>} */
const undos = [];
try {
// Creating a workflow with a 3 retry limit.
Workflow.createWorkflow(3, (workflow) => {
workflow
.create(async (image) => {
let imageLink = await uploadImage(image);
undos.push(async () => await deleteImage(imageLink));
console.log(`Image uploaded to: `, imageLink);
return { imageLink };
})
// The imageLink is the output of the first step passed to this second step.
.create(async ({ imageLink }) => {
console.log(`Saving user with image at: `, imageLink);
const user = await saveUser({
email,
password,
imageLink,
});
undos.push(async () => await deleteUser({ email }));
return user; // { id, email, password, image }
})
// Only need the email destructured here but we could use all properties if needed.
.finally(async ({ email }) => {
await sendVerificationEmail({ email });
// If you are using this workflow in an API, you can respond here:
// res.status(200).send("User has been created successfully")
});
}).run(image);
} catch (error) {
console.error("Error in workflow.", error);
// Undo all steps up until the failure.
for (const undo of undos.reverse()) {
await undo();
}
}
};
register("[email protected]", "password", new Blob());