fix(core): update

This commit is contained in:
Philipp Kunz 2019-06-10 17:46:06 +02:00
parent 8410e09a4d
commit cb80e4dc2e
3 changed files with 27 additions and 6 deletions

View File

@ -100,9 +100,10 @@ export class Universe {
(() => { (() => {
// TODO: properly add the connection // TODO: properly add the connection
const universeConnection = new UniverseConnection({ const universeConnection = new UniverseConnection({
authenticationRequest: socketConnection: socketConnectionArg,
authenticationRequests: []
}) })
this.universeConnectionManager.addConnection(); this.universeConnectionManager.addConnection(universeConnection);
})(); })();
} }
}); });

View File

@ -29,6 +29,7 @@ export class UniverseConnection {
socketConnection: plugins.smartsocket.SocketConnection; socketConnection: plugins.smartsocket.SocketConnection;
authenticationRequests authenticationRequests
}) { }) {
this.socketConnection, // TODO: check if this is correct
this.socketConnection.socket.disconnect();
} }
} }

View File

@ -10,20 +10,39 @@ export class UniverseConnectionManager {
public async addConnection(universeConnectionArg: UniverseConnection) { public async addConnection(universeConnectionArg: UniverseConnection) {
let universeConnection = universeConnectionArg; let universeConnection = universeConnectionArg;
universeConnection = await this.deduplicateUniverseConnection(universeConnection); universeConnection = await this.deduplicateUniverseConnection(universeConnection);
universeConnection = this.authenticateAuthenticationRequests(); universeConnection = await this.authenticateAuthenticationRequests(universeConnection);
} }
/** /**
* deduplicates UniverseConnections * deduplicates UniverseConnections
*/ */
public deduplicateUniverseConnection (universeConnectionArg: UniverseConnection): Promise<UniverseConnection> { public async deduplicateUniverseConnection (universeConnectionArg: UniverseConnection): Promise<UniverseConnection> {
let connectionToReturn: UniverseConnection;
this.connectionMap.forEach(async existingConnection => {
if (existingConnection.socketConnection = universeConnectionArg.socketConnection) {
connectionToReturn = await this.mergeUniverseConnections(existingConnection, universeConnectionArg);
}
});
if (!connectionToReturn) {
connectionToReturn = universeConnectionArg;
}
return connectionToReturn;
} }
/** /**
* authenticate AuthenticationRequests * authenticate AuthenticationRequests
*/ */
public authenticateAuthenticationRequests(universeConnectionArg) { public authenticateAuthenticationRequests(universeConnectionArg): Promise<UniverseConnection> {
// TODO: authenticate connections
return universeConnectionArg;
}
/**
* merges two UniverseConnections
*/
public mergeUniverseConnections (connectionArg1: UniverseConnection, connectionArg2: UniverseConnection) {
// TODO: merge connections
return connectionArg1;
} }
} }