emptygif
Idioma: Español

Todos los lenguajes y frameworks

http4k Kotlin

Un fragmento en Kotlin para http4k que responde a las peticiones a /pixel.gif con el GIF vacío, decodificado una sola vez al arrancar.

http4k Kotlin

Instalar
implementation("org.http4k:http4k-core:6.60.0.0")
Archivo
Pixel.kt
import org.http4k.core.Method.GET
import org.http4k.core.MemoryBody
import org.http4k.core.Response
import org.http4k.core.Status.Companion.OK
import org.http4k.routing.bind
import org.http4k.routing.routes
import org.http4k.server.SunHttp
import org.http4k.server.asServer
import java.util.Base64

private val GIF = Base64.getDecoder().decode("R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==")

val app = routes(
    "/pixel.gif" bind GET to {
        Response(OK)
            .header("Content-Type", "image/gif")
            .header("Cache-Control", "no-store")
            .body(MemoryBody(GIF))
    },
)

fun main() {
    app.asServer(SunHttp(8080)).start()
}

Ejecutamos este fragmento y comparamos los bytes que devolvió.

Comprobar

curl -sI http://localhost:8080/pixel.gif

Sitio oficial: http4k

Más en Kotlin