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

com.sksamuel.elastic4s.handlers.index.AnalyzeResponseHandler.scala Maven / Gradle / Ivy

package com.sksamuel.elastic4s.handlers.index

import com.sksamuel.elastic4s.handlers.ElasticErrorParser
import com.sksamuel.elastic4s.requests.indexes.analyze.{AnalyzeResponse, ExplainAnalyzeResponse, NoExplainAnalyzeResponse}
import com.sksamuel.elastic4s.{ElasticError, HttpResponse, ResponseHandler}

object AnalyzeResponseHandler extends ResponseHandler[AnalyzeResponse] {
  /**
    * Accepts a HttpResponse and returns an Either of an ElasticError or a type specific to the request
    * as determined by the instance of this handler.
    */
  override def handle(response: HttpResponse): Either[ElasticError, AnalyzeResponse] = {
    response.statusCode match {
      case 200 | 201 | 202 | 203 | 204 =>
        val entity = response.entity.getOrElse(sys.error("No entity defined"))
        val jsonNode = ResponseHandler.json(entity)
        jsonNode.get("detail") match {
          case nonNull if nonNull != null =>
            Right(ResponseHandler.fromNode[ExplainAnalyzeResponse](jsonNode))
          case _ =>
            Right(ResponseHandler.fromNode[NoExplainAnalyzeResponse](jsonNode))
        }
      case _ =>
        Left(ElasticErrorParser.parse(response))
    }
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy