mirror of
https://git.rwth-aachen.de/acs/public/villas/web-backend-go/
synced 2025-03-30 00:00:12 +01:00
60 lines
No EOL
1.4 KiB
Go
60 lines
No EOL
1.4 KiB
Go
package simulationmodel
|
|
|
|
import (
|
|
"github.com/gin-gonic/gin"
|
|
"net/http"
|
|
)
|
|
|
|
func SimulationModelsRegister(r *gin.RouterGroup) {
|
|
r.GET("/", simulationmodelsReadEp)
|
|
r.POST("/", simulationmodelRegistrationEp)
|
|
r.PUT("/:SimulationModelID", simulationmodelUpdateEp)
|
|
r.GET("/:SimulationModelID", simulationmodelReadEp)
|
|
r.DELETE("/:SimulationModelID", simulationmodelDeleteEp)
|
|
r.GET("/:SimulationModelID/cimfile", simulationmodelReadCIMfileEp)
|
|
r.PUT("/:SimulationModelID/cimfile", simulationmodelUpdateCIMfileEp)
|
|
}
|
|
|
|
func simulationmodelsReadEp(c *gin.Context) {
|
|
allSimulationModels, _, _ := FindAllSimulationModels()
|
|
serializer := SimulationModelsSerializerNoAssoc{c, allSimulationModels}
|
|
c.JSON(http.StatusOK, gin.H{
|
|
"simulationmodels": serializer.Response(),
|
|
})
|
|
}
|
|
|
|
func simulationmodelRegistrationEp(c *gin.Context) {
|
|
c.JSON(http.StatusOK, gin.H{
|
|
"message": "NOT implemented",
|
|
})
|
|
}
|
|
|
|
func simulationmodelUpdateEp(c *gin.Context) {
|
|
c.JSON(http.StatusOK, gin.H{
|
|
"message": "NOT implemented",
|
|
})
|
|
}
|
|
|
|
func simulationmodelReadEp(c *gin.Context) {
|
|
c.JSON(http.StatusOK, gin.H{
|
|
"message": "NOT implemented",
|
|
})
|
|
}
|
|
|
|
func simulationmodelDeleteEp(c *gin.Context) {
|
|
c.JSON(http.StatusOK, gin.H{
|
|
"message": "NOT implemented",
|
|
})
|
|
}
|
|
|
|
func simulationmodelReadCIMfileEp(c *gin.Context) {
|
|
c.JSON(http.StatusOK, gin.H{
|
|
"message": "NOT implemented",
|
|
})
|
|
}
|
|
|
|
func simulationmodelUpdateCIMfileEp(c *gin.Context) {
|
|
c.JSON(http.StatusOK, gin.H{
|
|
"message": "NOT implemented",
|
|
})
|
|
} |