user list (?)

This commit is contained in:
hippoz 2020-11-21 12:08:32 +02:00
parent 6d6c4ebb61
commit 6018c3b610
4 changed files with 92 additions and 18 deletions

View file

@ -116,11 +116,57 @@ GatewayServer.prototype.eventSetup = function() {
if (socket.joinedCategories[v]) continue;
socket.joinedCategories[v] = category.title;
await socket.join(v);
console.log(`[*] [gateway] User ${socket.user.username} subscribed to room ${v} (${category.title}), sending updated user list to all members of that room...`);
this._gateway.in(v).emit('clientListUpdate', await this._generateClientListUpdateObject(v, category.title));
}
}
});
socket.on('disconnecting', async () => {
console.log(`[*] [gateway] User ${socket.user.username} is disconnecting, broadcasting updated user list to all of the rooms they have been in...`);
const rooms = socket.rooms;
rooms.forEach(async (room) => {
// Socket io automatically adds a user to a room with their own id
if (room === socket.id) return;
const categoryTitle = socket.joinedCategories[room] || 'UNKNOWN';
await socket.leave(room);
socket.in(room).emit('clientListUpdate', await this._generateClientListUpdateObject(room, categoryTitle));
});
});
});
});
};
GatewayServer.prototype._getSocketsInRoom = async function(room) {
const clients = this._gateway.in(room).sockets;
const updatedClientList = [];
clients.forEach((client) => {
if (!client.isConnected || !client.user) return;
updatedClientList.push({
user: {
username: client.user.username,
_id: client.user._id
}
});
});
return updatedClientList;
};
GatewayServer.prototype._generateClientListUpdateObject = async function(room, categoryTitle='UNKNOWN') {
const clientList = await this._getSocketsInRoom(room);
return {
category: {
title: categoryTitle,
_id: room
},
clientList
};
};
module.exports = GatewayServer;

View file

@ -57,16 +57,20 @@ app.post('/account/create', [
role: startingRole
});
res.status(200).json({
error: false,
message: 'SUCCESS_USER_CREATED',
user: {
const responseUserObject = {
_id: user._id,
username: user.username,
email: user.email,
role: user.role,
permissionLevel: config.roleMap[user.role]
}
};
console.log('[*] [logger] [users] [create] User created', responseUserObject);
res.status(200).json({
error: false,
message: 'SUCCESS_USER_CREATED',
user: responseUserObject
});
} catch (e) {
console.error('Internal server error', e);
@ -124,16 +128,20 @@ app.post('/token/create', [
});
}
res.status(200).json({
error: false,
message: 'SUCCESS_TOKEN_CREATED',
user: {
const responseUserObject = {
_id: existingUser._id,
username: existingUser.username,
email: existingUser.email,
role: existingUser.role,
permissionLevel: config.roleMap[existingUser.role]
},
};
console.log('[*] [logger] [users] [token create] Token created', responseUserObject);
res.status(200).json({
error: false,
message: 'SUCCESS_TOKEN_CREATED',
user: responseUserObject,
token
});
});

View file

@ -131,8 +131,12 @@
</md-toolbar>
<md-toolbar v-show="selection.category.browsing" class="md-dense" md-elevation="5">
<h3 v-if="selection.category.isCategory" class="md-title" style="flex: 1">Browsing category: {{ selection.category.title }}</h3>
<h3 v-if="!selection.category.isCategory" class="md-title" style="flex: 1">Browsing {{ selection.category.title }}</h3>
<h3 v-if="selection.category.isCategory && !selection.category.isChatContext" class="md-title" style="flex: 1">Browsing category: {{ selection.category.title }}</h3>
<h3 v-if="!selection.category.isCategory && !selection.category.isChatContext" class="md-title" style="flex: 1">Browsing {{ selection.category.title }}</h3>
<h3 v-if="!selection.category.isCategory && selection.category.isChatContext" class="md-title" style="flex: 1">
Browsing {{ selection.category.title }} with
<a v-for="user in userLists[selection.category._id]" class="md-dense cursor" v-on:click="viewProfile(user.user._id)">{{ user.user.username }} </a>
</h3>
<md-button @click="browseCategories()" v-if="selection.category.isCategory || selection.category.isChatContext">Back</md-button>
<md-button @click="refresh()" v-if="!selection.category.isChatContext">Refresh</md-button>
</md-toolbar>

View file

@ -88,7 +88,7 @@ GatewayConnection.prototype.connect = function(token) {
this.onConnect('CONNECT_RECEIVED_HELLO');
console.log('[*] [gateway] [handshake] Assuming that server received yoo and that connection is completed.');
});
});
})
this.socket.on('error', (e) => {
console.log('[E] [gateway] Gateway error', e);
@ -124,7 +124,11 @@ GatewayConnection.prototype.sendMessage = function(categoryId, content) {
GatewayConnection.prototype.subscribeToCategoryChat = function(categoryId) {
if (!this.isConnected) return;
this.socket.emit('subscribe', [categoryId]);
const request = [categoryId];
console.log('[*] [gateway] Subscribing to channel(s)', request);
this.socket.emit('subscribe', request);
};
@ -175,6 +179,9 @@ const app = new Vue({
messages: {
'X': [ { username: 'NONEXISTENT_TEST_ACCOUNT', content: 'TEST MSG' } ]
},
userLists: {
'X': [ { username: 'NONEXISTENT_TEST_ACCOUNT', _id: 'INVALID_ID' } ]
},
message: {
typed: ''
}
@ -226,6 +233,10 @@ const app = new Vue({
this.gateway.socket.on('message', (e) => {
this.processMessage(e);
});
this.gateway.socket.on('clientListUpdate', (e) => {
console.log('[*] [gateway] Client list update', e);
this.processUserListUpdate(e);
});
},
processMessage: async function(messageObject) {
if (!this.messages[messageObject.category._id]) this.$set(this.messages, messageObject.category._id, []);
@ -256,6 +267,11 @@ const app = new Vue({
}
}
},
processUserListUpdate: async function(e) {
const { category, clientList } = e;
if (!this.userLists[category._id]) this.$set(this.userLists, category._id, []);
this.userLists[category._id] = clientList;
},
openChatForCategory: async function(categoryId) {
this.gateway.subscribeToCategoryChat(categoryId);