1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
/*
* This file is part of sdbapi
* Copyright (C) 2022 Jonni Liljamo <jonni@liljamo.com>
*
* Licensed under GPL-3.0-only.
* See LICENSE for licensing information.
*/
package handlers
import (
"api/apierror"
"api/db"
"api/models"
"net/http"
"github.com/gin-gonic/gin"
)
func CreateGame(c *gin.Context) {
// Auth should match a registered user
// NOTE: Technically auth should always match a registered user, but just in-case.
var p1 models.User
user, err := db.GetUserByEmail(c.GetString("email"))
if err != nil {
c.JSON(http.StatusUnauthorized, gin.H{"error": apierror.NotAuthorized})
c.Abort()
return
} else {
p1 = user
}
var game models.Game
game.P1 = p1.ID
game.State = models.GAMESTATE_FORMING
entry := db.DbConn.Create(&game)
if entry.Error != nil {
c.JSON(http.StatusInternalServerError, gin.H{"error": apierror.GameCreationFailed})
c.Abort()
return
}
c.JSON(http.StatusCreated, gin.H{"id": game.ID})
}