You are here

class LdapAuthorizationConsumerConfAdmin in Lightweight Directory Access Protocol (LDAP) 7.2

Same name and namespace in other branches
  1. 8.2 ldap_authorization/LdapAuthorizationConsumerConfAdmin.class.php \LdapAuthorizationConsumerConfAdmin
  2. 7 ldap_authorization/LdapAuthorizationConsumerConfAdmin.class.php \LdapAuthorizationConsumerConfAdmin

LDAP Authorization Consumer Configration Admin Class.

Hierarchy

Expanded class hierarchy of LdapAuthorizationConsumerConfAdmin

File

ldap_authorization/LdapAuthorizationConsumerConfAdmin.class.php, line 12

View source
class LdapAuthorizationConsumerConfAdmin extends LdapAuthorizationConsumerConf {

  /**
   *
   */
  public function save() {
    $op = $this->inDatabase ? 'edit' : 'insert';
    $values = new stdClass();
    $values->sid = $this->sid;
    $values->numeric_consumer_conf_id = $this->numericConsumerConfId;
    $values->consumer_type = $this->consumerType;
    $values->consumer_module = $this->consumer->consumerModule;
    $values->status = $this->status ? 1 : 0;
    $values->only_ldap_authenticated = (int) $this->onlyApplyToLdapAuthenticated;
    $values->use_first_attr_as_groupid = (int) $this->useFirstAttrAsGroupId;
    $values->mappings = serialize($this->mappings);
    $values->use_filter = (int) $this->useMappingsAsFilter;
    $values->synch_to_ldap = (int) $this->synchToLdap;
    $values->synch_on_logon = (int) $this->synchOnLogon;
    $values->revoke_ldap_provisioned = (int) $this->revokeLdapProvisioned;
    $values->create_consumers = (int) $this->createConsumers;
    $values->regrant_ldap_provisioned = (int) $this->regrantLdapProvisioned;
    if (module_exists('ctools')) {
      ctools_include('export');

      // Populate our object with ctool's properties.
      $object = ctools_export_crud_new('ldap_authorization');
      foreach ($object as $property => $value) {
        if (!isset($values->{$property})) {
          $values->{$property} = $value;
        }
      }
      try {
        $values->export_type = NULL;
        $result = ctools_export_crud_save('ldap_authorization', $values);
      } catch (Exception $e) {
        $values->export_type = EXPORT_IN_DATABASE;
        $result = ctools_export_crud_save('ldap_authorization', $values);
      }

      // ctools_export_crud_save doesn't invalidate cache.
      ctools_export_load_object_reset('ldap_authorization');
    }
    else {
      if ($op == 'edit') {
        $result = drupal_write_record('ldap_authorization', $values, 'consumer_type');
      }
      else {
        $result = drupal_write_record('ldap_authorization', $values);
      }
      if ($result) {
        $this->inDatabase = TRUE;
      }
      else {
        drupal_set_message(t('Failed to write LDAP Authorization to the database.'));
      }
    }
  }
  public $fields;
  public $consumers;

  /**
   *
   */
  public function delete() {
    if ($this->consumerType) {
      $this->inDatabase = FALSE;
      return db_delete('ldap_authorization')
        ->condition('consumer_type', $this->consumerType)
        ->execute();
    }
    else {
      return FALSE;
    }
  }

  /**
   *
   */
  public function __construct(&$consumer = NULL, $new = FALSE) {
    parent::__construct($consumer, $new);
    $this->fields = $this
      ->fields();
    $this->consumers = ldap_authorization_get_consumers(NULL, TRUE);
    if ($new) {
      foreach ($this->consumer->defaultConsumerConfProperties as $property => $value) {
        $this->{$property} = $value;
      }
    }
  }

  /**
   *
   */
  public function drupalForm($server_options, $op) {
    $consumer_tokens = ldap_authorization_tokens($this->consumer);
    $form['intro'] = [
      '#type' => 'item',
      '#markup' => t('<h1>LDAP to !consumer_name Configuration</h1>', $consumer_tokens),
    ];
    $form['status'] = [
      '#type' => 'fieldset',
      '#title' => t('I.  Basics', $consumer_tokens),
      '#collapsible' => TRUE,
      '#collapsed' => FALSE,
    ];
    $form['status']['sid'] = [
      '#type' => 'radios',
      '#title' => t('LDAP Server used in !consumer_name configuration.', $consumer_tokens),
      '#required' => 1,
      '#default_value' => $this->sid,
      '#options' => $server_options,
    ];
    $form['status']['consumer_type'] = [
      '#type' => 'hidden',
      '#value' => $this->consumerType,
      '#required' => 1,
    ];
    $form['status']['status'] = [
      '#type' => 'checkbox',
      '#title' => t('Enable this configuration', $consumer_tokens),
      '#default_value' => $this->status,
    ];
    $form['status']['only_ldap_authenticated'] = [
      '#type' => 'checkbox',
      '#title' => t('Only apply the following LDAP to !consumer_name configuration to users authenticated via LDAP.  One uncommon reason for disabling this is when you are using Drupal authentication, but want to leverage LDAP for authorization; for this to work the Drupal username still has to map to an LDAP entry.', $consumer_tokens),
      '#default_value' => $this->onlyApplyToLdapAuthenticated,
    ];
    if (method_exists($this->consumer, 'mappingExamples')) {
      $consumer_tokens['!examples'] = '<fieldset class="collapsible collapsed form-wrapper" id="authorization-mappings">
<legend><span class="fieldset-legend">' . t('Examples based on current !consumer_namePlural', $consumer_tokens) . '</span></legend>
<div class="fieldset-wrapper">' . $this->consumer
        ->mappingExamples($consumer_tokens) . '<div class="fieldset-wrapper">
</fieldset>';
    }
    else {
      $consumer_tokens['!examples'] = '';
    }
    $form['filter_and_mappings'] = [
      '#type' => 'fieldset',
      '#title' => t('II. LDAP to !consumer_name mapping and filtering', $consumer_tokens),
      '#description' => t('
Representations of groups derived from LDAP might initially look like:
<ul>
<li><code>cn=students,ou=groups,dc=hogwarts,dc=edu</code></li>
<li><code>cn=gryffindor,ou=groups,dc=hogwarts,dc=edu</code></li>
<li><code>cn=faculty,ou=groups,dc=hogwarts,dc=edu</code></li>
<li><code>cn=probation students,ou=groups,dc=hogwarts,dc=edu</code></li>
</ul>

<p><strong>Mappings are used to convert and filter these group representations to !consumer_namePlural.</strong></p>

!consumer_mappingDirections

!examples

', $consumer_tokens),
      '#collapsible' => TRUE,
      '#collapsed' => !($this->mappings || $this->useMappingsAsFilter || $this->useFirstAttrAsGroupId),
    ];
    $form['filter_and_mappings']['use_first_attr_as_groupid'] = [
      '#type' => 'checkbox',
      '#title' => t('Convert full dn to value of first attribute before mapping.  e.g.  <code>cn=students,ou=groups,dc=hogwarts,dc=edu</code> would be converted to <code>students</code>', $consumer_tokens),
      '#default_value' => $this->useFirstAttrAsGroupId,
    ];
    $form['filter_and_mappings']['mappings'] = [
      '#type' => 'textarea',
      '#title' => t('Mapping of LDAP to !consumer_name (one per line)', $consumer_tokens),
      '#default_value' => $this
        ->mappingsToPipeList($this->mappings),
      '#cols' => 50,
      '#rows' => 5,
    ];
    $form['filter_and_mappings']['use_filter'] = [
      '#type' => 'checkbox',
      '#title' => t('Only grant !consumer_namePlural that match a filter above.', $consumer_tokens),
      '#default_value' => $this->useMappingsAsFilter,
      '#description' => t('If enabled, only above mapped !consumer_namePlural will be assigned (e.g. students and administrator).
        <strong>If not checked, !consumer_namePlural not mapped above also may be created and granted (e.g. gryffindor and probation students).  In some LDAPs this can lead to hundreds of !consumer_namePlural being created if "Create !consumer_namePlural if they do not exist" is enabled below.
        </strong>', $consumer_tokens),
    ];
    $form['more'] = [
      '#type' => 'fieldset',
      '#title' => t('Part III.  Even More Settings.'),
      '#collapsible' => TRUE,
      '#collapsed' => FALSE,
    ];
    $synchronization_modes = [];
    if ($this->synchOnLogon) {
      $synchronization_modes[] = 'user_logon';
    }
    $form['more']['synchronization_modes'] = [
      '#type' => 'checkboxes',
      '#title' => t('When should !consumer_namePlural be granted/revoked from user?', $consumer_tokens),
      '#options' => [
        'user_logon' => t('When a user logs on.'),
      ],
      '#default_value' => $synchronization_modes,
      '#description' => '',
    ];
    $synchronization_actions = [];
    if ($this->revokeLdapProvisioned) {
      $synchronization_actions[] = 'revoke_ldap_provisioned';
    }
    if ($this->createConsumers) {
      $synchronization_actions[] = 'create_consumers';
    }
    if ($this->regrantLdapProvisioned) {
      $synchronization_actions[] = 'regrant_ldap_provisioned';
    }
    $options = [
      'revoke_ldap_provisioned' => t('Revoke !consumer_namePlural previously granted by LDAP Authorization but no longer valid.', $consumer_tokens),
      'regrant_ldap_provisioned' => t('Re grant !consumer_namePlural previously granted by LDAP Authorization but removed manually.', $consumer_tokens),
    ];
    if ($this->consumer->allowConsumerObjectCreation) {
      $options['create_consumers'] = t('Create !consumer_namePlural if they do not exist.', $consumer_tokens);
    }
    $form['more']['synchronization_actions'] = [
      '#type' => 'checkboxes',
      '#title' => t('What actions would you like performed when !consumer_namePlural are granted/revoked from user?', $consumer_tokens),
      '#options' => $options,
      '#default_value' => $synchronization_actions,
    ];

    /**
     * @todo  some general options for an individual mapping (perhaps in an advance tab).
     *
     * - on synchronization allow: revoking authorizations made by this module, authorizations made outside of this module
     * - on synchronization create authorization contexts not in existance when needed (drupal roles etc)
     * - synchronize actual authorizations (not cached) when granting authorizations
     */
    switch ($op) {
      case 'add':
        $action = 'Add';
        break;
      case 'edit':
        $action = 'Save';
        break;
      case 'delete':
        $action = 'Delete';
        break;
    }
    $form['submit'] = [
      '#type' => 'submit',
      '#value' => $action,
    ];
    return $form;
  }

  /**
   *
   */
  protected function loadFromForm($values, $op) {
  }

  /**
   *
   */
  public function getLdapAuthorizationConsumerActions() {
    $actions = [];
    $actions[] = l(t('edit'), LDAP_SERVERS_MENU_BASE_PATH . '/authorization/edit/' . $this->consumerType);
    if (property_exists($this, 'type')) {
      if ($this->type == 'Overridden') {
        $actions[] = l(t('revert'), LDAP_SERVERS_MENU_BASE_PATH . '/authorization/delete/' . $this->consumerType);
      }
      if ($this->type == 'Normal') {
        $actions[] = l(t('delete'), LDAP_SERVERS_MENU_BASE_PATH . '/authorization/delete/' . $this->consumerType);
      }
    }
    else {
      $actions[] = l(t('delete'), LDAP_SERVERS_MENU_BASE_PATH . '/authorization/delete/' . $this->consumerType);
    }
    $actions[] = l(t('test'), LDAP_SERVERS_MENU_BASE_PATH . '/authorization/test/' . $this->consumerType);
    return $actions;
  }

  /**
   *
   */
  public function drupalFormValidate($op, $values) {
    $errors = [];
    if ($op == 'delete') {
      if (!$this->consumerType) {
        $errors['consumer_type_missing'] = 'Consumer type is missing from delete form.';
      }
    }
    else {
      $this
        ->populateFromDrupalForm($op, $values);
      $errors = $this
        ->validate($values);
      if (count($this->mappings) == 0 && trim($values['mappings'])) {
        $errors['mappings'] = t('Bad mapping syntax.  Text entered but not able to convert to array.');
      }
    }
    return $errors;
  }

  /**
   *
   */
  public function validate($form_values = []) {
    $errors = [];
    if (!$this->consumerType) {
      $errors['consumer_type'] = t('Consumer type is missing.');
    }
    if ($this->inDatabase && !$this->consumerType) {
      $errors['consumer_type'] = t('Edit or delete called without consumer type in form.');
    }
    if (count($this->mappings) > 0) {
      foreach ($this->mappings as $mapping_item) {
        list($type, $text) = $this->consumer
          ->validateAuthorizationMappingTarget($mapping_item, $form_values);
        if ($type == 'error') {
          $errors['mappings'] = $text;
        }
        elseif ($type == 'warning' || $type == 'status') {
          drupal_set_message(check_plain($text), $type);
        }
      }
    }
    if ($this->useMappingsAsFilter && !count($this->mappings)) {
      $errors['mappings'] = t('Mappings are missing.  Mappings must be supplied if filtering is enabled.');
    }
    return $errors;
  }

  /**
   *
   */
  protected function populateFromDrupalForm($op, $values) {
    $this->inDatabase = drupal_strtolower($op) == 'edit' || drupal_strtolower($op) == 'save';
    $this->consumerType = $values['consumer_type'];
    $this->sid = $values['sid'];
    $this->status = (bool) $values['status'];
    $this->onlyApplyToLdapAuthenticated = (bool) @$values['only_ldap_authenticated'];
    $this->useFirstAttrAsGroupId = (bool) $values['use_first_attr_as_groupid'];
    $this->mappings = $this->consumer
      ->normalizeMappings($this
      ->pipeListToArray($values['mappings'], FALSE));
    $this->useMappingsAsFilter = (bool) @$values['use_filter'];
    $this->synchOnLogon = (bool) @$values['synchronization_modes']['user_logon'];
    $this->regrantLdapProvisioned = (bool) @$values['synchronization_actions']['regrant_ldap_provisioned'];
    $this->revokeLdapProvisioned = (bool) @$values['synchronization_actions']['revoke_ldap_provisioned'];
    $this->createConsumers = (bool) @$values['synchronization_actions']['create_consumers'];
  }

  /**
   *
   */
  public function drupalFormSubmit($op, $values) {
    $this
      ->populateFromDrupalForm($op, $values);
    if ($op == 'delete') {
      $this
        ->delete();
    }
    else {
      try {
        $save_result = $this
          ->save();
      } catch (Exception $e) {
        $this->errorName = 'Save Error';
        $this->errorMsg = t('Failed to save object.  Your form data was not saved.');
        $this->hasError = TRUE;
      }
    }
  }

  /**
   *
   */
  public static function fields() {

    /**
     * consumer_type is tag (unique alphanumeric id) of consuming authorization such as
     *   drupal_roles, og_groups, civicrm_memberships
     */
    $fields = [
      'numeric_consumer_conf_id' => [
        'schema' => [
          'type' => 'serial',
          'unsigned' => TRUE,
          'not null' => TRUE,
          'description' => 'Primary ID field for the table.  Only used internally.',
          'no export' => TRUE,
        ],
      ],
      'sid' => [
        'schema' => [
          'type' => 'varchar',
          'length' => 20,
          'not null' => TRUE,
        ],
      ],
      'consumer_type' => [
        'schema' => [
          'type' => 'varchar',
          'length' => 20,
          'not null' => TRUE,
        ],
      ],
      'consumer_module' => [
        'schema' => [
          'type' => 'varchar',
          'length' => 30,
          'not null' => TRUE,
        ],
      ],
      'status' => [
        'schema' => [
          'type' => 'int',
          'size' => 'tiny',
          'not null' => TRUE,
          'default' => 0,
        ],
      ],
      'only_ldap_authenticated' => [
        'schema' => [
          'type' => 'int',
          'size' => 'tiny',
          'not null' => TRUE,
          'default' => 1,
        ],
      ],
      'use_first_attr_as_groupid' => [
        'schema' => [
          'type' => 'int',
          'size' => 'tiny',
          'not null' => TRUE,
          'default' => 0,
        ],
      ],
      'mappings' => [
        'form_default' => [],
        'schema' => [
          'type' => 'text',
          'size' => 'medium',
          'not null' => FALSE,
          'default' => NULL,
        ],
      ],
      'use_filter' => [
        'schema' => [
          'type' => 'int',
          'size' => 'tiny',
          'not null' => TRUE,
          'default' => 1,
        ],
      ],
      'synchronization_modes' => [
        'form_default' => [
          'user_logon',
        ],
      ],
      'synchronization_actions' => [
        'form_default' => [
          'revoke_ldap_provisioned',
          'create_consumers',
        ],
      ],
      'synch_to_ldap' => [
        'schema' => [
          'type' => 'int',
          'size' => 'tiny',
          'not null' => TRUE,
          'default' => 0,
        ],
      ],
      'synch_on_logon' => [
        'schema' => [
          'type' => 'int',
          'size' => 'tiny',
          'not null' => TRUE,
          'default' => 0,
        ],
      ],
      'revoke_ldap_provisioned' => [
        'schema' => [
          'type' => 'int',
          'size' => 'tiny',
          'not null' => TRUE,
          'default' => 0,
        ],
      ],
      'create_consumers' => [
        'schema' => [
          'type' => 'int',
          'size' => 'tiny',
          'not null' => TRUE,
          'default' => 0,
        ],
      ],
      'regrant_ldap_provisioned' => [
        'schema' => [
          'type' => 'int',
          'size' => 'tiny',
          'not null' => TRUE,
          'default' => 0,
        ],
      ],
    ];
    return $fields;
  }

  /**
   *
   */
  protected function mappingsToPipeList($mappings) {
    $result_text = "";
    foreach ($mappings as $map) {
      $result_text .= $map['from'] . '|' . $map['user_entered'] . "\n";
    }
    return $result_text;
  }

}

Members

Namesort descending Modifiers Type Description Overrides
LdapAuthorizationConsumerConf::$consumer public property
LdapAuthorizationConsumerConf::$consumerModule public property
LdapAuthorizationConsumerConf::$consumerType public property
LdapAuthorizationConsumerConf::$createConsumers public property
LdapAuthorizationConsumerConf::$description public property
LdapAuthorizationConsumerConf::$errorMsg public property
LdapAuthorizationConsumerConf::$errorName public property
LdapAuthorizationConsumerConf::$hasError public property
LdapAuthorizationConsumerConf::$inDatabase public property
LdapAuthorizationConsumerConf::$mappings public property
LdapAuthorizationConsumerConf::$numericConsumerConfId public property
LdapAuthorizationConsumerConf::$onlyApplyToLdapAuthenticated public property
LdapAuthorizationConsumerConf::$regrantLdapProvisioned public property
LdapAuthorizationConsumerConf::$revokeLdapProvisioned public property
LdapAuthorizationConsumerConf::$server public property
LdapAuthorizationConsumerConf::$sid public property
LdapAuthorizationConsumerConf::$status public property
LdapAuthorizationConsumerConf::$synchOnLogon public property
LdapAuthorizationConsumerConf::$synchToLdap public property
LdapAuthorizationConsumerConf::$useFirstAttrAsGroupId public property
LdapAuthorizationConsumerConf::$useMappingsAsFilter public property
LdapAuthorizationConsumerConf::$_new protected property
LdapAuthorizationConsumerConf::$_sid protected property
LdapAuthorizationConsumerConf::clearError public function
LdapAuthorizationConsumerConf::field_to_properties_map public static function Direct mapping of db to object properties.
LdapAuthorizationConsumerConf::field_to_properties_serialized public static function
LdapAuthorizationConsumerConf::linesToArray protected function
LdapAuthorizationConsumerConf::loadFromDb protected function
LdapAuthorizationConsumerConf::pipeListToArray protected function
LdapAuthorizationConsumerConf::__destruct public function Destructor Method.
LdapAuthorizationConsumerConfAdmin::$consumers public property
LdapAuthorizationConsumerConfAdmin::$fields public property
LdapAuthorizationConsumerConfAdmin::delete public function
LdapAuthorizationConsumerConfAdmin::drupalForm public function
LdapAuthorizationConsumerConfAdmin::drupalFormSubmit public function
LdapAuthorizationConsumerConfAdmin::drupalFormValidate public function
LdapAuthorizationConsumerConfAdmin::fields public static function
LdapAuthorizationConsumerConfAdmin::getLdapAuthorizationConsumerActions public function
LdapAuthorizationConsumerConfAdmin::loadFromForm protected function
LdapAuthorizationConsumerConfAdmin::mappingsToPipeList protected function
LdapAuthorizationConsumerConfAdmin::populateFromDrupalForm protected function
LdapAuthorizationConsumerConfAdmin::save public function
LdapAuthorizationConsumerConfAdmin::validate public function
LdapAuthorizationConsumerConfAdmin::__construct public function Constructor Method. Overrides LdapAuthorizationConsumerConf::__construct