mirror of
https://git.rwth-aachen.de/acs/public/villas/web-backend-go/
synced 2025-03-30 00:00:12 +01:00
58 lines
1.2 KiB
Go
58 lines
1.2 KiB
Go
package simulator
|
|
|
|
import (
|
|
"net/http"
|
|
|
|
"github.com/gin-gonic/gin"
|
|
|
|
"git.rwth-aachen.de/acs/public/villas/villasweb-backend-go/common"
|
|
)
|
|
|
|
func RegisterSimulatorEndpoints(r *gin.RouterGroup){
|
|
r.GET("/", GetSimulators)
|
|
r.POST("/", AddSimulator)
|
|
r.PUT("/:simulatorID", UpdateSimulator)
|
|
r.GET("/:simulatorID", GetSimulator)
|
|
r.DELETE("/:simulatorID", DeleteSimulator)
|
|
r.POST("/:simulatorID", SendActionToSimulator)
|
|
}
|
|
|
|
func GetSimulators(c *gin.Context) {
|
|
allSimulators, _, _ := FindAllSimulators()
|
|
serializer := common.SimulatorsSerializer{c, allSimulators}
|
|
c.JSON(http.StatusOK, gin.H{
|
|
"simulators": serializer.Response(),
|
|
})
|
|
}
|
|
|
|
func AddSimulator(c *gin.Context) {
|
|
c.JSON(http.StatusOK, gin.H{
|
|
"message": "NOT implemented",
|
|
})
|
|
}
|
|
|
|
func UpdateSimulator(c *gin.Context) {
|
|
c.JSON(http.StatusOK, gin.H{
|
|
"message": "NOT implemented",
|
|
})
|
|
}
|
|
|
|
func GetSimulator(c *gin.Context) {
|
|
c.JSON(http.StatusOK, gin.H{
|
|
"message": "NOT implemented",
|
|
})
|
|
}
|
|
|
|
func DeleteSimulator(c *gin.Context) {
|
|
c.JSON(http.StatusOK, gin.H{
|
|
"message": "NOT implemented",
|
|
})
|
|
}
|
|
|
|
func SendActionToSimulator(c *gin.Context) {
|
|
c.JSON(http.StatusOK, gin.H{
|
|
"message": "NOT implemented",
|
|
})
|
|
}
|
|
|
|
|