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.5 KiB
Go
58 lines
1.5 KiB
Go
package simulationmodel
|
|
|
|
import (
|
|
"fmt"
|
|
"net/http"
|
|
"strconv"
|
|
|
|
"github.com/gin-gonic/gin"
|
|
|
|
"git.rwth-aachen.de/acs/public/villas/villasweb-backend-go/common"
|
|
"git.rwth-aachen.de/acs/public/villas/villasweb-backend-go/routes/simulation"
|
|
)
|
|
|
|
func CheckPermissions(c *gin.Context, operation common.CRUD, modelIDSource string, modelIDBody int) (bool, SimulationModel) {
|
|
|
|
var m SimulationModel
|
|
|
|
err := common.ValidateRole(c, common.ModelSimulationModel, operation)
|
|
if err != nil {
|
|
c.JSON(http.StatusUnprocessableEntity, "Access denied (role validation failed).")
|
|
return false, m
|
|
}
|
|
|
|
var modelID int
|
|
if modelIDSource == "path" {
|
|
modelID, err = strconv.Atoi(c.Param("modelID"))
|
|
if err != nil {
|
|
errormsg := fmt.Sprintf("Bad request. No or incorrect format of modelID path parameter")
|
|
c.JSON(http.StatusBadRequest, gin.H{
|
|
"error": errormsg,
|
|
})
|
|
return false, m
|
|
}
|
|
} else if modelIDSource == "query" {
|
|
modelID, err = strconv.Atoi(c.Request.URL.Query().Get("modelID"))
|
|
if err != nil {
|
|
errormsg := fmt.Sprintf("Bad request. No or incorrect format of modelID query parameter")
|
|
c.JSON(http.StatusBadRequest, gin.H{
|
|
"error": errormsg,
|
|
})
|
|
return false, m
|
|
}
|
|
} else if modelIDSource == "body" {
|
|
modelID = modelIDBody
|
|
}
|
|
|
|
err = m.ByID(uint(modelID))
|
|
if common.ProvideErrorResponse(c, err) {
|
|
return false, m
|
|
}
|
|
|
|
ok, _ := simulation.CheckPermissions(c, operation, "body", int(m.SimulationID))
|
|
if !ok {
|
|
return false, m
|
|
}
|
|
|
|
return true, m
|
|
}
|