You are here

LdapTypeActiveDirectory.class.php in Lightweight Directory Access Protocol (LDAP) 8.2

File

ldap_servers/ldap_types/LdapTypeActiveDirectory.class.php
View source
<?php

/**
 * @file
 * Active Directory LDAP Implementation Details
 *
 * see http://msdn.microsoft.com/en-us/library/windows/desktop/ms675085(v=vs.85).aspx
 *
 */
module_load_include('php', 'ldap_servers', 'ldap_types/LdapTypeAbstract.class');
class LdapTypeActiveDirectory extends LdapTypeAbstract {

  // generic properties
  public $name = 'Active Directory LDAP';
  public $typeId = 'ActiveDirectory';
  public $description = 'Microsoft Active Directory';

  // ldap_servers configuration
  public $port = 389;
  public $tls = 1;
  public $encrypted = 0;
  public $user_attr = 'sAMAccountName';
  public $mail_attr = 'mail';

  /** the following pairs all work in Active Directory,
   * but there is no assurance that any of them will survive
   * domain merges and migrations.  Its best to pick a true user id
   * such as a numeric one given to the user by the organization
   *
   * uidNumber  - not binary
   * objectSid  - binary
   * objectGuid - binary
   */
  public $unique_persistent_attr = 'uidNumber';
  public $unique_persistent_attr_binary = FALSE;
  public $groupObjectClassDefault = 'group';

  // ldap_authorization configuration
  public $groupDerivationModelDefault = LDAP_SERVERS_DERIVE_GROUP_FROM_ATTRIBUTE;
  public $deriveFromAttr = TRUE;
  public $groupUserMembershipsAttr = 'memberOf';

}

Classes