41 lines
1.2 KiB
Kotlin
41 lines
1.2 KiB
Kotlin
package dev.araozu
|
|
|
|
import dev.araozu.juego.Juego
|
|
import io.ktor.application.*
|
|
import io.ktor.http.*
|
|
import io.ktor.request.*
|
|
import io.ktor.response.*
|
|
import io.ktor.routing.*
|
|
|
|
data class InfoJuego(val id: String)
|
|
data class DataCrearJuego(val idUsuario: String)
|
|
|
|
fun Routing.crearJuego() {
|
|
|
|
post("/partida") {
|
|
var sigId = GestorJuegos.generarId()
|
|
while (GestorJuegos.juegos.containsKey(sigId)) {
|
|
sigId = GestorJuegos.generarId()
|
|
}
|
|
|
|
val juego = Juego(sigId)
|
|
GestorJuegos.juegos[sigId] = juego
|
|
|
|
call.respondText("{\"id\": \"$sigId\"}", contentType = ContentType.Application.Json)
|
|
}
|
|
|
|
post("/partida-join") {
|
|
val infoJuego = call.receive<InfoJuego>()
|
|
if (infoJuego.id.length != 6) {
|
|
call.respondText("{\"error\": \"ID invalido.\"}", contentType = ContentType.Application.Json)
|
|
}
|
|
|
|
if (GestorJuegos.juegos.containsKey(infoJuego.id)) {
|
|
call.respondText("{\"ok\": true}", contentType = ContentType.Application.Json)
|
|
} else {
|
|
call.respondText("{\"error\": \"El juego no existe\"}", contentType = ContentType.Application.Json)
|
|
}
|
|
}
|
|
|
|
}
|