bottin-agenda/cmd/api.go
Victor Lacasse-Beaudoin fc49c3bfa9 Ajouter seed automatique de la base de données
Ajuster message d'erreur de dataClient.DB.Ping() dans apiCmd

Ajouter dataClient.Seed() à apiCmd

Ajouter IF NOT EXISTS à CREATE TABLE dans models.Schema
2023-06-29 19:05:40 -04:00

101 lines
2.3 KiB
Go
Raw Permalink Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

package cmd
import (
"crypto/subtle"
"fmt"
"log"
"git.agecem.com/agecem/bottin-agenda/data"
"git.agecem.com/agecem/bottin-agenda/handlers"
bottindata "git.agecem.com/agecem/bottin/v5/data"
"github.com/labstack/echo/v4"
"github.com/labstack/echo/v4/middleware"
"github.com/spf13/cobra"
"github.com/spf13/viper"
)
var (
apiPort int
apiKey string
)
// apiCmd represents the api command
var apiCmd = &cobra.Command{
Use: "api",
Short: "Démarrer le serveur API",
Args: cobra.ExactArgs(0),
Run: func(cmd *cobra.Command, args []string) {
// TODO migrer à viper.Unmarshal(&models.Config)
apiKey = viper.GetString("api.key")
apiPort = viper.GetInt("api.port")
bottinApiKey := viper.GetString("bottin.api.key")
bottinApiHost := viper.GetString("bottin.api.host")
bottinApiProtocol := viper.GetString("bottin.api.protocol")
bottinApiPort := viper.GetInt("bottin.api.port")
// Using bottin's API client
bottinConnection := bottindata.NewApiClient(
bottinApiKey,
bottinApiHost,
bottinApiProtocol,
bottinApiPort,
)
e := echo.New()
// Middlewares
e.Pre(middleware.AddTrailingSlash())
if apiKey != "" {
e.Use(middleware.KeyAuth(func(key string, c echo.Context) (bool, error) {
return subtle.ConstantTimeCompare([]byte(key), []byte(apiKey)) == 1, nil
}))
}
// Routes
e.POST("/v3/seed/", handlers.PostSeed)
e.GET("/v3/health/", handlers.GetHealth)
e.GET("/v3/transactions/", handlers.GetTransactions)
e.POST("/v3/transactions/", handlers.PostTransactions)
// Check bottin is ready
bottinHealthResponse, err := bottinConnection.GetHealth()
if err != nil {
log.Fatalf("[bottin] bottinConnection.GetHealth(): %s", err)
}
log.Println("[bottin] ok: ", bottinHealthResponse)
// Check database is ready
dataClient, err := data.NewDataClientFromViper()
if err != nil {
log.Fatalf("[bottin-agenda db] data.NewDataclientFromViper(): %s", err)
}
defer dataClient.DB.Close()
if err := dataClient.DB.Ping(); err != nil {
log.Fatalf("[bottin-agenda db] dataClient.DB.Ping() failed: %s", err)
} else {
log.Println("[bottin-agenda db] ok")
}
if _, err = dataClient.Seed(); err != nil {
log.Fatalf("[bottin-agenda db] dataClient.Seed() failed: %s", err)
}
// Execution
e.Logger.Fatal(e.Start(fmt.Sprintf(":%d", apiPort)))
},
}
func init() {
rootCmd.AddCommand(apiCmd)
}