2022-10-02 21:24:53 +00:00
|
|
|
package api
|
|
|
|
|
|
|
|
import (
|
2022-10-04 15:25:58 +00:00
|
|
|
"fmt"
|
2022-12-08 19:15:00 +00:00
|
|
|
"log"
|
2022-10-02 21:24:53 +00:00
|
|
|
"net/http"
|
|
|
|
|
|
|
|
"github.com/gin-gonic/gin"
|
|
|
|
|
|
|
|
"git.nemunai.re/nemunaire/reveil/config"
|
2022-10-04 15:25:58 +00:00
|
|
|
"git.nemunai.re/nemunaire/reveil/model"
|
2022-10-02 21:24:53 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
func declareActionsRoutes(cfg *config.Config, router *gin.RouterGroup) {
|
|
|
|
router.GET("/actions", func(c *gin.Context) {
|
2022-10-04 15:25:58 +00:00
|
|
|
actions, err := reveil.LoadActions(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 15:25:58 +00:00
|
|
|
c.JSON(http.StatusOK, actions)
|
2022-10-02 21:24:53 +00:00
|
|
|
})
|
|
|
|
router.POST("/actions", func(c *gin.Context) {
|
2022-10-04 15:25:58 +00:00
|
|
|
c.AbortWithStatusJSON(http.StatusNotImplemented, gin.H{"errmsg": "TODO"})
|
2022-10-02 21:24:53 +00:00
|
|
|
})
|
|
|
|
|
2022-10-04 15:25:58 +00:00
|
|
|
actionsRoutes := router.Group("/actions/:tid")
|
|
|
|
actionsRoutes.Use(func(c *gin.Context) {
|
|
|
|
actions, err := reveil.LoadActions(cfg)
|
|
|
|
if err != nil {
|
|
|
|
c.AbortWithStatusJSON(http.StatusInternalServerError, gin.H{"errmsg": err.Error()})
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, t := range actions {
|
|
|
|
if t.Id.ToString() == c.Param("tid") {
|
|
|
|
c.Set("action", t)
|
|
|
|
c.Next()
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
c.AbortWithStatusJSON(http.StatusNotFound, gin.H{"errmsg": "Action not found"})
|
|
|
|
})
|
2022-10-02 21:24:53 +00:00
|
|
|
|
|
|
|
actionsRoutes.GET("", func(c *gin.Context) {
|
|
|
|
c.JSON(http.StatusOK, c.MustGet("action"))
|
|
|
|
})
|
|
|
|
actionsRoutes.PUT("", func(c *gin.Context) {
|
2022-10-04 15:25:58 +00:00
|
|
|
oldaction := c.MustGet("action").(*reveil.Action)
|
|
|
|
|
|
|
|
var action reveil.Action
|
|
|
|
if err := c.ShouldBindJSON(&action); err != nil {
|
|
|
|
c.AbortWithStatusJSON(http.StatusBadRequest, gin.H{"errmsg": err.Error()})
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
if action.Name != oldaction.Name {
|
|
|
|
err := oldaction.Rename(action.Name)
|
|
|
|
if err != nil {
|
|
|
|
c.AbortWithStatusJSON(http.StatusInternalServerError, gin.H{"errmsg": fmt.Sprintf("Unable to rename the action: %s", err.Error())})
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if action.Enabled != oldaction.Enabled {
|
|
|
|
var err error
|
|
|
|
if action.Enabled {
|
|
|
|
err = oldaction.Enable()
|
|
|
|
} else {
|
|
|
|
err = oldaction.Disable()
|
|
|
|
}
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
c.AbortWithStatusJSON(http.StatusInternalServerError, gin.H{"errmsg": fmt.Sprintf("Unable to enable/disable the action: %s", err.Error())})
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
c.JSON(http.StatusOK, oldaction)
|
2022-10-02 21:24:53 +00:00
|
|
|
})
|
|
|
|
actionsRoutes.DELETE("", func(c *gin.Context) {
|
2022-10-04 15:25:58 +00:00
|
|
|
action := c.MustGet("action").(*reveil.Action)
|
2022-10-02 21:24:53 +00:00
|
|
|
|
2022-10-04 15:25:58 +00:00
|
|
|
err := action.Remove()
|
|
|
|
if err != nil {
|
|
|
|
c.AbortWithStatusJSON(http.StatusInternalServerError, gin.H{"errmsg": fmt.Sprintf("Unable to remove the action: %s", err.Error())})
|
|
|
|
return
|
|
|
|
}
|
2022-10-02 21:24:53 +00:00
|
|
|
|
2022-10-04 15:25:58 +00:00
|
|
|
c.JSON(http.StatusOK, nil)
|
|
|
|
})
|
2022-12-08 19:15:00 +00:00
|
|
|
|
|
|
|
actionsRoutes.POST("/run", func(c *gin.Context) {
|
|
|
|
action := c.MustGet("action").(*reveil.Action)
|
|
|
|
|
2023-11-04 09:04:29 +00:00
|
|
|
settings, err := reveil.ReadSettings(cfg.SettingsFile)
|
|
|
|
if err != nil {
|
|
|
|
c.AbortWithStatusJSON(http.StatusInternalServerError, gin.H{"errmsg": fmt.Sprintf("Unable to run the action: unable to read settings: %s", err.Error())})
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
cmd, err := action.Launch(settings)
|
2022-12-08 19:15:00 +00:00
|
|
|
if err != nil {
|
|
|
|
c.AbortWithStatusJSON(http.StatusInternalServerError, gin.H{"errmsg": fmt.Sprintf("Unable to run the action: %s", err.Error())})
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
go func() {
|
|
|
|
err := cmd.Wait()
|
|
|
|
if err != nil {
|
|
|
|
log.Printf("%q: %s", action.Name, err.Error())
|
|
|
|
}
|
|
|
|
}()
|
|
|
|
|
|
|
|
c.JSON(http.StatusOK, true)
|
|
|
|
})
|
2022-10-02 21:24:53 +00:00
|
|
|
}
|