DEVELOPMENT ENVIRONMENT

~liljamo/deck-builder

ref: 0bac8c541c72f5249c72284c0157157bca04e0ad deck-builder/api/main.go -rw-r--r-- 1.5 KiB
0bac8c54 — skye fix(client): despawn supply piles before spawning 1 year, 5 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
/*
 * This file is part of laurelin_api
 * Copyright (C) 2023 Jonni Liljamo <jonni@liljamo.com>
 *
 * Licensed under GPL-3.0-only.
 * See LICENSE for licensing information.
 */

package main

import (
	"api/db"
	"api/handlers"
	"api/middlewares"
	"log"
	"os"

	"github.com/gin-gonic/gin"
)

func main() {
	// stores various errors during startup
	var err error

	dbConnectionString := os.Getenv("GORM_DB_STRING")
	if dbConnectionString == "" {
		log.Fatal("environment variable 'GORM_DB_STRING' is not set")
	}

	err = db.Connect(dbConnectionString)
	if err != nil {
		log.Fatal(err)
	}

	db.Migrate()

	log.Print("creating router and launching API")
	router := createRouter()
	router.Run(":3000")
}

func createRouter() *gin.Engine {
	router := gin.Default()
	api := router.Group("/api")
	{
		api.GET("/info", handlers.Info)
		user := api.Group("/user")
		{
			user.POST("/", handlers.CreateUser)
			user.POST("/token", handlers.GenerateToken)
			user.GET("/:id", handlers.UserInfo)
			userp := user.Group("/_").Use(middlewares.Auth())
			{
				userp.GET("/:id", handlers.UserInfoP)
			}
		}
		game := api.Group("/game").Use(middlewares.Auth())
		{
			game.GET("/:id", handlers.GameDetails)
			game.GET("/forming", handlers.FormingGames)
			game.POST("/", handlers.CreateGame)
			game.PATCH("/:id/state", handlers.PatchGameState)
			game.GET("/my_games", handlers.MyGames)
			game.POST("/:id/join", handlers.JoinGame)
		}
		action := api.Group("/game/action").Use(middlewares.Auth())
		{
			action.POST("/", handlers.CreateAction)
		}
	}
	return router
}