DEVELOPMENT ENVIRONMENT

~liljamo/deck-builder

ref: 420ec1c99b53468def2ac97b9e109c9fb5196262 deck-builder/sdbapi/handlers/patchgamestate.go -rw-r--r-- 1.3 KiB
420ec1c9Jonni Liljamo WIP(sdbclient): better UI system 1 year, 8 months ago
                                                                                
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
48
49
50
51
52
53
54
55
56
/*
 * This file is part of sdbapi
 * Copyright (C) 2023 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 PatchGameState(c *gin.Context) {
	id := c.Param("id")

	// Check if the game exists
	var game models.Game
	record := db.DbConn.Where("id = ?", id).First(&game)
	if record.Error != nil {
		c.JSON(http.StatusNotFound, gin.H{"error": apierror.GameNotFound})
		c.Abort()
		return
	}

	// Get the user who requested the patching, and verify that they are the game creator (p1)
	p1, _ := db.GetUserByEmail(c.GetString("email"))
	if game.P1 != p1.ID {
		c.JSON(http.StatusUnauthorized, gin.H{"error": apierror.NotAuthorized})
		c.Abort()
		return
	}

	var patchedGame models.Game
	if err := c.ShouldBindJSON(&patchedGame); err != nil {
		c.JSON(http.StatusBadRequest, gin.H{"error": apierror.InvalidInput})
		c.Abort()
		return
	}

	updatedRecord := db.DbConn.Model(&game).Update("state", patchedGame.State)
	if updatedRecord.Error != nil {
		c.JSON(http.StatusInternalServerError, gin.H{"error": apierror.GameStatePatchFailed})
		c.Abort()
		return
	}

	// Don't have anything to return
	c.JSON(http.StatusNoContent, nil)
}