-
Notifications
You must be signed in to change notification settings - Fork 119
/
Copy pathseed-users.js
125 lines (111 loc) · 3.22 KB
/
seed-users.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
// THIS IS SETUP CODE FOR THE EXAMPLE
// You won't need any of it in your live app!
//
// It's just here so that you can play around with this example more easily
// When you run the script, we make sure the two example users are created,
// recreate the two conversations, and send messages from the example users
import fetch from "node-fetch";
const appId = "<APP_ID>";
const secretKey = "<SECRET_KEY>";
const basePath = "https://api.talkjs.com";
async function setupConversation(i) {
const conversationId = `archiveConversationExample${i}`;
const userId = `archiveConversationExampleUser${i}`;
// archive the conversation (if it exists)
await fetch(`${basePath}/v1/${appId}/conversations/${conversationId}`, {
method: "DELETE",
headers: {
Authorization: `Bearer ${secretKey}`,
},
});
// Create a new conversation
await fetch(`${basePath}/v1/${appId}/conversations/${conversationId}`, {
method: "PUT",
headers: {
"Content-Type": "application/json",
Authorization: `Bearer ${secretKey}`,
},
body: JSON.stringify({
participants: ["archiveConversationExampleSupportAgent", userId],
}),
});
// Send a message from the user to make sure it will show up in the conversation list
await fetch(
`${basePath}/v1/${appId}/conversations/${conversationId}/messages`,
{
method: "POST",
headers: {
"Content-Type": "application/json",
Authorization: `Bearer ${secretKey}`,
},
body: JSON.stringify([
{
text: "Can I get some help please?",
sender: userId,
type: "UserMessage",
},
]),
}
);
}
async function setup() {
const supportAgent = fetch(
`${basePath}/v1/${appId}/users/archiveConversationExampleSupportAgent`,
{
method: "PUT",
headers: {
"Content-Type": "application/json",
Authorization: `Bearer ${secretKey}`,
},
body: JSON.stringify({
name: "Alice",
email: ["[email protected]"],
role: "default",
photoUrl: "https://talkjs.com/images/avatar-1.jpg",
welcomeMessage: "Hey there! How can I help?",
}),
}
);
const user1 = fetch(
`${basePath}/v1/${appId}/users/archiveConversationExampleUser1`,
{
method: "PUT",
headers: {
"Content-Type": "application/json",
Authorization: `Bearer ${secretKey}`,
},
body: JSON.stringify({
name: "Sebastian",
email: ["[email protected]"],
role: "default",
photoUrl: "https://talkjs.com/images/avatar-5.jpg",
welcomeMessage: "Hi!",
}),
}
);
const user2 = fetch(
`${basePath}/v1/${appId}/users/archiveConversationExampleUser2`,
{
method: "PUT",
headers: {
"Content-Type": "application/json",
Authorization: `Bearer ${secretKey}`,
},
body: JSON.stringify({
name: "Bob",
email: ["[email protected]"],
role: "default",
photoUrl: "https://talkjs.com/images/avatar-4.jpg",
welcomeMessage: "Hello!",
}),
}
);
await supportAgent;
await user1;
await user2;
const conv1 = setupConversation(1);
const conv2 = setupConversation(2);
await conv1;
await conv2;
}
setup();