Fix account-editing bugs from real-world feedback, add editable group membership
- Edit form's Mobile Phone field was effectively required (stray validate
attribute) -- removed.
- Service account profiles always showed the literal filler name "Service
Account" -- hidden now, since it's not meaningful. Required computing
isServiceAccount in User.get(), not just listDetail().
- Fresh service accounts could look uncategorized (missing from the
Service Accounts tab, wrong isServiceAccount) for up to 5 minutes after
creation, due to a cache-staleness race in the create route -- the user
gets cached via User.get() before the route marks it as a service
account. Cleared and re-fetched after marking.
- memberOf came back as a bare string instead of a one-element array for
users in exactly one group, causing client-side permission checks to
iterate character-by-character and incorrectly deny access -- normalized
alongside the existing manager normalization.
- Added editable group membership on the profile page ("My groups"),
admin-only, using the existing per-group member endpoints.
Bumps to v1.1.8.
Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01KDEx8ghuZR61pqPXc6da9C
This commit is contained in:
@@ -210,10 +210,13 @@ const user_parse = function(data){
|
||||
data.isActive = data.pwdAccountLockedTime ? '' : 'active';
|
||||
data.isInactive = data.pwdAccountLockedTime ? 'inactive' : '';
|
||||
|
||||
// manager (COSINE, SUP distinguishedName) is multi-valued; ldapts returns
|
||||
// a bare string for a single value and an array for multiple -- normalize
|
||||
// to always be an array of DNs.
|
||||
data.manager = [].concat(data.manager || []).filter(Boolean);
|
||||
// manager (COSINE, SUP distinguishedName) and memberOf (from the memberof
|
||||
// overlay) are both multi-valued; ldapts returns a bare string for a
|
||||
// single value and an array for multiple -- normalize both to always be
|
||||
// an array, or app-base.js's `for(let group of user.memberOf)` silently
|
||||
// iterates a single DN string character-by-character instead of once.
|
||||
data.manager = [].concat(data.manager || []).filter(Boolean);
|
||||
data.memberOf = [].concat(data.memberOf || []).filter(Boolean);
|
||||
|
||||
return data;
|
||||
}
|
||||
@@ -348,6 +351,13 @@ User.get = async function(data, key) {
|
||||
|
||||
const verif = await UserVerification.getOrCreate(obj.uid);
|
||||
|
||||
// Same membership check as User.listDetail() -- see the comment there.
|
||||
try{
|
||||
const svcGroup = await Group.get('app_sso_service_account');
|
||||
const serviceAccountDNs = new Set((svcGroup.member || []).map(dn => dn.toLowerCase()));
|
||||
obj.isServiceAccount = serviceAccountDNs.has(String(obj.dn).toLowerCase()) ? 'yes' : '';
|
||||
}catch(error){ obj.isServiceAccount = ''; }
|
||||
|
||||
// Auto-flag legacy MD5 password users — persist so subsequent cache hits see it
|
||||
if (isLegacyMD5 && !verif.password_must_change) {
|
||||
await verif.update({ password_must_change: true });
|
||||
|
||||
Reference in New Issue
Block a user