-
Notifications
You must be signed in to change notification settings - Fork 0
/
presence.ts
295 lines (246 loc) · 9.13 KB
/
presence.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
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
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
import { v5 as uuid } from "jsr:@std/uuid@^1.0.0";
import { connect } from "jsr:@nats-io/[email protected]";
import type { NatsConnection } from "jsr:@nats-io/[email protected]";
const SERVERS = { servers: "127.0.0.1:4222" };
const ONLINE_TIMEOUT_SECONDS = 120;
const EXIST_TIMEOUT_SECONDS = 30 * 24 * 60 * 60;
const UUID_NAMESPACE = "6ba7b810-9dad-11d1-80b4-00c04fd430c8";
interface UserInfo {
sub: string;
presenceEpoch: number;
presenceDate: string;
presenceVisible: boolean;
statusVisible: boolean;
[key: string]: unknown;
}
const usersAll = new Map<string, UserInfo>();
// -----------------------------------------------------------------------------
// subPresenceUpdate: Add or update (if already exists) the user's info.
// -----------------------------------------------------------------------------
async function subPresenceUpdate(nc: NatsConnection) {
const sub = nc.subscribe("presence.update");
for await (const m of sub) {
try {
const userInfo = JSON.parse(m.string()) as UserInfo;
if (!userInfo?.sub) throw "not valid userInfo";
const presenceSub = new TextEncoder().encode(userInfo.sub);
const presenceId = await uuid.generate(UUID_NAMESPACE, presenceSub);
const time = new Date();
userInfo.presenceEpoch = time.getTime();
userInfo.presenceTime = time.toISOString();
if (userInfo.presenceVisible === undefined) {
userInfo.presenceVisible = true;
}
if (userInfo.statusVisible === undefined) {
userInfo.statusVisible = true;
}
usersAll.set(presenceId, userInfo);
} catch (e) {
console.error(e);
}
}
}
// -----------------------------------------------------------------------------
// subPresencePing: Update the last seen value of the user.
// -----------------------------------------------------------------------------
async function subPresencePing(nc: NatsConnection) {
const sub = nc.subscribe("presence.ping");
for await (const m of sub) {
try {
if (!m.string()) throw "not valid key";
const presenceSub = new TextEncoder().encode(m.string());
const presenceId = await uuid.generate(UUID_NAMESPACE, presenceSub);
const userInfo = usersAll.get(presenceId);
if (userInfo) {
const time = new Date();
userInfo.presenceEpoch = time.getTime();
userInfo.presenceTime = time.toISOString();
usersAll.set(presenceId, userInfo);
}
} catch (e) {
console.error(e);
}
}
}
// -----------------------------------------------------------------------------
// presenceVisibility
// -----------------------------------------------------------------------------
async function presenceVisibility(
nc: NatsConnection,
subject: string,
value: boolean,
) {
const sub = nc.subscribe(subject);
for await (const m of sub) {
try {
if (!m.string()) throw "not valid key";
const presenceSub = new TextEncoder().encode(m.string());
const presenceId = await uuid.generate(UUID_NAMESPACE, presenceSub);
const userInfo = usersAll.get(presenceId);
if (userInfo) {
userInfo.presenceVisible = value;
usersAll.set(presenceId, userInfo);
}
} catch (e) {
console.error(e);
}
}
}
// -----------------------------------------------------------------------------
// subPresenceHide: Hide the user, unset presenceVisible
// -----------------------------------------------------------------------------
async function subPresenceHide(nc: NatsConnection) {
await presenceVisibility(nc, "presence.hide", false);
}
// -----------------------------------------------------------------------------
// subPresenceUnhide: Unhide the user, set presenceVisible
// -----------------------------------------------------------------------------
async function subPresenceUnhide(nc: NatsConnection) {
await presenceVisibility(nc, "presence.unhide", true);
}
// -----------------------------------------------------------------------------
// statusVisibility
// -----------------------------------------------------------------------------
async function statusVisibility(
nc: NatsConnection,
subject: string,
value: boolean,
) {
const sub = nc.subscribe(subject);
for await (const m of sub) {
try {
if (!m.string()) throw "not valid key";
const presenceSub = new TextEncoder().encode(m.string());
const presenceId = await uuid.generate(UUID_NAMESPACE, presenceSub);
const userInfo = usersAll.get(presenceId);
if (userInfo) {
userInfo.statusVisible = value;
usersAll.set(presenceId, userInfo);
}
} catch (e) {
console.error(e);
}
}
}
// -----------------------------------------------------------------------------
// subStatusHide: Hide the user status, unset statusVisible
// -----------------------------------------------------------------------------
async function subStatusHide(nc: NatsConnection) {
await statusVisibility(nc, "presence.hide_status", false);
}
// -----------------------------------------------------------------------------
// subStatusUnhide: Unhide the user status, set statusVisible
// -----------------------------------------------------------------------------
async function subStatusUnhide(nc: NatsConnection) {
await statusVisibility(nc, "presence.unhide_status", true);
}
// -----------------------------------------------------------------------------
// replyPresenceAll: Return the list of all users.
// -----------------------------------------------------------------------------
async function replyPresenceAll(nc: NatsConnection) {
const sub = nc.subscribe("presence.all");
for await (const m of sub) {
try {
const users = [] as UserInfo[];
let lastSeenSecond = Date.now() - EXIST_TIMEOUT_SECONDS * 1000;
const input = m.string();
if (input && input.match(/^\d+$/)) {
lastSeenSecond = Date.now() - Number(input) * 1000;
}
usersAll.forEach((user, _k) => {
if (
user.presenceVisible &&
user.presenceEpoch > lastSeenSecond
) {
users.push(user);
}
});
m.respond(JSON.stringify(users));
} catch (e) {
console.error(e);
}
}
}
// -----------------------------------------------------------------------------
// replyPresenceOnline: Return the list of online users.
// -----------------------------------------------------------------------------
async function replyPresenceOnline(nc: NatsConnection) {
const sub = nc.subscribe("presence.online");
for await (const m of sub) {
try {
const users = [] as UserInfo[];
let lastSeenSecond = Date.now() - ONLINE_TIMEOUT_SECONDS * 1000;
const input = m.string();
if (input && input.match(/^\d+$/)) {
lastSeenSecond = Date.now() - Number(input) * 1000;
}
usersAll.forEach((user, _k) => {
if (
user.presenceVisible && user.statusVisible &&
user.presenceEpoch > lastSeenSecond
) {
users.push(user);
}
});
m.respond(JSON.stringify(users));
} catch (e) {
console.error(e);
}
}
}
// -----------------------------------------------------------------------------
// replyPresenceWhoami: Return the user info of a specific user.
// -----------------------------------------------------------------------------
async function replyPresenceWhoami(nc: NatsConnection) {
const sub = nc.subscribe("presence.whoami");
for await (const m of sub) {
try {
if (!m.string()) throw "not valid key";
const presenceSub = new TextEncoder().encode(m.string());
const presenceId = await uuid.generate(UUID_NAMESPACE, presenceSub);
m.respond(JSON.stringify(usersAll.get(presenceId)));
} catch (e) {
console.error(e);
}
}
}
// -----------------------------------------------------------------------------
// replyPresenceIsOnline: Return the online status of a specific user.
// -----------------------------------------------------------------------------
async function replyPresenceIsOnline(nc: NatsConnection) {
const sub = nc.subscribe("presence.isonline");
for await (const m of sub) {
try {
if (!m.string()) throw "not valid key";
const presenceSub = new TextEncoder().encode(m.string());
const presenceId = await uuid.generate(UUID_NAMESPACE, presenceSub);
const lastSeenSecond = Date.now() - ONLINE_TIMEOUT_SECONDS * 1000;
const userInfo = usersAll.get(presenceId);
if (
userInfo && userInfo.presenceVisible && userInfo.statusVisible &&
userInfo.presenceEpoch > lastSeenSecond
) {
m.respond(JSON.stringify(true));
continue;
}
m.respond(JSON.stringify(false));
} catch (e) {
console.error(e);
}
}
}
// -----------------------------------------------------------------------------
// main
// -----------------------------------------------------------------------------
const nc = await connect(SERVERS);
subPresenceUpdate(nc);
subPresencePing(nc);
subPresenceHide(nc);
subPresenceUnhide(nc);
subStatusHide(nc);
subStatusUnhide(nc);
replyPresenceAll(nc);
replyPresenceOnline(nc);
replyPresenceWhoami(nc);
replyPresenceIsOnline(nc);
await nc.closed();