mirror of
https://github.com/opencloud-eu/opencloud.git
synced 2026-04-23 04:28:48 -05:00
b174b005e7
Signed-off-by: jkoberg <jkoberg@owncloud.com>
49 lines
1.6 KiB
Go
49 lines
1.6 KiB
Go
package svc
|
|
|
|
import (
|
|
"fmt"
|
|
"net/http"
|
|
"net/url"
|
|
|
|
"github.com/go-chi/chi/v5"
|
|
"github.com/go-chi/render"
|
|
libregraph "github.com/owncloud/libre-graph-api-go"
|
|
"github.com/owncloud/ocis/v2/services/graph/pkg/errorcode"
|
|
"github.com/owncloud/ocis/v2/services/graph/pkg/unifiedrole"
|
|
)
|
|
|
|
// GetRoleDefinitions a list of permission roles than can be used when sharing with users or groups
|
|
func (g Graph) GetRoleDefinitions(w http.ResponseWriter, r *http.Request) {
|
|
render.Status(r, http.StatusOK)
|
|
render.JSON(w, r, unifiedrole.GetBuiltinRoleDefinitionList())
|
|
}
|
|
|
|
// GetRoleDefinition a permission role than can be used when sharing with users or groups
|
|
func (g Graph) GetRoleDefinition(w http.ResponseWriter, r *http.Request) {
|
|
logger := g.logger.SubloggerWithRequestID(r.Context())
|
|
roleID, err := url.PathUnescape(chi.URLParam(r, "roleID"))
|
|
if err != nil {
|
|
logger.Debug().Err(err).Str("roleID", chi.URLParam(r, "roleID")).Msg("could not get roleID: unescaping is failed")
|
|
errorcode.InvalidRequest.Render(w, r, http.StatusBadRequest, "unescaping role id failed")
|
|
return
|
|
}
|
|
role, err := getRoleDefinition(roleID)
|
|
if err != nil {
|
|
logger.Debug().Str("roleID", roleID).Msg("could not get role: not found")
|
|
errorcode.ItemNotFound.Render(w, r, http.StatusNotFound, err.Error())
|
|
return
|
|
}
|
|
render.Status(r, http.StatusOK)
|
|
render.JSON(w, r, role)
|
|
}
|
|
|
|
func getRoleDefinition(roleID string) (*libregraph.UnifiedRoleDefinition, error) {
|
|
roleList := unifiedrole.GetBuiltinRoleDefinitionList()
|
|
for _, role := range roleList {
|
|
if role != nil && role.Id != nil && *role.Id == roleID {
|
|
return role, nil
|
|
}
|
|
}
|
|
return nil, fmt.Errorf("role not found")
|
|
}
|