-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathusers.js
47 lines (38 loc) · 948 Bytes
/
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
const users = [];
//add user
const adduser = ({ id, username, room }) => {
username = username.trim().toLowerCase();
room = room.trim().toLowerCase();
if (!username || !room) {
return {
error: "Username and Room required"
};
}
const existingUsers = users.find(user => {
return user.room === room && user.username === username;
});
if (existingUsers) {
return {
error: "Username is in use"
};
}
const user = { id, username, room };
users.push(user);
return { user };
};
//removeuser
const removeuser = id => {
const index = users.findIndex(user => user.id === id);
if (index !== -1) {
return users.splice(index, 1)[0];
}
};
//getusers
const getUser = id => {
return users.find(user => user.id === id);
};
//getusersinroom
const getusersinroom = room => {
return users.find(user => user.room === room);
};
module.exports = { adduser, removeuser, getusersinroom, getUser };