name, l(t('edit'), 'admin/settings/ldapdata/edit/'. $row->sid), l(t('reset'), 'admin/settings/ldapdata/reset/'. $row->sid), ); } $header = array( t('LDAP Config'), array('data' => t('Operations'), 'colspan' => 2), ); return theme('table', $header, $rows); } /** * Implements the LDAP server edit page. * * @param $form_state * A form state array. * @param $op * An operatin - edit or reset. * @param $sid * A LDAP server ID. * * @return * The form structure. */ function ldapdata_admin_edit(&$form_state, $op, $sid) { if ($op == "reset" && $sid) { $form['sid'] = array( '#type' => 'value', '#value' => $sid, ); return confirm_form( $form, t('Are you sure you want to reset the fields mapping to defaults ?'), 'admin/settings/ldapdata', t('This action cannot be undone.

'), t('Reset'), t('Cancel') ); } elseif ($op == "edit" && $sid) { $row = db_fetch_array(db_query("SELECT ldapdata_mappings, ldapdata_roattrs, ldapdata_rwattrs, ldapdata_binddn, ldapdata_bindpw, ldapdata_bindpw_clear FROM {ldapauth} WHERE sid = %d", $sid)); $mappings = unserialize($row['ldapdata_mappings']); $roattrs = unserialize($row['ldapdata_roattrs']); $rwattrs = unserialize($row['ldapdata_rwattrs']); $binddn = $row['ldapdata_binddn']; $bindpw = $row['ldapdata_bindpw']; $bindpw_clear = $row['ldapdata_bindpw_clear']; // Attribute mapping. $form['ldap_attribute_mapping'] = array( '#type' => 'fieldset', '#title' => 'Drupal-LDAP fields mapping', '#description' => t('

PLEASE NOTE: advanced configuration for this module can be set by editing the module\'s config file, located at modules/ldap_integration/ldap_integration/ldapdata.conf.php in your Drupal install.

'), '#collapsible' => TRUE ); $form['ldap_attribute_mapping']['ldap_attr_mapping'] = array( '#type' => 'radios', '#title' => 'Should Drupal account fields be mapped to LDAP Attributes?', '#default_value' => $mappings['access'] ? $mappings['access'] : LDAPDATA_MAP_ATTRIBUTES, '#options' => array( LDAPDATA_MAP_ATTRIBUTES => t('Changes in account fields will be mapped to LDAP attributes and back.'), LDAPDATA_MAP_ATTRIBUTES_READ_ONLY => t('Same, but read-only mode.'), LDAPDATA_MAP_NOTHING => t('No attribute mapping will be done at all (Clears any existing mappings).'), ), ); $profile_fields = _ldapdata_retrieve_profile_fields(); $standard_fields = _ldapdata_retrieve_standard_user_fields(); $drupal_fields = $profile_fields + $standard_fields; $form['ldap_attribute_mapping']['ldap_drupal_reverse_mapping_pre'] = array( '#value' => t('
'), ); $ldap_drupal_reverse_mappings = _ldapdata_reverse_mappings($sid); foreach ($drupal_fields as $key => $field) { $field_tmp = "ldap_amap-". $key; $_prefix = "', ); } $form['ldap_attribute_mapping']['ldap_drupal_reverse_mappings_post'] = array( '#value' => '
Drupal fieldLDAP attribute
"; $form['ldap_attribute_mapping'][$field_tmp] = array( '#type' => 'textfield', //'#default_value' => $ldap_drupal_reverse_mappings[$key], '#default_value' => $mappings[$field_tmp], '#size' => '20', '#prefix' => $_prefix, '#suffix' => '
', ); // Attribute access control. $form["ldap_editable_attributes"] = array( '#type' => 'fieldset', '#title' => 'Attribute Visibility & Access Control', '#collapsible' => TRUE, '#description' => t('

Users may be able to view their LDAP attributes\' values, as well as edit them. You can configure this feature here.

'), '#tree' => TRUE, ); foreach (ldapdata_attributes() as $key => $field) { $fields[$key] = $field[2]; } $ro_status = $rw_status = array(); foreach ($fields as $attr => $attr_name) { $ro_options[$attr] = ''; $rw_options[$attr] = ''; if (!empty($roattrs) && (in_array($attr, $roattrs))) $ro_status[] = $attr; if (!empty($rwattrs) && (in_array($attr, $rwattrs))) $rw_status[] = $attr; $form['ldap_editable_attributes']['ldap_attr_table'][$attr] = array( '#value' => $attr_name, ); } $form['ldap_editable_attributes']['ro_status'] = array( '#type' => 'checkboxes', '#options' => $ro_options, '#default_value' => $ro_status, ); $form['ldap_editable_attributes']['rw_status'] = array( '#type' => 'checkboxes', '#options' => $rw_options, '#default_value' => $rw_status, ); $form['ldap_editable_attributes']['header'] = array( '#type' => 'value', '#value' => array( array('data' => 'Attribute Name'), array('data' => 'Readable by User?'), array('data' => 'Editable by User?'), ) ); // Advanced configuration. $form['advanced'] = array( '#type' => 'fieldset', '#title' => 'Advanced Configuration', '#description' => t('

When reading/editing attributes, this module logs on to the LDAP directory using the user\'s DN//pass pair. However, many LDAP setups do not allow their users to edit attributes.

If this is your case, but still you want users to edit their LDAP attributes via Drupal, you should set up an special user on your directory, with special access to edit your users\' attributes. Then this module will use it to log on and edit data.

'), '#collapsible' => TRUE, '#collapsed' => TRUE ); $form['advanced']['ldapdata_binddn'] = array( '#type' => 'textfield', '#title' => t('DN for reading/editing attributes'), '#default_value' => $binddn, '#size' => 50, '#maxlength' => 255, ); if ($bindpw_clear || !$bindpw) { $form['advanced']['ldapdata_bindpw'] = array( '#type' => 'password', '#title' => t('Password for reading/editing attributes'), '#size' => 12, '#maxlength' => 255, ); } else { // Given an option to clear the password. $form['advanced']['ldapdata_bindpw_clear'] = array( '#type' => 'checkbox', '#default_value' => FALSE, '#title' => t('Clear current password'), ); } $form['sid'] = array( '#type' => 'hidden', '#value' => $sid, ); $form['buttons']['submit'] = array( '#type' => 'submit', '#value' => 'Update' ); return $form; } else { drupal_goto('admin/settings/ldapdata'); } } /** * Submit hook for the settings form. */ function ldapdata_admin_edit_submit($form, &$form_state) { $values = $form_state['values']; if ($values['op'] == t('Reset') && $values['confirm'] == 1) { // Settings reset. db_query("UPDATE {ldapauth} SET ldapdata_mappings = '', ldapdata_roattrs = '', ldapdata_rwattrs = '', ldapdata_binddn = '', ldapdata_bindpw = '', ldapdata_bindpw_clear = '' WHERE sid = %d", $values['sid']); drupal_set_message(t('The configuration options have been reset to their default values.')); } else { // Attribute mapping. $attr_mapping_access = $values['ldap_attr_mapping']; $attr_mappings['access'] = $attr_mapping_access; if ($attr_mapping_access >= 4) { foreach (element_children($values) as $attr) { if (preg_match("/ldap_amap/", $attr) && $values[$attr]) { $attr_mappings[$attr] = $values[$attr]; } } } $serialized_data = serialize($attr_mappings); // Attribute access control. $ro_tmp = is_array($values['ldap_editable_attributes']['ro_status']) ? array_filter($values['ldap_editable_attributes']['ro_status']) : array(); if (!empty($ro_tmp)) { foreach ($ro_tmp as $ro_attr) { $ro_attrs[] = $ro_attr; } $serialized_ro_attrs = serialize($ro_attrs); } $rw_tmp = is_array($values['ldap_editable_attributes']['rw_status']) ? array_filter($values['ldap_editable_attributes']['rw_status']) : array(); if (!empty($rw_tmp)) { foreach ($rw_tmp as $rw_attr) { $rw_attrs[] = $rw_attr; } $serialized_rw_attrs = serialize($rw_attrs); } if ( !$values['ldapdata_bindpw_clear'] && $values['ldapdata_bindpw']) { db_query("UPDATE {ldapauth} SET ldapdata_mappings = '%s', ldapdata_roattrs = '%s', ldapdata_rwattrs = '%s', ldapdata_binddn = '%s', ldapdata_bindpw = '%s', ldapdata_bindpw_clear = '%d' WHERE sid = %d", $serialized_data, $serialized_ro_attrs, $serialized_rw_attrs, $values['ldapdata_binddn'], $values['ldapdata_bindpw'], $values['ldapdata_bindpw_clear'], $values['sid']); } else { // Set the clear password switch. db_query("UPDATE {ldapauth} SET ldapdata_mappings = '%s', ldapdata_roattrs = '%s', ldapdata_rwattrs = '%s', ldapdata_binddn = '%s', ldapdata_bindpw_clear = '%d' WHERE sid = %d", $serialized_data, $serialized_ro_attrs, $serialized_rw_attrs, $values['ldapdata_binddn'], $values['ldapdata_bindpw_clear'], $values['sid']); } drupal_set_message(t('The configuration options have been saved.')); } $form_state['redirect'] = 'admin/settings/ldapdata'; }