fix(frontend): disable self password change if passwordProfile is read-only

Fixes: https://github.com/owncloud/enterprise/issues/6849
This commit is contained in:
Ralf Haferkamp
2024-08-19 16:46:39 +02:00
committed by Ralf Haferkamp
parent 47ea3e81b9
commit 346ae88213
2 changed files with 14 additions and 1 deletions

View File

@@ -0,0 +1,7 @@
Bugfix: Set capability response `disable_self_password_change` correctly
The capability value `disable_self_password_change` was not being set correctly
when `user.passwordProfile` is configured as a read-only attribute.
https://github.com/owncloud/ocis/pull/9853
https://github.com/owncloud/enterprise/issues/6849

View File

@@ -7,6 +7,7 @@ import (
"os"
"path"
"path/filepath"
"slices"
"strconv"
"github.com/owncloud/ocis/v2/ocis-pkg/capabilities"
@@ -81,6 +82,11 @@ func FrontendConfigFromStruct(cfg *config.Config, logger log.Logger) (map[string
readOnlyUserAttributes = cfg.ReadOnlyUserAttributes
}
changePasswordDisabled := !cfg.LDAPServerWriteEnabled
if slices.Contains(readOnlyUserAttributes, "user.passwordProfile") {
changePasswordDisabled = true
}
return map[string]interface{}{
"shared": map[string]interface{}{
"jwt_secret": cfg.TokenManager.JWTSecret,
@@ -218,7 +224,7 @@ func FrontendConfigFromStruct(cfg *config.Config, logger log.Logger) (map[string
"read_only_attributes": readOnlyUserAttributes,
"create_disabled": !cfg.LDAPServerWriteEnabled,
"delete_disabled": !cfg.LDAPServerWriteEnabled,
"change_password_self_disabled": !cfg.LDAPServerWriteEnabled,
"change_password_self_disabled": changePasswordDisabled,
},
},
"checksums": map[string]interface{}{