mirror of
https://git.rwth-aachen.de/acs/public/villas/web-backend-go/
synced 2025-03-30 00:00:12 +01:00
38 lines
993 B
Go
38 lines
993 B
Go
package simulationmodel
|
|
|
|
import (
|
|
"fmt"
|
|
"git.rwth-aachen.de/acs/public/villas/web-backend-go/helper"
|
|
"github.com/gin-gonic/gin"
|
|
|
|
"git.rwth-aachen.de/acs/public/villas/web-backend-go/database"
|
|
"git.rwth-aachen.de/acs/public/villas/web-backend-go/routes/scenario"
|
|
)
|
|
|
|
func CheckPermissions(c *gin.Context, operation database.CRUD, modelIDSource string, modelIDBody int) (bool, SimulationModel) {
|
|
|
|
var m SimulationModel
|
|
|
|
err := database.ValidateRole(c, database.ModelSimulationModel, operation)
|
|
if err != nil {
|
|
helper.UnprocessableEntityError(c, fmt.Sprintf("Access denied (role validation of simulation model failed): %v", err.Error()))
|
|
return false, m
|
|
}
|
|
|
|
modelID, err := helper.GetIDOfElement(c, "modelID", modelIDSource, modelIDBody)
|
|
if err != nil {
|
|
return false, m
|
|
}
|
|
|
|
err = m.ByID(uint(modelID))
|
|
if helper.DBError(c, err) {
|
|
return false, m
|
|
}
|
|
|
|
ok, _ := scenario.CheckPermissions(c, operation, "body", int(m.ScenarioID))
|
|
if !ok {
|
|
return false, m
|
|
}
|
|
|
|
return true, m
|
|
}
|