SchedulerServiceRemoteImpl.java

/*
 * Licensed to The Apereo Foundation under one or more contributor license
 * agreements. See the NOTICE file distributed with this work for additional
 * information regarding copyright ownership.
 *
 *
 * The Apereo Foundation licenses this file to you under the Educational
 * Community 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:
 *
 *   http://opensource.org/licenses/ecl2.txt
 *
 * 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.opencastproject.scheduler.remote;

import static java.nio.charset.StandardCharsets.UTF_8;
import static org.apache.http.HttpStatus.SC_BAD_REQUEST;
import static org.apache.http.HttpStatus.SC_CONFLICT;
import static org.apache.http.HttpStatus.SC_CREATED;
import static org.apache.http.HttpStatus.SC_FORBIDDEN;
import static org.apache.http.HttpStatus.SC_NOT_FOUND;
import static org.apache.http.HttpStatus.SC_NO_CONTENT;
import static org.apache.http.HttpStatus.SC_OK;
import static org.apache.http.HttpStatus.SC_UNAUTHORIZED;

import org.opencastproject.mediapackage.MediaPackage;
import org.opencastproject.mediapackage.MediaPackageParser;
import org.opencastproject.metadata.dublincore.DublinCoreCatalog;
import org.opencastproject.metadata.dublincore.DublinCores;
import org.opencastproject.scheduler.api.Recording;
import org.opencastproject.scheduler.api.RecordingImpl;
import org.opencastproject.scheduler.api.SchedulerConflictException;
import org.opencastproject.scheduler.api.SchedulerException;
import org.opencastproject.scheduler.api.SchedulerService;
import org.opencastproject.scheduler.api.TechnicalMetadata;
import org.opencastproject.scheduler.api.TechnicalMetadataImpl;
import org.opencastproject.security.api.TrustedHttpClient;
import org.opencastproject.security.api.UnauthorizedException;
import org.opencastproject.serviceregistry.api.RemoteBase;
import org.opencastproject.serviceregistry.api.ServiceRegistry;
import org.opencastproject.util.DateTimeSupport;
import org.opencastproject.util.NotFoundException;
import org.opencastproject.util.UrlSupport;

import net.fortuna.ical4j.model.Period;
import net.fortuna.ical4j.model.property.RRule;

import org.apache.commons.lang3.BooleanUtils;
import org.apache.commons.lang3.StringUtils;
import org.apache.http.HttpResponse;
import org.apache.http.NameValuePair;
import org.apache.http.client.entity.UrlEncodedFormEntity;
import org.apache.http.client.methods.HttpDelete;
import org.apache.http.client.methods.HttpGet;
import org.apache.http.client.methods.HttpPost;
import org.apache.http.client.methods.HttpPut;
import org.apache.http.client.utils.URLEncodedUtils;
import org.apache.http.message.BasicNameValuePair;
import org.apache.http.util.EntityUtils;
import org.json.simple.JSONArray;
import org.json.simple.JSONObject;
import org.json.simple.parser.JSONParser;
import org.osgi.service.component.annotations.Component;
import org.osgi.service.component.annotations.Reference;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

import java.util.ArrayList;
import java.util.Collections;
import java.util.Date;
import java.util.HashMap;
import java.util.HashSet;
import java.util.List;
import java.util.Map;
import java.util.Map.Entry;
import java.util.Optional;
import java.util.Properties;
import java.util.Set;
import java.util.TimeZone;

/**
 * A proxy to a remote series service.
 */
@Component(
    immediate = true,
    service = SchedulerService.class,
    property = {
        "service.description=Scheduler Remote Service Proxy"
    }
)
public class SchedulerServiceRemoteImpl extends RemoteBase implements SchedulerService {

  private static final Logger logger = LoggerFactory.getLogger(SchedulerServiceRemoteImpl.class);

  /** A parser for handling JSON documents inside the body of a request. **/
  private final JSONParser parser = new JSONParser();

  public SchedulerServiceRemoteImpl() {
    super(JOB_TYPE);
  }

  @Override
  public void addEvent(Date startDateTime, Date endDateTime, String captureAgentId, Set<String> userIds,
          MediaPackage mediaPackage, Map<String, String> wfProperties, Map<String, String> caMetadata,
          Optional<String> schedulingSource) throws UnauthorizedException, SchedulerConflictException,
          SchedulerException {
    HttpPost post = new HttpPost("/");
    String eventId = mediaPackage.getIdentifier().toString();
    logger.debug("Start adding a new event {} through remote Schedule Service", eventId);

    List<BasicNameValuePair> params = new ArrayList<BasicNameValuePair>();
    params.add(new BasicNameValuePair("start", Long.toString(startDateTime.getTime())));
    params.add(new BasicNameValuePair("end", Long.toString(endDateTime.getTime())));
    params.add(new BasicNameValuePair("agent", captureAgentId));
    params.add(new BasicNameValuePair("users", StringUtils.join(userIds, ",")));
    params.add(new BasicNameValuePair("mediaPackage", MediaPackageParser.getAsXml(mediaPackage)));
    params.add(new BasicNameValuePair("wfproperties", toPropertyString(wfProperties)));
    params.add(new BasicNameValuePair("agentparameters", toPropertyString(caMetadata)));
    if (schedulingSource.isPresent())
      params.add(new BasicNameValuePair("source", schedulingSource.get()));
    post.setEntity(new UrlEncodedFormEntity(params, UTF_8));

    HttpResponse response = getResponse(post, SC_CREATED, SC_UNAUTHORIZED, SC_CONFLICT);
    try {
      if (response != null && SC_CREATED == response.getStatusLine().getStatusCode()) {
        logger.info("Successfully added event {} to the scheduler service", eventId);
        return;
      } else if (response != null && SC_CONFLICT == response.getStatusLine().getStatusCode()) {
        String errorJson = EntityUtils.toString(response.getEntity(), UTF_8);
        JSONObject json = (JSONObject) parser.parse(errorJson);
        JSONObject error = (JSONObject) json.get("error");
        String errorCode = (String) error.get("code");
        if (SchedulerConflictException.ERROR_CODE.equals(errorCode)) {
          logger.info("Conflicting events found when adding event {}", eventId);
          throw new SchedulerConflictException("Conflicting events found when adding event " + eventId);
        } else {
          throw new SchedulerException("Unexpected error code " + errorCode);
        }
      } else if (response != null && SC_UNAUTHORIZED == response.getStatusLine().getStatusCode()) {
        logger.info("Unauthorized to create the event");
        throw new UnauthorizedException("Unauthorized to create the event");
      } else {
        throw new SchedulerException("Unable to add event " + eventId + " to the scheduler service");
      }
    } catch (UnauthorizedException | SchedulerConflictException e) {
      throw e;
    } catch (Exception e) {
      throw new SchedulerException("Unable to add event " + eventId + " to the scheduler service", e);
    } finally {
      closeConnection(response);
    }
  }

  @Override
  public Map<String, Period> addMultipleEvents(RRule rRule, Date start, Date end, Long duration, TimeZone tz,
          String captureAgentId, Set<String> userIds, MediaPackage templateMp, Map<String, String> wfProperties,
          Map<String, String> caMetadata, Optional<String> schedulingSource)
          throws UnauthorizedException, SchedulerConflictException, SchedulerException {
    HttpPost post = new HttpPost("/");
    logger.debug("Start adding a new events through remote Schedule Service");

    List<BasicNameValuePair> params = new ArrayList<BasicNameValuePair>();
    params.add(new BasicNameValuePair("rrule", rRule.getValue()));
    params.add(new BasicNameValuePair("start", Long.toString(start.getTime())));
    params.add(new BasicNameValuePair("end", Long.toString(end.getTime())));
    params.add(new BasicNameValuePair("duration", Long.toString(duration)));
    params.add(new BasicNameValuePair("tz", tz.toZoneId().getId()));
    params.add(new BasicNameValuePair("agent", captureAgentId));
    params.add(new BasicNameValuePair("users", StringUtils.join(userIds, ",")));
    params.add(new BasicNameValuePair("templateMp", MediaPackageParser.getAsXml(templateMp)));
    params.add(new BasicNameValuePair("wfproperties", toPropertyString(wfProperties)));
    params.add(new BasicNameValuePair("agentparameters", toPropertyString(caMetadata)));
    if (schedulingSource.isPresent())
      params.add(new BasicNameValuePair("source", schedulingSource.get()));
    post.setEntity(new UrlEncodedFormEntity(params, UTF_8));

    String eventId = templateMp.getIdentifier().toString();

    HttpResponse response = getResponse(post, SC_CREATED, SC_UNAUTHORIZED, SC_CONFLICT);
    try {
      if (response != null && SC_CREATED == response.getStatusLine().getStatusCode()) {
        logger.info("Successfully added events to the scheduler service");
        return null;
      } else if (response != null && SC_CONFLICT == response.getStatusLine().getStatusCode()) {
        String errorJson = EntityUtils.toString(response.getEntity(), UTF_8);
        JSONObject json = (JSONObject) parser.parse(errorJson);
        JSONObject error = (JSONObject) json.get("error");
        String errorCode = (String) error.get("code");
        if (SchedulerConflictException.ERROR_CODE.equals(errorCode)) {
          logger.info("Conflicting events found when adding event based on {}", eventId);
          throw new SchedulerConflictException("Conflicting events found when adding event based on" + eventId);
        } else {
          throw new SchedulerException("Unexpected error code " + errorCode);
        }
      } else if (response != null && SC_UNAUTHORIZED == response.getStatusLine().getStatusCode()) {
        logger.info("Unauthorized to create the event");
        throw new UnauthorizedException("Unauthorized to create the event");
      } else {
        throw new SchedulerException("Unable to add event " + eventId + " to the scheduler service");
      }
    } catch (UnauthorizedException | SchedulerConflictException e) {
      throw e;
    } catch (Exception e) {
      throw new SchedulerException("Unable to add event " + eventId + " to the scheduler service", e);
    } finally {
      closeConnection(response);
    }
  }

  @Override
  public void updateEvent(String eventId, Optional<Date> startDateTime, Optional<Date> endDateTime, Optional<String> captureAgentId,
          Optional<Set<String>> userIds, Optional<MediaPackage> mediaPackage, Optional<Map<String, String>> wfProperties,
          Optional<Map<String, String>> caMetadata)
                  throws NotFoundException, UnauthorizedException, SchedulerConflictException, SchedulerException {

    updateEvent(eventId, startDateTime, endDateTime, captureAgentId, userIds,
                mediaPackage, wfProperties, caMetadata, false);
  }

  @Override
  public void updateEvent(String eventId, Optional<Date> startDateTime, Optional<Date> endDateTime, Optional<String> captureAgentId,
          Optional<Set<String>> userIds, Optional<MediaPackage> mediaPackage, Optional<Map<String, String>> wfProperties,
          Optional<Map<String, String>> caMetadata, boolean allowConflict)
                  throws NotFoundException, UnauthorizedException, SchedulerConflictException, SchedulerException {

    logger.debug("Start updating event {}.", eventId);
    HttpPut put = new HttpPut("/" + eventId);

    List<BasicNameValuePair> params = new ArrayList<BasicNameValuePair>();
    if (startDateTime.isPresent())
      params.add(new BasicNameValuePair("start", Long.toString(startDateTime.get().getTime())));
    if (endDateTime.isPresent())
      params.add(new BasicNameValuePair("end", Long.toString(endDateTime.get().getTime())));
    if (captureAgentId.isPresent())
      params.add(new BasicNameValuePair("agent", captureAgentId.get()));
    if (userIds.isPresent())
      params.add(new BasicNameValuePair("users", StringUtils.join(userIds.get(), ",")));
    if (mediaPackage.isPresent())
      params.add(new BasicNameValuePair("mediaPackage", MediaPackageParser.getAsXml(mediaPackage.get())));
    if (wfProperties.isPresent())
      params.add(new BasicNameValuePair("wfproperties", toPropertyString(wfProperties.get())));
    if (caMetadata.isPresent())
      params.add(new BasicNameValuePair("agentparameters", toPropertyString(caMetadata.get())));
    params.add(new BasicNameValuePair("allowConflict", BooleanUtils.toString(allowConflict, "true", "false", "false")));
    put.setEntity(new UrlEncodedFormEntity(params, UTF_8));

    HttpResponse response = getResponse(put, SC_OK, SC_NOT_FOUND, SC_UNAUTHORIZED, SC_FORBIDDEN, SC_CONFLICT);
    try {
      if (response != null) {
        if (SC_NOT_FOUND == response.getStatusLine().getStatusCode()) {
          logger.info("Event {} was not found by the scheduler service", eventId);
          throw new NotFoundException("Event '" + eventId + "' not found on remote scheduler service!");
        } else if (SC_OK == response.getStatusLine().getStatusCode()) {
          logger.info("Event {} successfully updated with capture agent metadata.", eventId);
          return;
        } else if (response != null && SC_CONFLICT == response.getStatusLine().getStatusCode()) {
          String errorJson = EntityUtils.toString(response.getEntity(), UTF_8);
          JSONObject json = (JSONObject) parser.parse(errorJson);
          JSONObject error = (JSONObject) json.get("error");
          String errorCode = (String) error.get("code");
          if (SchedulerConflictException.ERROR_CODE.equals(errorCode)) {
            logger.info("Conflicting events found when updating event {}", eventId);
            throw new SchedulerConflictException("Conflicting events found when updating event " + eventId);
          } else {
            throw new SchedulerException("Unexpected error code " + errorCode);
          }
        } else if (SC_UNAUTHORIZED == response.getStatusLine().getStatusCode()) {
          logger.info("Unauthorized to update the event {}.", eventId);
          throw new UnauthorizedException("Unauthorized to update the event " + eventId);
        } else if (SC_FORBIDDEN == response.getStatusLine().getStatusCode()) {
          logger.info("Forbidden to update the event {}.", eventId);
          throw new SchedulerException("Event with specified ID cannot be updated");
        } else {
          throw new SchedulerException("Unexpected status code " + response.getStatusLine());
        }
      }
    } catch (NotFoundException | SchedulerConflictException | UnauthorizedException e) {
      throw e;
    } catch (Exception e) {
      throw new SchedulerException("Unable to update event " + eventId + " to the scheduler service", e);
    } finally {
      closeConnection(response);
    }
    throw new SchedulerException("Unable to update  event " + eventId);
  }

  @Override
  public void removeEvent(String eventId) throws NotFoundException, UnauthorizedException, SchedulerException {
    logger.debug("Start removing event {} from scheduling service.", eventId);
    HttpDelete delete = new HttpDelete("/" + eventId);

    HttpResponse response = getResponse(delete, SC_OK, SC_NOT_FOUND, SC_UNAUTHORIZED, SC_CONFLICT);
    try {
      if (response != null && SC_NOT_FOUND == response.getStatusLine().getStatusCode()) {
        logger.info("Event {} was not found by the scheduler service", eventId);
        throw new NotFoundException("Event '" + eventId + "' not found on remote scheduler service!");
      } else if (response != null && SC_OK == response.getStatusLine().getStatusCode()) {
        logger.info("Event {} removed from scheduling service.", eventId);
        return;
      } else if (response != null && SC_UNAUTHORIZED == response.getStatusLine().getStatusCode()) {
        logger.info("Unauthorized to remove the event {}.", eventId);
        throw new UnauthorizedException("Unauthorized to remove the event " + eventId);
      }
    } catch (UnauthorizedException | NotFoundException e) {
      throw e;
    } catch (Exception e) {
      throw new SchedulerException("Unable to remove event " + eventId + " from the scheduler service", e);
    } finally {
      closeConnection(response);
    }
    throw new SchedulerException("Unable to remove  event " + eventId);
  }

  @Override
  public MediaPackage getMediaPackage(String eventId)
          throws NotFoundException, UnauthorizedException, SchedulerException {
    HttpGet get = new HttpGet(eventId.concat("/mediapackage.xml"));
    HttpResponse response = getResponse(get, SC_OK, SC_NOT_FOUND, SC_UNAUTHORIZED);
    try {
      if (response != null) {
        if (SC_NOT_FOUND == response.getStatusLine().getStatusCode()) {
          throw new NotFoundException("Event mediapackage '" + eventId + "' not found on remote scheduler service!");
        } else if (SC_UNAUTHORIZED == response.getStatusLine().getStatusCode()) {
          logger.info("Unauthorized to get mediapacakge of the event {}.", eventId);
          throw new UnauthorizedException("Unauthorized to get mediapackage of the event " + eventId);
        } else {
          MediaPackage mp = MediaPackageParser.getFromXml(EntityUtils.toString(response.getEntity(), UTF_8));
          logger.info("Successfully get event mediapackage {} from the remote scheduler service", eventId);
          return mp;
        }
      }
    } catch (NotFoundException e) {
      throw e;
    } catch (UnauthorizedException e) {
      throw e;
    } catch (Exception e) {
      throw new SchedulerException("Unable to parse event media package from remote scheduler service", e);
    } finally {
      closeConnection(response);
    }
    throw new SchedulerException("Unable to get event media package from remote scheduler service");
  }

  @Override
  public DublinCoreCatalog getDublinCore(String eventId)
          throws NotFoundException, UnauthorizedException, SchedulerException {
    HttpGet get = new HttpGet(eventId.concat("/dublincore.xml"));
    HttpResponse response = getResponse(get, SC_OK, SC_NOT_FOUND, SC_UNAUTHORIZED);
    try {
      if (response != null) {
        if (SC_NOT_FOUND == response.getStatusLine().getStatusCode()) {
          throw new NotFoundException("Event catalog '" + eventId + "' not found on remote scheduler service!");
        } else if (SC_UNAUTHORIZED == response.getStatusLine().getStatusCode()) {
          logger.info("Unauthorized to get dublincore of the event {}.", eventId);
          throw new UnauthorizedException("Unauthorized to get dublincore of the event " + eventId);
        } else {
          DublinCoreCatalog dublinCoreCatalog = DublinCores.read(response.getEntity().getContent());
          logger.info("Successfully get event dublincore {} from the remote scheduler service", eventId);
          return dublinCoreCatalog;
        }
      }
    } catch (NotFoundException | UnauthorizedException e) {
      throw e;
    } catch (Exception e) {
      throw new SchedulerException("Unable to parse event dublincore from remote scheduler service", e);
    } finally {
      closeConnection(response);
    }
    throw new SchedulerException("Unable to get event dublincore from remote scheduler service");
  }

  @Override
  public TechnicalMetadata getTechnicalMetadata(String eventId)
          throws NotFoundException, UnauthorizedException, SchedulerException {
    HttpGet get = new HttpGet(eventId.concat("/technical.json"));
    HttpResponse response = getResponse(get, SC_OK, SC_NOT_FOUND, SC_UNAUTHORIZED);
    try {
      if (response != null) {
        if (SC_NOT_FOUND == response.getStatusLine().getStatusCode()) {
          throw new NotFoundException("Event with id '" + eventId + "' not found on remote scheduler service!");
        } else if (SC_UNAUTHORIZED == response.getStatusLine().getStatusCode()) {
          logger.info("Unauthorized to get the technical metadata of the event {}.", eventId);
          throw new UnauthorizedException("Unauthorized to get the technical metadata of the event " + eventId);
        } else {
          String technicalMetadataJson = EntityUtils.toString(response.getEntity(), UTF_8);
          JSONObject json = (JSONObject) parser.parse(technicalMetadataJson);
          final String recordingId = (String) json.get("id");
          final Date start = new Date(DateTimeSupport.fromUTC((String) json.get("start")));
          final Date end = new Date(DateTimeSupport.fromUTC((String) json.get("end")));
          final String location = (String) json.get("location");

          final Set<String> presenters = new HashSet<>();
          JSONArray presentersArr = (JSONArray) json.get("presenters");
          for (int i = 0; i < presentersArr.size(); i++) {
            presenters.add((String) presentersArr.get(i));
          }

          final Map<String, String> wfProperties = new HashMap<>();
          JSONObject wfPropertiesObj = (JSONObject) json.get("wfProperties");
          Set<Entry<String, String>> entrySet = wfPropertiesObj.entrySet();
          for (Entry<String, String> entry : entrySet) {
            wfProperties.put(entry.getKey(), entry.getValue());
          }

          final Map<String, String> agentConfig = new HashMap<>();
          JSONObject agentConfigObj = (JSONObject) json.get("agentConfig");
          entrySet = agentConfigObj.entrySet();
          for (Entry<String, String> entry : entrySet) {
            agentConfig.put(entry.getKey(), entry.getValue());
          }

          String status = (String) json.get("state");
          String lastHeard = (String) json.get("lastHeardFrom");
          Recording recording = null;
          if (StringUtils.isNotBlank(status) && StringUtils.isNotBlank(lastHeard)) {
            recording = new RecordingImpl(recordingId, status, DateTimeSupport.fromUTC(lastHeard));
          }
          final Optional<Recording> recordingOpt = Optional.ofNullable(recording);
          logger.info("Successfully get the technical metadata of event '{}' from the remote scheduler service",
                  eventId);
          return new TechnicalMetadataImpl(recordingId, location, start, end, presenters, wfProperties,
                  agentConfig, recordingOpt);
        }
      }
    } catch (NotFoundException | UnauthorizedException e) {
      throw e;
    } catch (Exception e) {
      throw new SchedulerException("Unable to parse the technical metadata from remote scheduler service", e);
    } finally {
      closeConnection(response);
    }
    throw new SchedulerException("Unable to get the technical metadata from remote scheduler service");
  }

  @Override
  public Map<String, String> getWorkflowConfig(String eventId)
          throws NotFoundException, UnauthorizedException, SchedulerException {
    HttpGet get = new HttpGet(eventId.concat("/workflow.properties"));
    HttpResponse response = getResponse(get, SC_OK, SC_NOT_FOUND, SC_UNAUTHORIZED);
    try {
      if (response != null) {
        if (SC_NOT_FOUND == response.getStatusLine().getStatusCode()) {
          throw new NotFoundException(
                  "Event workflow configuration '" + eventId + "' not found on remote scheduler service!");
        } else if (SC_UNAUTHORIZED == response.getStatusLine().getStatusCode()) {
          logger.info("Unauthorized to get workflow config of the event {}.", eventId);
          throw new UnauthorizedException("Unauthorized to get workflow config of the event " + eventId);
        } else {
          Properties properties = new Properties();
          properties.load(response.getEntity().getContent());
          logger.info("Successfully get event workflow configuration {} from the remote scheduler service", eventId);
          return new HashMap<String, String>((Map) properties);
        }
      }
    } catch (NotFoundException | UnauthorizedException e) {
      throw e;
    } catch (Exception e) {
      throw new SchedulerException("Unable to parse event workflow configuration from remote scheduler service", e);
    } finally {
      closeConnection(response);
    }
    throw new SchedulerException("Unable to get event workflow configuration from remote scheduler service");
  }

  @Override
  public Map<String, String> getCaptureAgentConfiguration(String eventId)
          throws NotFoundException, UnauthorizedException, SchedulerException {
    HttpGet get = new HttpGet(eventId.concat("/agent.properties"));
    HttpResponse response = getResponse(get, SC_OK, SC_NOT_FOUND, SC_UNAUTHORIZED);
    try {
      if (response != null) {
        if (SC_NOT_FOUND == response.getStatusLine().getStatusCode()) {
          throw new NotFoundException(
                  "Event capture agent configuration '" + eventId + "' not found on remote scheduler service!");
        } else if (SC_UNAUTHORIZED == response.getStatusLine().getStatusCode()) {
          logger.info("Unauthorized to get capture agent config of the event {}.", eventId);
          throw new UnauthorizedException("Unauthorized to get capture agent config of the event " + eventId);
        } else {
          Properties properties = new Properties();
          properties.load(response.getEntity().getContent());
          logger.info("Successfully get event capture agent configuration {} from the remote scheduler service",
                  eventId);
          return new HashMap<String, String>((Map) properties);
        }
      }
    } catch (NotFoundException | UnauthorizedException e) {
      throw e;
    } catch (Exception e) {
      throw new SchedulerException(
              "Unable to parse event capture agent configuration from remote scheduler service", e);
    } finally {
      closeConnection(response);
    }
    throw new SchedulerException("Unable to get event capture agent configuration from remote scheduler service");
  }

  @Override
  public int getEventCount() throws SchedulerException, UnauthorizedException {
    final HttpGet get = new HttpGet(UrlSupport.concat("eventCount"));
    final HttpResponse response = getResponse(get, SC_OK, SC_UNAUTHORIZED);
    try {
      if (SC_UNAUTHORIZED == response.getStatusLine().getStatusCode()) {
        logger.info("Unauthorized to get event count");
        throw new UnauthorizedException("Unauthorized to get event count");
      }
      final String countString = EntityUtils.toString(response.getEntity(), UTF_8);
      return Integer.parseInt(countString);
    } catch (UnauthorizedException e) {
      throw e;
    } catch (Exception e) {
      throw new SchedulerException("Unable to get event count from remote scheduler service", e);
    } finally {
      closeConnection(response);
    }
  }

  @Override
  public String getScheduleLastModified(String agentId) throws SchedulerException {
    HttpGet get = new HttpGet(UrlSupport.concat(agentId, "lastmodified"));
    HttpResponse response = getResponse(get, SC_OK);
    try {
      if (response != null) {
        if (SC_OK == response.getStatusLine().getStatusCode()) {
          String agentHash = EntityUtils.toString(response.getEntity(), UTF_8);
          logger.info("Successfully get agent last modified hash of agent with id {} from the remote scheduler service",
                  agentId);
          return agentHash;
        }
      }
    } catch (Exception e) {
      throw new SchedulerException("Unable to get agent last modified hash from remote scheduler service", e);
    } finally {
      closeConnection(response);
    }
    throw new SchedulerException("Unable to get agent last modified hash from remote scheduler service");
  }

  @Override
  public List<MediaPackage> search(Optional<String> captureAgentId, Optional<Date> startsFrom, Optional<Date> startsTo,
          Optional<Date> endFrom, Optional<Date> endTo) throws UnauthorizedException, SchedulerException {
    List<NameValuePair> queryStringParams = new ArrayList<NameValuePair>();
    if (captureAgentId.isPresent()) {
      queryStringParams.add(new BasicNameValuePair("agent", captureAgentId.get()));
    }
    if (startsFrom.isPresent()) {
      queryStringParams.add(new BasicNameValuePair("startsfrom", Long.toString(startsFrom.get().getTime())));
    }
    if (startsTo.isPresent()) {
      queryStringParams.add(new BasicNameValuePair("startsto", Long.toString(startsTo.get().getTime())));
    }
    if (endFrom.isPresent()) {
      queryStringParams.add(new BasicNameValuePair("endsfrom", Long.toString(endFrom.get().getTime())));
    }
    if (endTo.isPresent()) {
      queryStringParams.add(new BasicNameValuePair("endsto", Long.toString(endTo.get().getTime())));
    }
    HttpGet get = new HttpGet("recordings.xml?".concat(URLEncodedUtils.format(queryStringParams, UTF_8)));
    HttpResponse response = getResponse(get, SC_OK, SC_UNAUTHORIZED);
    try {
      if (response != null) {
        if (SC_OK == response.getStatusLine().getStatusCode()) {
          String mediaPackageXml = EntityUtils.toString(response.getEntity(), UTF_8);
          List<MediaPackage> events = MediaPackageParser.getArrayFromXml(mediaPackageXml);
          logger.info("Successfully get recordings from the remote scheduler service");
          return events;
        } else if (SC_UNAUTHORIZED == response.getStatusLine().getStatusCode()) {
          logger.info("Unauthorized to search for events");
          throw new UnauthorizedException("Unauthorized to search for events");
        }
      }
    } catch (UnauthorizedException e) {
      throw e;
    } catch (Exception e) {
      throw new SchedulerException("Unable to get recordings from remote scheduler service", e);
    } finally {
      closeConnection(response);
    }
    throw new SchedulerException("Unable to get recordings from remote scheduler service");
  }

  @Override
  public Optional<MediaPackage> getCurrentRecording(String captureAgentId) throws SchedulerException, UnauthorizedException {
    HttpGet get = new HttpGet(UrlSupport.concat("currentRecording", captureAgentId));
    HttpResponse response = getResponse(get, SC_OK, SC_NO_CONTENT, SC_UNAUTHORIZED);
    try {
      if (SC_OK == response.getStatusLine().getStatusCode()) {
        String mediaPackageXml = EntityUtils.toString(response.getEntity(), UTF_8);
        MediaPackage event = MediaPackageParser.getFromXml(mediaPackageXml);
        logger.info("Successfully get current recording of agent {} from the remote scheduler service", captureAgentId);
        return Optional.of(event);
      } else if (SC_UNAUTHORIZED == response.getStatusLine().getStatusCode()) {
        logger.info("Unauthorized to get current recording of agent {}", captureAgentId);
        throw new UnauthorizedException("Unauthorized to get current recording of agent " + captureAgentId);
      } else {
        return Optional.empty();
      }
    } catch (UnauthorizedException e) {
      throw e;
    } catch (Exception e) {
      throw new SchedulerException("Unable to get current recording from remote scheduler service", e);
    } finally {
      closeConnection(response);
    }
  }

  @Override
  public Optional<MediaPackage> getUpcomingRecording(String captureAgentId) throws SchedulerException, UnauthorizedException {
    HttpGet get = new HttpGet(UrlSupport.concat("upcomingRecording", captureAgentId));
    HttpResponse response = getResponse(get, SC_OK, SC_NO_CONTENT, SC_UNAUTHORIZED);
    try {
      if (SC_OK == response.getStatusLine().getStatusCode()) {
        String mediaPackageXml = EntityUtils.toString(response.getEntity(), UTF_8);
        MediaPackage event = MediaPackageParser.getFromXml(mediaPackageXml);
        logger.info("Successfully get upcoming recording of agent {} from the remote scheduler service", captureAgentId);
        return Optional.of(event);
      } else if (SC_UNAUTHORIZED == response.getStatusLine().getStatusCode()) {
        logger.info("Unauthorized to get upcoming recording of agent {}", captureAgentId);
        throw new UnauthorizedException("Unauthorized to get upcoming recording of agent " + captureAgentId);
      } else {
        return Optional.empty();
      }
    } catch (UnauthorizedException e) {
      throw e;
    } catch (Exception e) {
      throw new SchedulerException("Unable to get upcoming recording from remote scheduler service", e);
    } finally {
      closeConnection(response);
    }
  }

  @Override
  public List<MediaPackage> findConflictingEvents(String captureDeviceID, Date startDate, Date endDate)
          throws UnauthorizedException, SchedulerException {
    List<NameValuePair> queryStringParams = new ArrayList<NameValuePair>();
    queryStringParams.add(new BasicNameValuePair("agent", captureDeviceID));
    queryStringParams.add(new BasicNameValuePair("start", Long.toString(startDate.getTime())));
    queryStringParams.add(new BasicNameValuePair("end", Long.toString(endDate.getTime())));
    HttpGet get = new HttpGet("conflicts.xml?".concat(URLEncodedUtils.format(queryStringParams, UTF_8)));
    HttpResponse response = getResponse(get, SC_OK, SC_NO_CONTENT);
    try {
      if (response != null) {
        if (SC_OK == response.getStatusLine().getStatusCode()) {
          String mediaPackageXml = EntityUtils.toString(response.getEntity(), UTF_8);
          List<MediaPackage> events = MediaPackageParser.getArrayFromXml(mediaPackageXml);
          logger.info("Successfully get conflicts from the remote scheduler service");
          return events;
        } else if (SC_UNAUTHORIZED == response.getStatusLine().getStatusCode()) {
          logger.info("Unauthorized to search for conflicting events");
          throw new UnauthorizedException("Unauthorized to search for conflicting events");
        } else if (SC_NO_CONTENT == response.getStatusLine().getStatusCode()) {
          return Collections.<MediaPackage> emptyList();
        }
      }
    } catch (UnauthorizedException e) {
      throw e;
    } catch (Exception e) {
      throw new SchedulerException("Unable to get conflicts from remote scheduler service", e);
    } finally {
      closeConnection(response);
    }
    throw new SchedulerException("Unable to get conflicts from remote scheduler service");
  }

  @Override
  public List<MediaPackage> findConflictingEvents(String captureAgentId, RRule rrule, Date startDate, Date endDate,
          long duration, TimeZone timezone) throws UnauthorizedException, SchedulerException {
    List<NameValuePair> queryStringParams = new ArrayList<NameValuePair>();
    queryStringParams.add(new BasicNameValuePair("agent", captureAgentId));
    queryStringParams.add(new BasicNameValuePair("rrule", rrule.getRecur().toString()));
    queryStringParams.add(new BasicNameValuePair("start", Long.toString(startDate.getTime())));
    queryStringParams.add(new BasicNameValuePair("end", Long.toString(endDate.getTime())));
    queryStringParams.add(new BasicNameValuePair("duration", Long.toString(duration)));
    queryStringParams.add(new BasicNameValuePair("timezone", timezone.getID()));
    HttpGet get = new HttpGet("conflicts.xml?".concat(URLEncodedUtils.format(queryStringParams, UTF_8)));
    HttpResponse response = getResponse(get, SC_OK, SC_NO_CONTENT);
    try {
      if (response != null) {
        if (SC_OK == response.getStatusLine().getStatusCode()) {
          String mediaPackageXml = EntityUtils.toString(response.getEntity(), UTF_8);
          List<MediaPackage> events = MediaPackageParser.getArrayFromXml(mediaPackageXml);
          logger.info("Successfully get conflicts from the remote scheduler service");
          return events;
        } else if (SC_UNAUTHORIZED == response.getStatusLine().getStatusCode()) {
          logger.info("Unauthorized to search for conflicting events");
          throw new UnauthorizedException("Unauthorized to search for conflicting events");
        } else if (SC_NO_CONTENT == response.getStatusLine().getStatusCode()) {
          return Collections.<MediaPackage> emptyList();
        }
      }
    } catch (UnauthorizedException e) {
      throw e;
    } catch (Exception e) {
      throw new SchedulerException("Unable to get conflicts from remote scheduler service", e);
    } finally {
      closeConnection(response);
    }
    throw new SchedulerException("Unable to get conflicts from remote scheduler service");
  }

  @Override
  public String getCalendar(Optional<String> captureAgentId, Optional<String> seriesId, Optional<Date> cutoff)
          throws SchedulerException {
    List<NameValuePair> queryStringParams = new ArrayList<NameValuePair>();
    if (captureAgentId.isPresent()) {
      queryStringParams.add(new BasicNameValuePair("agentid", captureAgentId.get()));
    }
    if (seriesId.isPresent()) {
      queryStringParams.add(new BasicNameValuePair("seriesid", seriesId.get()));
    }
    if (cutoff.isPresent()) {
      queryStringParams.add(new BasicNameValuePair("cutoff", Long.toString(cutoff.get().getTime())));
    }
    HttpGet get = new HttpGet("calendars?".concat(URLEncodedUtils.format(queryStringParams, UTF_8)));
    HttpResponse response = getResponse(get, SC_OK);
    try {
      if (response != null) {
        if (SC_OK == response.getStatusLine().getStatusCode()) {
          String calendar = EntityUtils.toString(response.getEntity(), UTF_8);
          logger.info("Successfully get calendar of agent with id {} from the remote scheduler service",
                  captureAgentId);
          return calendar;
        }
      }
    } catch (Exception e) {
      throw new SchedulerException("Unable to get calendar from remote scheduler service", e);
    } finally {
      closeConnection(response);
    }
    throw new SchedulerException("Unable to get calendar from remote scheduler service");
  }

  @Override
  public void removeScheduledRecordingsBeforeBuffer(long buffer) throws UnauthorizedException, SchedulerException {
    HttpPost post = new HttpPost("/removeOldScheduledRecordings");
    logger.debug("Start removing old schedules before buffer {} through remote Schedule Service", buffer);

    List<BasicNameValuePair> params = new ArrayList<BasicNameValuePair>();
    params.add(new BasicNameValuePair("buffer", Long.toString(buffer)));
    post.setEntity(new UrlEncodedFormEntity(params, UTF_8));

    HttpResponse response = getResponse(post, SC_OK, SC_UNAUTHORIZED);
    try {
      if (response != null && SC_OK == response.getStatusLine().getStatusCode()) {
        logger.info("Successfully started removing old schedules before butter {} to the scheduler service", buffer);
        return;
      } else if (SC_UNAUTHORIZED == response.getStatusLine().getStatusCode()) {
        logger.info("Unauthorized to remove old schedules before buffer {}.", buffer);
        throw new UnauthorizedException("Unauthorized to remove old schedules");
      }
    } catch (UnauthorizedException e) {
      throw e;
    } catch (Exception e) {
      throw new SchedulerException("Unable to remove old schedules from the scheduler service", e);
    } finally {
      closeConnection(response);
    }
    throw new SchedulerException("Unable to remove old schedules from the scheduler service");
  }

  @Override
  public boolean updateRecordingState(String mediapackageId, String state)
          throws NotFoundException, SchedulerException {
    HttpPut put = new HttpPut(UrlSupport.concat(mediapackageId, "recordingStatus"));

    List<BasicNameValuePair> params = new ArrayList<BasicNameValuePair>();
    params.add(new BasicNameValuePair("state", state));
    put.setEntity(new UrlEncodedFormEntity(params, UTF_8));

    HttpResponse response = getResponse(put, SC_OK, SC_NOT_FOUND, SC_BAD_REQUEST);
    try {
      if (response != null) {
        if (SC_NOT_FOUND == response.getStatusLine().getStatusCode()) {
          logger.warn("Event with mediapackage id {} was not found by the scheduler service", mediapackageId);
          throw new NotFoundException(
                  "Event with mediapackage id '" + mediapackageId + "' not found on remote scheduler service!");
        } else if (SC_BAD_REQUEST == response.getStatusLine().getStatusCode()) {
          logger.info("Unable to update event with mediapackage id {}, invalid recording state: {}.", mediapackageId,
                  state);
          return false;
        } else if (SC_OK == response.getStatusLine().getStatusCode()) {
          logger.info("Event with mediapackage id {} successfully updated with recording status.", mediapackageId);
          return true;
        } else {
          throw new SchedulerException("Unexpected status code " + response.getStatusLine());
        }
      }
    } catch (NotFoundException e) {
      throw e;
    } catch (Exception e) {
      throw new SchedulerException("Unable to update recording state of event with mediapackage id " + mediapackageId
              + " to the scheduler service", e);
    } finally {
      closeConnection(response);
    }
    throw new SchedulerException("Unable to update recording state of event with mediapackage id " + mediapackageId);
  }

  @Override
  public Recording getRecordingState(String id) throws NotFoundException, SchedulerException {
    HttpGet get = new HttpGet(UrlSupport.concat(id, "recordingStatus"));
    HttpResponse response = getResponse(get, SC_OK, SC_NOT_FOUND);
    try {
      if (response != null) {
        if (SC_OK == response.getStatusLine().getStatusCode()) {
          String recordingStateJson = EntityUtils.toString(response.getEntity(), UTF_8);
          JSONObject json = (JSONObject) parser.parse(recordingStateJson);
          String recordingId = (String) json.get("id");
          String status = (String) json.get("state");
          Long lastHeard = (Long) json.get("lastHeardFrom");
          logger.info("Successfully get calendar of agent with id {} from the remote scheduler service", id);
          return new RecordingImpl(recordingId, status, lastHeard);
        } else if (SC_NOT_FOUND == response.getStatusLine().getStatusCode()) {
          logger.warn("Event with mediapackage id {} was not found by the scheduler service", id);
          throw new NotFoundException("Event with mediapackage id '" + id + "' not found on remote scheduler service!");
        }
      }
    } catch (NotFoundException e) {
      throw e;
    } catch (Exception e) {
      throw new SchedulerException("Unable to get calendar from remote scheduler service", e);
    } finally {
      closeConnection(response);
    }
    throw new SchedulerException("Unable to get calendar from remote scheduler service");
  }

  @Override
  public void removeRecording(String eventId) throws NotFoundException, SchedulerException {
    HttpDelete delete = new HttpDelete(UrlSupport.concat(eventId, "recordingStatus"));

    HttpResponse response = getResponse(delete, SC_OK, SC_NOT_FOUND);
    try {
      if (response != null && SC_NOT_FOUND == response.getStatusLine().getStatusCode()) {
        logger.info("Event {} was not found by the scheduler service", eventId);
        throw new NotFoundException("Event '" + eventId + "' not found on remote scheduler service!");
      } else if (response != null && SC_OK == response.getStatusLine().getStatusCode()) {
        logger.info("Recording status of event {} removed from scheduling service.", eventId);
        return;
      }
    } catch (NotFoundException e) {
      throw e;
    } catch (Exception e) {
      throw new SchedulerException(
              "Unable to remove recording status of event " + eventId + " from the scheduler service", e);
    } finally {
      closeConnection(response);
    }
    throw new SchedulerException("Unable to remove  recording status of event " + eventId);
  }

  @Override
  public Map<String, Recording> getKnownRecordings() throws SchedulerException {
    HttpGet get = new HttpGet("recordingStatus");
    HttpResponse response = getResponse(get, SC_OK);
    try {
      if (response != null) {
        if (SC_OK == response.getStatusLine().getStatusCode()) {
          String recordingStates = EntityUtils.toString(response.getEntity(), UTF_8);
          JSONArray recordings = (JSONArray) parser.parse(recordingStates);
          Map<String, Recording> recordingsMap = new HashMap<String, Recording>();
          for (int i = 0; i < recordings.size(); i++) {
            JSONObject recording = (JSONObject) recordings.get(i);
            String recordingId = (String) recording.get("id");
            String status = (String) recording.get("state");
            Long lastHeard = (Long) recording.get("lastHeardFrom");
            recordingsMap.put(recordingId, new RecordingImpl(recordingId, status, lastHeard));
          }
          logger.info("Successfully get recording states from the remote scheduler service");
          return recordingsMap;
        }
      }
    } catch (Exception e) {
      throw new SchedulerException("Unable to get recording states from remote scheduler service", e);
    } finally {
      closeConnection(response);
    }
    throw new SchedulerException("Unable to get recording states from remote scheduler service");
  }

  private String toPropertyString(Map<String, String> properties) {
    StringBuilder wfPropertiesString = new StringBuilder();
    for (Map.Entry<String, String> entry : properties.entrySet())
      wfPropertiesString.append(entry.getKey() + "=" + entry.getValue() + "\n");
    return wfPropertiesString.toString();
  }

  @Reference
  @Override
  public void setTrustedHttpClient(TrustedHttpClient trustedHttpClient) {
    super.setTrustedHttpClient(trustedHttpClient);
  }
  @Reference
  @Override
  public void setRemoteServiceManager(ServiceRegistry serviceRegistry) {
    super.setRemoteServiceManager(serviceRegistry);
  }

}