diff --git a/src/main/java/de/thm/arsnova/services/SessionService.java b/src/main/java/de/thm/arsnova/services/SessionService.java index 170c19c1146dacf348785b9a9a79e12ef32052b3..eb341b7b4ada4b6ce698c8bd8d887c9cae4231f3 100644 --- a/src/main/java/de/thm/arsnova/services/SessionService.java +++ b/src/main/java/de/thm/arsnova/services/SessionService.java @@ -232,21 +232,7 @@ public class SessionService implements ISessionService, ApplicationEventPublishe throw new ForbiddenException(); } } - if (session.getPpLogo() != null) { - if (session.getPpLogo().startsWith("http")) { - final String base64ImageString = imageUtils.encodeImageToString(session.getPpLogo()); - if (base64ImageString == null) { - throw new BadRequestException(); - } - session.setPpLogo(base64ImageString); - } - // base64 adds offset to filesize, formula taken from: http://en.wikipedia.org/wiki/Base64#MIME - final int fileSize = (int) ((session.getPpLogo().length() - 814) / 1.37); - if (fileSize > uploadFileSizeByte) { - LOGGER.error("Could not save file. File is too large with " + fileSize + " Byte."); - throw new PayloadTooLargeException(); - } - } + handleLogo(session); // set some default values LearningProgressOptions lpo = new LearningProgressOptions(); @@ -313,40 +299,25 @@ public class SessionService implements ISessionService, ApplicationEventPublishe @Override @PreAuthorize("isAuthenticated() and hasPermission(#session, 'owner')") public Session updateSession(final String sessionkey, final Session session) { - final Session existingSession = databaseDao.getSessionFromKeyword(sessionkey); - - existingSession.setActive(session.isActive()); - existingSession.setShortName(session.getShortName()); - existingSession.setPpAuthorName(session.getPpAuthorName()); - existingSession.setPpAuthorMail(session.getPpAuthorMail()); - existingSession.setShortName(session.getShortName()); - existingSession.setPpAuthorName(session.getPpAuthorName()); - existingSession.setPpFaculty(session.getPpFaculty()); - existingSession.setName(session.getName()); - existingSession.setPpUniversity(session.getPpUniversity()); - existingSession.setPpDescription(session.getPpDescription()); - existingSession.setPpLevel(session.getPpLevel()); - existingSession.setPpLicense(session.getPpLicense()); - existingSession.setPpSubject(session.getPpSubject()); - - if (session.getPpLogo() != null) { - if (session.getPpLogo().startsWith("http")) { - final String base64ImageString = imageUtils.encodeImageToString(session.getPpLogo()); - if (base64ImageString == null) { - throw new BadRequestException(); - } - existingSession.setPpLogo(base64ImageString); - } else { - existingSession.setPpLogo(session.getPpLogo()); - } - // base64 adds offset to filesize, formula taken from: http://en.wikipedia.org/wiki/Base64#MIME - final int fileSize = (int) ((existingSession.getPpLogo().length() - 814) / 1.37); - if (fileSize > uploadFileSizeByte) { - LOGGER.error("Could not save file. File is too large with " + fileSize + " Byte."); - throw new PayloadTooLargeException(); - } - } - + final Session existingSession = databaseDao.getSessionFromKeyword(sessionkey); + + existingSession.setActive(session.isActive()); + existingSession.setShortName(session.getShortName()); + existingSession.setPpAuthorName(session.getPpAuthorName()); + existingSession.setPpAuthorMail(session.getPpAuthorMail()); + existingSession.setShortName(session.getShortName()); + existingSession.setPpAuthorName(session.getPpAuthorName()); + existingSession.setPpFaculty(session.getPpFaculty()); + existingSession.setName(session.getName()); + existingSession.setPpUniversity(session.getPpUniversity()); + existingSession.setPpDescription(session.getPpDescription()); + existingSession.setPpLevel(session.getPpLevel()); + existingSession.setPpLicense(session.getPpLicense()); + existingSession.setPpSubject(session.getPpSubject()); + + handleLogo(session); + existingSession.setPpLogo(session.getPpLogo()); + return databaseDao.updateSession(existingSession); } @@ -443,4 +414,29 @@ public class SessionService implements ISessionService, ApplicationEventPublishe session.setFeatures(features); return databaseDao.updateSession(session).getFeatures(); } + + /** + * + * @param session + * @throws PayloadTooLargeException + * @throws BadRequestException + */ + private void handleLogo(Session session) { + if (session.getPpLogo() != null) { + if (session.getPpLogo().startsWith("http")) { + final String base64ImageString = imageUtils.encodeImageToString(session.getPpLogo()); + if (base64ImageString == null) { + throw new BadRequestException(); + } + session.setPpLogo(base64ImageString); + } + + // base64 adds offset to filesize, formula taken from: http://en.wikipedia.org/wiki/Base64#MIME + final int fileSize = (int) ((session.getPpLogo().length() - 814) / 1.37); + if (fileSize > uploadFileSizeByte) { + LOGGER.error("Could not save file. File is too large with " + fileSize + " Byte."); + throw new PayloadTooLargeException(); + } + } + } }