mirror of
https://github.com/opencloud-eu/opencloud.git
synced 2026-01-06 13:11:29 -05:00
73 lines
2.6 KiB
Go
73 lines
2.6 KiB
Go
package store
|
|
|
|
import (
|
|
settingsmsg "github.com/opencloud-eu/opencloud/protogen/gen/opencloud/messages/settings/v0"
|
|
"github.com/opencloud-eu/opencloud/services/settings/pkg/settings"
|
|
"github.com/opencloud-eu/opencloud/services/settings/pkg/util"
|
|
)
|
|
|
|
// ListPermissionsByResource collects all permissions from the provided roleIDs that match the requested resource
|
|
func (s *Store) ListPermissionsByResource(resource *settingsmsg.Resource, roleIDs []string) ([]*settingsmsg.Permission, error) {
|
|
records := make([]*settingsmsg.Permission, 0)
|
|
for _, roleID := range roleIDs {
|
|
role, err := s.ReadBundle(roleID)
|
|
if err != nil {
|
|
s.Logger.Debug().Str("roleID", roleID).Msg("role not found, skipping")
|
|
continue
|
|
}
|
|
records = append(records, extractPermissionsByResource(resource, role)...)
|
|
}
|
|
return records, nil
|
|
}
|
|
|
|
// ReadPermissionByID finds the permission in the roles, specified by the provided roleIDs
|
|
func (s *Store) ReadPermissionByID(permissionID string, roleIDs []string) (*settingsmsg.Permission, error) {
|
|
for _, roleID := range roleIDs {
|
|
role, err := s.ReadBundle(roleID)
|
|
if err != nil {
|
|
s.Logger.Debug().Str("roleID", roleID).Msg("role not found, skipping")
|
|
continue
|
|
}
|
|
for _, permission := range role.Settings {
|
|
if permission.Id == permissionID {
|
|
if value, ok := permission.Value.(*settingsmsg.Setting_PermissionValue); ok {
|
|
return value.PermissionValue, nil
|
|
}
|
|
}
|
|
}
|
|
}
|
|
return nil, nil
|
|
}
|
|
|
|
// ReadPermissionByName finds the permission in the roles, specified by the provided roleIDs
|
|
func (s *Store) ReadPermissionByName(name string, roleIDs []string) (*settingsmsg.Permission, error) {
|
|
for _, roleID := range roleIDs {
|
|
role, err := s.ReadBundle(roleID)
|
|
if err != nil {
|
|
s.Logger.Debug().Str("roleID", roleID).Msg("role not found, skipping")
|
|
continue
|
|
}
|
|
for _, permission := range role.Settings {
|
|
if permission.Name == name {
|
|
if value, ok := permission.Value.(*settingsmsg.Setting_PermissionValue); ok {
|
|
return value.PermissionValue, nil
|
|
}
|
|
}
|
|
}
|
|
}
|
|
return nil, settings.ErrNotFound
|
|
}
|
|
|
|
// extractPermissionsByResource collects all permissions from the provided role that match the requested resource
|
|
func extractPermissionsByResource(resource *settingsmsg.Resource, role *settingsmsg.Bundle) []*settingsmsg.Permission {
|
|
permissions := make([]*settingsmsg.Permission, 0)
|
|
for _, setting := range role.Settings {
|
|
if value, ok := setting.Value.(*settingsmsg.Setting_PermissionValue); ok {
|
|
if util.IsResourceMatched(setting.Resource, resource) {
|
|
permissions = append(permissions, value.PermissionValue)
|
|
}
|
|
}
|
|
}
|
|
return permissions
|
|
}
|