mirror of
https://git.rwth-aachen.de/acs/public/villas/web-backend-go/
synced 2025-03-30 00:00:12 +01:00

- implementation of visualization and widget endpoints - some refactoring in permission checks
45 lines
1,015 B
Go
45 lines
1,015 B
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) (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
|
|
}
|
|
|
|
modelID, err := strconv.Atoi(c.Param("modelID"))
|
|
|
|
if err != nil {
|
|
errormsg := fmt.Sprintf("Bad request. No or incorrect format of model ID in path")
|
|
c.JSON(http.StatusBadRequest, gin.H{
|
|
"error": errormsg,
|
|
})
|
|
return false, m
|
|
}
|
|
|
|
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
|
|
}
|