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

smithy4s.http.internals.HttpResponseCodeSchemaVisitor.scala Maven / Gradle / Ivy

/*
 *  Copyright 2021-2024 Disney Streaming
 *
 *  Licensed under the Tomorrow Open Source Technology License, Version 1.0 (the "License");
 *  you may not use this file except in compliance with the License.
 *  You may obtain a copy of the License at
 *
 *     https://disneystreaming.github.io/TOST-1.0.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 smithy4s.http.internals

import smithy4s.capability.Contravariant
import smithy4s.Hints
import smithy4s.schema.{
  EnumTag,
  EnumValue,
  Primitive,
  Schema,
  Field,
  SchemaVisitor
}
import smithy4s.ShapeId
import smithy4s.http.internals.HttpResponseCodeSchemaVisitor.{
  NoResponseCode,
  OptionalResponseCode,
  ResponseCodeExtractor
}
import smithy4s.Refinement
import smithy4s.http.internals.HttpResponseCodeSchemaVisitor.RequiredResponseCode

class HttpResponseCodeSchemaVisitor()
    extends SchemaVisitor.Default[ResponseCodeExtractor] {
  def default[A]: ResponseCodeExtractor[A] = NoResponseCode
  override def primitive[P](
      shapeId: ShapeId,
      hints: Hints,
      tag: Primitive[P]
  ): ResponseCodeExtractor[P] = tag match {
    case Primitive.PInt =>
      if (hints.has[smithy.api.HttpResponseCode]) {
        HttpResponseCodeSchemaVisitor.int
      } else {
        NoResponseCode
      }
    case _ => NoResponseCode
  }

  override def enumeration[E](
      shapeId: ShapeId,
      hints: Hints,
      tag: EnumTag[E],
      values: List[EnumValue[E]],
      total: E => EnumValue[E]
  ): ResponseCodeExtractor[E] =
    tag match {
      case EnumTag.IntEnum() if hints.has[smithy.api.HttpResponseCode] =>
        Contravariant[ResponseCodeExtractor].contramap(
          HttpResponseCodeSchemaVisitor.int
        )(e => total(e).intValue)
      case _ =>
        NoResponseCode
    }

  override def struct[S](
      shapeId: ShapeId,
      hints: Hints,
      fields: Vector[Field[S, _]],
      make: IndexedSeq[Any] => S
  ): ResponseCodeExtractor[S] = {
    def compileField[A](
        field: Field[S, A]
    ): Option[ResponseCodeExtractor[S]] = {
      val aExt = apply(field.schema)
      val fieldExtractor: ResponseCodeExtractor[S] = {
        Contravariant[ResponseCodeExtractor].contramap(aExt)(field.get)
      }

      field.hints
        .get[smithy.api.HttpResponseCode]
        .map(_ => fieldExtractor)
    }
    fields.flatMap(f => compileField(f)).headOption.getOrElse(NoResponseCode)
  }

  override def option[A](
      schema: Schema[A]
  ): ResponseCodeExtractor[Option[A]] = {
    val aExt = apply(schema)
    aExt match {
      case NoResponseCode => NoResponseCode
      case RequiredResponseCode(f) =>
        OptionalResponseCode((_: Option[A]).map(f))
      case OptionalResponseCode(f) =>
        OptionalResponseCode((_: Option[A]).flatMap(f))
    }
  }

  override def biject[A, B](
      schema: smithy4s.schema.Schema[A],
      bijection: smithy4s.Bijection[A, B]
  ): ResponseCodeExtractor[B] = {
    val underlyingExtractor: ResponseCodeExtractor[A] = apply(schema)
    Contravariant[ResponseCodeExtractor].contramap(underlyingExtractor)(
      bijection.from
    )
  }

  override def refine[A, B](
      schema: Schema[A],
      refinement: Refinement[A, B]
  ): ResponseCodeExtractor[B] = {
    val underlyingExtractor: ResponseCodeExtractor[A] = apply(schema)
    Contravariant[ResponseCodeExtractor].contramap(underlyingExtractor)(
      refinement.from
    )
  }

}

object HttpResponseCodeSchemaVisitor {
  sealed trait ResponseCodeExtractor[-A] {
    def toFunction: A => Option[Int]
  }

  object NoResponseCode extends ResponseCodeExtractor[Any] {
    def apply(v1: Any): Option[Int] = None
    val toFunction: Any => Option[Int] = _ => None
  }
  case class RequiredResponseCode[A](f: A => Int)
      extends ResponseCodeExtractor[A] {
    def toFunction: A => Option[Int] = f andThen (Some(_))
  }
  case class OptionalResponseCode[A](f: A => Option[Int])
      extends ResponseCodeExtractor[A] {
    def toFunction: A => Option[Int] = f
  }

  implicit val contravariant: Contravariant[ResponseCodeExtractor] =
    new Contravariant[ResponseCodeExtractor]() {
      def contramap[A, B](
          fa: ResponseCodeExtractor[A]
      )(f: B => A): ResponseCodeExtractor[B] = {
        fa match {
          case NoResponseCode => NoResponseCode
          case RequiredResponseCode(g) =>
            RequiredResponseCode { b => g(f(b)) }
          case OptionalResponseCode(g) =>
            OptionalResponseCode { b => g(f(b)) }
        }
      }
    }

  val int: ResponseCodeExtractor[Int] = {
    RequiredResponseCode(identity)
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy