Skip to content
Snippets Groups Projects
Commit 044cea7c authored by Daniel Gerhardt's avatar Daniel Gerhardt
Browse files

Socket.IO solution now updates user's and creator's last activity in

CouchDB and visited sessions.
parent 7f550e0f
No related merge requests found
...@@ -20,6 +20,7 @@ ...@@ -20,6 +20,7 @@
package de.thm.arsnova.services; package de.thm.arsnova.services;
import java.util.List; import java.util.List;
import java.util.UUID;
import de.thm.arsnova.connector.model.Course; import de.thm.arsnova.connector.model.Course;
import de.thm.arsnova.entities.LoggedIn; import de.thm.arsnova.entities.LoggedIn;
...@@ -46,4 +47,6 @@ public interface ISessionService { ...@@ -46,4 +47,6 @@ public interface ISessionService {
int countSessions(List<Course> courses); int countSessions(List<Course> courses);
Session setActive(String sessionkey, Boolean lock); Session setActive(String sessionkey, Boolean lock);
Session joinSession(String keyword, UUID socketId);
} }
...@@ -26,6 +26,7 @@ import java.util.Comparator; ...@@ -26,6 +26,7 @@ import java.util.Comparator;
import java.util.HashMap; import java.util.HashMap;
import java.util.List; import java.util.List;
import java.util.Map; import java.util.Map;
import java.util.UUID;
import org.springframework.beans.factory.annotation.Autowired; import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service; import org.springframework.stereotype.Service;
...@@ -61,9 +62,36 @@ public class SessionService implements ISessionService { ...@@ -61,9 +62,36 @@ public class SessionService implements ISessionService {
this.databaseDao = newDatabaseDao; this.databaseDao = newDatabaseDao;
} }
@Override
@Authenticated
public final Session joinSession(final String keyword, UUID socketId) {
/* Socket.IO solution */
Session session = databaseDao.getSession(keyword);
User user = userService.getUser2SocketId(socketId);
userService.addUserToSessionBySocketId(socketId, keyword);
if (session.getCreator().equals(user.getUsername())) {
databaseDao.updateSessionOwnerActivity(session);
}
databaseDao.registerAsOnlineUser(user, session);
if (connectorClient != null && session.isCourseSession()) {
String courseid = session.getCourseId();
if (!connectorClient.getMembership(user.getUsername(), courseid).isMember()) {
throw new ForbiddenException();
}
}
return session;
}
@Override @Override
@Authenticated @Authenticated
public final Session joinSession(final String keyword) { public final Session joinSession(final String keyword) {
/* HTTP polling solution (legacy) */
userService.addCurrentUserToSessionMap(keyword); userService.addCurrentUserToSessionMap(keyword);
socketIoServer.reportActiveUserCountForSession(keyword); socketIoServer.reportActiveUserCountForSession(keyword);
...@@ -144,6 +172,8 @@ public class SessionService implements ISessionService { ...@@ -144,6 +172,8 @@ public class SessionService implements ISessionService {
@Override @Override
@Authenticated @Authenticated
public final LoggedIn registerAsOnlineUser(final User user, final String sessionkey) { public final LoggedIn registerAsOnlineUser(final User user, final String sessionkey) {
/* HTTP polling solution (legacy) */
Session session = this.joinSession(sessionkey); Session session = this.joinSession(sessionkey);
if (session == null) { if (session == null) {
return null; return null;
......
...@@ -103,7 +103,7 @@ public class ARSnovaSocketIOServer { ...@@ -103,7 +103,7 @@ public class ARSnovaSocketIOServer {
server.addEventListener("setSession", Session.class, new DataListener<Session>() { server.addEventListener("setSession", Session.class, new DataListener<Session>() {
@Override @Override
public void onData(SocketIOClient client, Session session, AckRequest ackSender) { public void onData(SocketIOClient client, Session session, AckRequest ackSender) {
userService.addUserToSessionBySocketId(client.getSessionId(), session.getKeyword()); sessionService.joinSession(session.getKeyword(), client.getSessionId());
reportActiveUserCountForSession(session.getKeyword()); reportActiveUserCountForSession(session.getKeyword());
reportSessionDataToClient(session.getKeyword(), client); reportSessionDataToClient(session.getKeyword(), client);
} }
...@@ -225,11 +225,9 @@ public class ARSnovaSocketIOServer { ...@@ -225,11 +225,9 @@ public class ARSnovaSocketIOServer {
* @param client * @param client
*/ */
public void reportSessionDataToClient(String sessionKey, SocketIOClient client) { public void reportSessionDataToClient(String sessionKey, SocketIOClient client) {
broadcastInSession(sessionKey, "updateActiveUserCount", sessionService.countActiveUsers(sessionKey));
de.thm.arsnova.entities.Feedback fb = feedbackService.getFeedback(sessionKey); de.thm.arsnova.entities.Feedback fb = feedbackService.getFeedback(sessionKey);
client.sendEvent("updateFeedback", fb.getValues()); client.sendEvent("updateFeedback", fb.getValues());
/* updateActiveUserCount does not need to be send since it is broadcasted
* after the client joined the session */
} }
public void reportUpdatedFeedbackForSession(String sessionKey) { public void reportUpdatedFeedbackForSession(String sessionKey) {
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment