Skip to content
Snippets Groups Projects
Commit 8d145037 authored by Tom Käsler's avatar Tom Käsler
Browse files

add api functionality to change session creator

parent 90e88dd2
No related merge requests found
...@@ -146,6 +146,15 @@ public class SessionController extends PaginationController { ...@@ -146,6 +146,15 @@ public class SessionController extends PaginationController {
return sessionService.updateSession(sessionkey, session); return sessionService.updateSession(sessionkey, session);
} }
@ApiOperation(value = "change the session creator (owner)", nickname = "changeSessionCreator")
@RequestMapping(value = "/{sessionkey}/changecreator", method = RequestMethod.PUT)
public Session changeSessionCreator(
@ApiParam(value = "session-key from current session", required = true) @PathVariable final String sessionkey,
@ApiParam(value = "new session creator", required = true) @RequestBody final String newCreator
) {
return sessionService.changeSessionCreator(sessionkey, newCreator);
}
@ApiOperation(value = "Retrieves a list of Sessions", @ApiOperation(value = "Retrieves a list of Sessions",
nickname = "getSessions") nickname = "getSessions")
@ApiResponses(value = { @ApiResponses(value = {
......
...@@ -1657,6 +1657,21 @@ public class CouchDBDao implements IDatabaseDao, ApplicationEventPublisherAware ...@@ -1657,6 +1657,21 @@ public class CouchDBDao implements IDatabaseDao, ApplicationEventPublisherAware
@Override @Override
@Caching(evict = { @CacheEvict("sessions"), @CacheEvict(cacheNames = "sessions", key = "#p0.keyword") }) @Caching(evict = { @CacheEvict("sessions"), @CacheEvict(cacheNames = "sessions", key = "#p0.keyword") })
public Session changeSessionCreator(Session session, final String newCreator) {
try {
final Document s = database.getDocument(session.get_id());
s.put("creator", newCreator);
database.saveDocument(s);
session.set_rev(s.getRev());
} catch (final IOException e) {
LOGGER.error("Could not lock session {}", session);
}
return session;
}
@Override
@Caching(evict = { @CacheEvict("sessions"), @CacheEvict(cacheNames="sessions", key="#p0.keyword") })
public void deleteSession(final Session session) { public void deleteSession(final Session session) {
try { try {
deleteDocument(session.get_id()); deleteDocument(session.get_id());
......
...@@ -143,6 +143,8 @@ public interface IDatabaseDao { ...@@ -143,6 +143,8 @@ public interface IDatabaseDao {
Session updateSession(Session session); Session updateSession(Session session);
Session changeSessionCreator(Session session, String newCreator);
void deleteSession(Session session); void deleteSession(Session session);
List<Question> getLectureQuestionsForUsers(Session session); List<Question> getLectureQuestionsForUsers(Session session);
......
...@@ -62,6 +62,8 @@ public interface ISessionService { ...@@ -62,6 +62,8 @@ public interface ISessionService {
Session updateSession(String sessionkey, Session session); Session updateSession(String sessionkey, Session session);
Session changeSessionCreator(String sessionkey, String newCreator);
Session updateSessionInternal(Session session, User user); Session updateSessionInternal(Session session, User user);
void deleteSession(String sessionkey); void deleteSession(String sessionkey);
......
...@@ -345,6 +345,16 @@ public class SessionService implements ISessionService, ApplicationEventPublishe ...@@ -345,6 +345,16 @@ public class SessionService implements ISessionService, ApplicationEventPublishe
return databaseDao.updateSession(existingSession); return databaseDao.updateSession(existingSession);
} }
@Override
@PreAuthorize("isAuthenticated() and hasPermission(1,'motd','admin')")
public Session changeSessionCreator(String sessionkey, String newCreator) {
final Session existingSession = databaseDao.getSessionFromKeyword(sessionkey);
if (existingSession == null) {
throw new RuntimeException("Error while trying to get the session with sessionkey: " + sessionkey);
}
return databaseDao.changeSessionCreator(existingSession, newCreator);
}
/* /*
* The "internal" suffix means it is called by internal services that have no authentication! * The "internal" suffix means it is called by internal services that have no authentication!
* TODO: Find a better way of doing this... * TODO: Find a better way of doing this...
......
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