All Downloads are FREE. Search and download functionalities are using the official Maven repository.

it.tidalwave.bluemarine2.metadata.cddb.impl.CddbResponse Maven / Gradle / Ivy

/*
 * #%L
 * *********************************************************************************************************************
 *
 * blueMarine2 - Semantic Media Center
 * http://bluemarine2.tidalwave.it - git clone https://[email protected]/tidalwave/bluemarine2-src.git
 * %%
 * Copyright (C) 2015 - 2017 Tidalwave s.a.s. (http://tidalwave.it)
 * %%
 *
 * *********************************************************************************************************************
 *
 * Licensed 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
 *
 *     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.
 *
 * *********************************************************************************************************************
 *
 * $Id$
 *
 * *********************************************************************************************************************
 * #L%
 */
package it.tidalwave.bluemarine2.metadata.cddb.impl;

import javax.annotation.Nonnull;
import java.util.Optional;
import java.util.function.Function;
import org.springframework.http.HttpStatus;
import org.springframework.http.ResponseEntity;
import it.tidalwave.bluemarine2.rest.RestException;
import it.tidalwave.bluemarine2.rest.RestResponse;
import lombok.extern.slf4j.Slf4j;

/***********************************************************************************************************************
 *
 * This class encapsulates a response from the CDDB API, including the requested datum - if available - and some
 * status codes.
 *
 * @author  Fabrizio Giudici ([email protected])
 * @version $Id: $
 *
 **********************************************************************************************************************/
@Slf4j
class CddbResponse extends RestResponse
  {
    /*******************************************************************************************************************
     *
     *
     ******************************************************************************************************************/
    public CddbResponse (final @Nonnull Optional datum, final @Nonnull String responseStatus)
      {
        super(datum, responseStatus);
      }

    /*******************************************************************************************************************
     *
     * Creates a {@code Response} containing a datum out of a {@link ResponseEntity} applying a parser. The parser
     * receives an XML DOM as the input - it typically uses XPath to extract information.
     *
     * @param        the type of the datum
     * @param response  the HTTP response
     * @param parser    the parser that produces the datum
     * @return          the {@code Response}
     *
     ******************************************************************************************************************/
    @Nonnull
    public static  CddbResponse of (final @Nonnull ResponseEntity response,
                                          final @Nonnull Function parser)
      {
        final int httpStatus = response.getStatusCodeValue();

        if (httpStatus != HttpStatus.OK.value())
          {
            throw new RestException("Unexpected HTTP status", response.getStatusCode());
          }

        final String responseStatus = response.getBody().split("\n")[0].split(",")[0].split(" ")[0];
        log.debug(">>>> responseStatus: {}", responseStatus);

        switch (responseStatus)
          {
            case "401":
              return new CddbResponse<>(Optional.empty(), responseStatus);

            case "210":
              return new CddbResponse<>(Optional.of(parser.apply(response.getBody())), responseStatus);

            default:
              throw new RestException("Unexpected response status", responseStatus);
          }
      }
  }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy