reveil/api/gongs.go

92 lines
2.2 KiB
Go
Raw Normal View History

2022-10-02 21:24:53 +00:00
package api
import (
2022-10-04 10:44:59 +00:00
"fmt"
2022-10-02 21:24:53 +00:00
"net/http"
"github.com/gin-gonic/gin"
"git.nemunai.re/nemunaire/reveil/config"
2022-10-04 10:44:59 +00:00
"git.nemunai.re/nemunaire/reveil/model"
2022-10-02 21:24:53 +00:00
)
func declareGongsRoutes(cfg *config.Config, router *gin.RouterGroup) {
router.GET("/gongs", func(c *gin.Context) {
2022-10-04 10:44:59 +00:00
gongs, err := reveil.LoadGongs(cfg)
if err != nil {
c.AbortWithStatusJSON(http.StatusInternalServerError, gin.H{"errmsg": err.Error()})
return
}
2022-10-02 21:24:53 +00:00
2022-10-04 10:44:59 +00:00
c.JSON(http.StatusOK, gongs)
2022-10-02 21:24:53 +00:00
})
router.POST("/gongs", func(c *gin.Context) {
2022-10-04 10:44:59 +00:00
c.AbortWithStatusJSON(http.StatusNotImplemented, gin.H{"errmsg": "TODO"})
2022-10-02 21:24:53 +00:00
})
2022-10-04 10:44:59 +00:00
gongsRoutes := router.Group("/gongs/:tid")
gongsRoutes.Use(func(c *gin.Context) {
gongs, err := reveil.LoadGongs(cfg)
if err != nil {
c.AbortWithStatusJSON(http.StatusInternalServerError, gin.H{"errmsg": err.Error()})
return
}
2022-10-04 13:47:06 +00:00
for _, g := range gongs {
if g.Id.ToString() == c.Param("tid") {
c.Set("gong", g)
2022-10-04 10:44:59 +00:00
c.Next()
return
}
}
c.AbortWithStatusJSON(http.StatusNotFound, gin.H{"errmsg": "Gong not found"})
})
2022-10-02 21:24:53 +00:00
gongsRoutes.GET("", func(c *gin.Context) {
c.JSON(http.StatusOK, c.MustGet("gong"))
})
gongsRoutes.PUT("", func(c *gin.Context) {
2022-10-04 10:44:59 +00:00
oldgong := c.MustGet("gong").(*reveil.Gong)
var gong reveil.Gong
if err := c.ShouldBindJSON(&gong); err != nil {
c.AbortWithStatusJSON(http.StatusBadRequest, gin.H{"errmsg": err.Error()})
return
}
if gong.Name != oldgong.Name {
err := oldgong.Rename(gong.Name)
if err != nil {
c.AbortWithStatusJSON(http.StatusInternalServerError, gin.H{"errmsg": fmt.Sprintf("Unable to rename the gong: %s", err.Error())})
return
}
}
if gong.Enabled != oldgong.Enabled {
var err error
if gong.Enabled {
err = oldgong.SetDefault(cfg)
}
if err != nil {
c.AbortWithStatusJSON(http.StatusInternalServerError, gin.H{"errmsg": fmt.Sprintf("Unable to set the new default gong: %s", err.Error())})
return
}
}
c.JSON(http.StatusOK, oldgong)
2022-10-02 21:24:53 +00:00
})
gongsRoutes.DELETE("", func(c *gin.Context) {
2022-10-04 10:44:59 +00:00
gong := c.MustGet("gong").(*reveil.Gong)
2022-10-02 21:24:53 +00:00
2022-10-04 10:44:59 +00:00
err := gong.Remove()
if err != nil {
c.AbortWithStatusJSON(http.StatusInternalServerError, gin.H{"errmsg": fmt.Sprintf("Unable to remove the gong: %s", err.Error())})
return
}
2022-10-02 21:24:53 +00:00
2022-10-04 10:44:59 +00:00
c.JSON(http.StatusOK, nil)
})
2022-10-02 21:24:53 +00:00
}