User field mappings: Better support for entity references and multi-value fields

Created on 28 August 2020, over 4 years ago
Updated 15 March 2024, about 1 year ago

I know this has been discussed before with the provisioning of roles to groups, but what about simply mapping to an multivalue attribute. Currently, the Field Roles doesn't seem to do much of anything when provisioning to LDAP (the field has target_id not value). Would it make sense to add an exception to a map this field? Just as a real quick example:

LdapUserProcessor.php

if ($ldapAttributeName == 'dn' && $value) {
  $ldapUserEntry['dn'] = $value;
}
elseif($field_detail['user_attr'] == '[field.roles]') {
  $roles = $account->getRoles();
  $ldapUserEntry[$ldapAttributeName] = [];
  foreach($roles as $key => $value) {
    $ldapUserEntry[$ldapAttributeName][$key] = $value;
  }
}

Otherwise, i'm not sure how to store Drupal roles in LDAP other than maybe writing a hook for ldap_entry_pre_provision_alter.

✨ Feature request
Status

Closed: duplicate

Version

4.0

Component

Code

Created by

Live updates comments and jobs are added and updated live.
Sign in to follow issues

Comments & Activities

Not all content is available!

It's likely this issue predates Contrib.social: some issue and comment data are missing.

Production build 0.71.5 2024