-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathecho.js
More file actions
120 lines (105 loc) · 3.22 KB
/
echo.js
File metadata and controls
120 lines (105 loc) · 3.22 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
import { WebSocket } from "ws";
class EchoBot {
constructor({ ws, http }) {
this.wsEndpoint = ws;
this.httpEndpoint = http;
this.socket = null;
this.botSession = null;
}
async connect() {
return new Promise((resolve, reject) => {
this.socket = new WebSocket(this.wsEndpoint);
this.socket.onopen = () => {
console.log("[bot.socket.open]");
const loginData = {
organization_id: process.env.BOT_ORGANIZATION_ID,
device_id: "EchoBot_device",
login: process.env.BOT_LOGIN,
password: process.env.BOT_PASSWORD,
};
fetch(`${this.httpEndpoint}/login`, {
method: "POST",
credentials: "include",
headers: { "Content-Type": "application/json" },
body: JSON.stringify(loginData),
})
.then(async (res) => {
const text = await res.text();
if (!res.ok) {
console.error("[bot.http.login.error]", text);
throw text || res.statusText;
}
const responseData = text ? JSON.parse(text) : {};
console.log("[bot.http.login.response]", responseData);
this.botSession = responseData;
if (responseData.access_token) {
try {
this.socket.send(
JSON.stringify({
request: {
connect: {
token: responseData.access_token,
device_id: loginData.device_id,
},
},
})
);
} catch (error) {
console.error("[bot.socket.connect.error]", err);
reject();
}
}
resolve();
})
.catch((err) => {
console.error("[bot.http.login.error]", err);
reject();
});
};
this.socket.onmessage = (e) => {
const message = JSON.parse(e.data);
console.log("[bot.socket.message]", message);
if (message.message) {
const botId = this.botSession.user._id;
const { _id, body, cid, attachments } = message.message;
this.socket.send(
JSON.stringify({
request: {
message_read: { cid },
id: "echoBot:markConversationAsRead",
},
})
);
const messageToSend = {
message: {
id: botId + Date.now(),
cid,
body: body ? "Echo: " + body : "",
attachments,
},
};
setTimeout(
() => this.socket.send(JSON.stringify(messageToSend)),
1000
);
return;
}
if (message.response?.user) {
this.botSession = message.response;
}
};
this.socket.onerror = (error) => {
console.log("[bot.socket.error]", error);
reject(error);
};
this.socket.onclose = () => {
console.log("[bot.socket.close]");
};
});
}
}
const echoBot = new EchoBot({
ws: process.env.SOCKET_SERVER_ENDPOINT,
http: process.env.HTTP_SERVER_ENDPOINT,
});
echoBot.connect();