/** * Licensed to Apereo under one or more contributor license * agreements. See the NOTICE file distributed with this work * for additional information regarding copyright ownership. * Apereo licenses this file to you under the Apache License, * Version 2.0 (the "License"); you may not use this file * except in compliance with the License. You may obtain a * copy of the License at the following location: * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, * software distributed under the License is distributed on an * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY * KIND, either express or implied. See the License for the * specific language governing permissions and limitations * under the License. */ package org.jasig.portlet.blackboardvcportlet.dao.impl; import java.util.regex.Matcher; import java.util.regex.Pattern; import org.apache.commons.lang.RandomStringUtils; import org.jasig.jpa.BaseJpaDao; import org.jasig.portlet.blackboardvcportlet.dao.ServerConfigurationDao; import org.joda.time.DateTimeZone; import org.springframework.stereotype.Repository; import org.springframework.transaction.annotation.Transactional; import com.elluminate.sas.BlackboardServerConfigurationResponse; @Repository public class ServerConfigurationDaoImpl extends BaseJpaDao implements ServerConfigurationDao { private static final Pattern DATE_TZ_PATTERN = Pattern.compile(".+ \\(.+, [^ ]+ ([^:]+):([^\\)]+)\\)"); @Override @Transactional public ServerConfigurationImpl createOrUpdateConfiguration(BlackboardServerConfigurationResponse configurationResponse) { ServerConfigurationImpl serverConfiguration = this.getServerConfiguration(); if (serverConfiguration == null) { serverConfiguration = new ServerConfigurationImpl(); } serverConfiguration.onUpdate(); if(serverConfiguration.getRandomCallbackUrl() == null) { //Create random callback URL for blackboard callback serverConfiguration.setRandomCallbackUrl(RandomStringUtils.randomAlphanumeric(20)); } serverConfiguration.setBoundaryTime(configurationResponse.getBoundaryTime()); serverConfiguration.setMaxAvailableTalkers(configurationResponse.getMaxAvailableTalkers()); serverConfiguration.setMaxAvailableCameras(configurationResponse.getMaxAvailableCameras()); serverConfiguration.setRaiseHandOnEnter(configurationResponse.isRaiseHandOnEnter()); serverConfiguration.setMayUseTelephony(configurationResponse.isMayUseTelephony()); serverConfiguration.setMayUseSecureSignOn(configurationResponse.isMayUseSecureSignOn()); serverConfiguration.setMustReserveSeats(configurationResponse.isMustReserveSeats()); final String timeZoneStr = configurationResponse.getTimeZone(); final Matcher tzMatcher = DATE_TZ_PATTERN.matcher(timeZoneStr); if (tzMatcher.matches()) { int hours = Integer.parseInt(tzMatcher.group(1)); int minutes = Integer.parseInt(tzMatcher.group(2)); final DateTimeZone tz = DateTimeZone.forOffsetHoursMinutes(hours, minutes); serverConfiguration.setTimezone(tz); logger.debug("Parsed timezone string '{}' to {}", timeZoneStr, tz); } else { final DateTimeZone tz = DateTimeZone.getDefault(); serverConfiguration.setTimezone(tz); logger.warn("Failed to parse timezone string '{}' defaulting to {}", timeZoneStr, tz); } this.getEntityManager().persist(serverConfiguration); return serverConfiguration; } @Override public ServerConfigurationImpl getServerConfiguration() { return this.getEntityManager().find(ServerConfigurationImpl.class, ServerConfigurationImpl.CONFIG_ID); } @Override @Transactional public void deleteServerConfiguration() { ServerConfigurationImpl serverConfiguration = this.getServerConfiguration(); if (serverConfiguration != null) { this.getEntityManager().remove(serverConfiguration); } } }