Rename routes to contain the prefix /api
This commit is contained in:
parent
7aa144369a
commit
07e1f0b679
@ -18,7 +18,7 @@ data class DatosLlamarSeq(
|
|||||||
|
|
||||||
fun Routing.juegows() {
|
fun Routing.juegows() {
|
||||||
|
|
||||||
webSocket("/juego") {
|
webSocket("/api/juego") {
|
||||||
|
|
||||||
for (frame in incoming) when (frame) {
|
for (frame in incoming) when (frame) {
|
||||||
is Frame.Text -> {
|
is Frame.Text -> {
|
||||||
|
@ -12,7 +12,7 @@ data class DataCrearJuego(val idUsuario: String)
|
|||||||
|
|
||||||
fun Routing.crearJuego() {
|
fun Routing.crearJuego() {
|
||||||
|
|
||||||
post("/partida") {
|
post("/api/partida") {
|
||||||
var sigId = GestorJuegos.generarId()
|
var sigId = GestorJuegos.generarId()
|
||||||
while (GestorJuegos.juegos.containsKey(sigId)) {
|
while (GestorJuegos.juegos.containsKey(sigId)) {
|
||||||
sigId = GestorJuegos.generarId()
|
sigId = GestorJuegos.generarId()
|
||||||
@ -24,7 +24,7 @@ fun Routing.crearJuego() {
|
|||||||
call.respondText("{\"id\": \"$sigId\"}", contentType = ContentType.Application.Json)
|
call.respondText("{\"id\": \"$sigId\"}", contentType = ContentType.Application.Json)
|
||||||
}
|
}
|
||||||
|
|
||||||
post("/partida-join") {
|
post("/api/partida-join") {
|
||||||
val infoJuego = call.receive<InfoJuego>()
|
val infoJuego = call.receive<InfoJuego>()
|
||||||
if (infoJuego.id.length != 6) {
|
if (infoJuego.id.length != 6) {
|
||||||
call.respondText("{\"error\": \"ID invalido.\"}", contentType = ContentType.Application.Json)
|
call.respondText("{\"error\": \"ID invalido.\"}", contentType = ContentType.Application.Json)
|
||||||
|
@ -11,13 +11,13 @@ data class UsuarioValidar(val nombreUsuario: String, val idUsuario: String)
|
|||||||
|
|
||||||
fun Routing.usuarios() {
|
fun Routing.usuarios() {
|
||||||
|
|
||||||
post("/usuario/crear") {
|
post("/api/usuario/crear") {
|
||||||
val nombreUsuario = call.receive<Usuario>().nombreUsuario
|
val nombreUsuario = call.receive<Usuario>().nombreUsuario
|
||||||
val idUsuario = GestorUsuarios.crearUsuario(nombreUsuario)
|
val idUsuario = GestorUsuarios.crearUsuario(nombreUsuario)
|
||||||
call.respondText("{\"id\": \"$idUsuario\"}", contentType = ContentType.Application.Json)
|
call.respondText("{\"id\": \"$idUsuario\"}", contentType = ContentType.Application.Json)
|
||||||
}
|
}
|
||||||
|
|
||||||
post("/usuario/validar") {
|
post("/api/usuario/validar") {
|
||||||
val datos = call.receive<UsuarioValidar>()
|
val datos = call.receive<UsuarioValidar>()
|
||||||
val nombreUsuarioValidado = GestorUsuarios.validarUsuario(datos.idUsuario)
|
val nombreUsuarioValidado = GestorUsuarios.validarUsuario(datos.idUsuario)
|
||||||
if (nombreUsuarioValidado != null) {
|
if (nombreUsuarioValidado != null) {
|
||||||
|
@ -11,7 +11,7 @@ data class ConexionNueva(val idJuego: String, val idUsuario: String)
|
|||||||
|
|
||||||
fun Routing.wssala() {
|
fun Routing.wssala() {
|
||||||
val gson = Gson()
|
val gson = Gson()
|
||||||
webSocket("/socket") {
|
webSocket("/api/socket") {
|
||||||
|
|
||||||
for (frame in incoming) {
|
for (frame in incoming) {
|
||||||
when (frame) {
|
when (frame) {
|
||||||
|
Loading…
Reference in New Issue
Block a user