]> source.dussan.org Git - nextcloud-server.git/commitdiff
LDAP: better variable name
authorArthur Schiwon <blizzz@owncloud.com>
Wed, 8 May 2013 12:55:56 +0000 (14:55 +0200)
committerArthur Schiwon <blizzz@owncloud.com>
Thu, 16 May 2013 12:46:53 +0000 (14:46 +0200)
apps/user_ldap/lib/connection.php
apps/user_ldap/templates/settings.php

index ecc13076179244b61e3dfd7bedc890bdd4bc9a72..7292ca15e78d1e5d24737353f138e4ba5fe0c605 100644 (file)
@@ -65,7 +65,7 @@ class Connection {
                'ldapAttributesForGroupSearch' => null,
                'homeFolderNamingRule' => null,
                'hasPagedResultSupport' => false,
-               'ldapExpertUidAttr' => null,
+               'ldapExpertUsernameAttr' => null,
                'ldapExpertUUIDAttr' => null,
        );
 
@@ -267,8 +267,8 @@ class Connection {
                                = preg_split('/\r\n|\r|\n/', $this->$v('ldap_attributes_for_user_search'));
                        $this->config['ldapAttributesForGroupSearch']
                                = preg_split('/\r\n|\r|\n/', $this->$v('ldap_attributes_for_group_search'));
-                       $this->config['ldapExpertUidAttr']
-                               = $this->$v('ldap_expert_uid_attr');
+                       $this->config['ldapExpertUsernameAttr']
+                               = $this->$v('ldap_expert_username_attr');
                        $this->config['ldapExpertUUIDAttr']
                                = $this->$v('ldap_expert_uuid_attr');
 
@@ -308,7 +308,7 @@ class Connection {
                        'ldap_configuration_active' => 'ldapConfigurationActive',
                        'ldap_attributes_for_user_search' => 'ldapAttributesForUserSearch',
                        'ldap_attributes_for_group_search' => 'ldapAttributesForGroupSearch',
-                       'ldap_expert_uid_attr' => 'ldapExpertUidAttr',
+                       'ldap_expert_username_attr' => 'ldapExpertUsernameAttr',
                        'ldap_expert_uuid_attr' => 'ldapExpertUUIDAttr',
                );
                return $array;
@@ -512,6 +512,10 @@ class Connection {
                        $configurationOK = false;
                }
 
+               if(!empty($this->config['ldapExpertUUIDAttr'])) {
+                       $this->config['ldapUuidAttribute'] = $this->config['ldapExpertUUIDAttr'];
+               }
+
                return $configurationOK;
        }
 
@@ -550,7 +554,7 @@ class Connection {
                        'ldap_configuration_active'                     => 1,
                        'ldap_attributes_for_user_search'       => '',
                        'ldap_attributes_for_group_search'      => '',
-                       'ldap_expert_uid_attr'              => '',
+                       'ldap_expert_username_attr'              => '',
                        'ldap_expert_uuid_attr'             => '',
                );
        }
index de166502028e8502d1b458841faed6db9099d223..3c7dd7cce6e687ed2f5898f11925519be8b17f69 100644 (file)
        <fieldset id="ldapSettings-3">
                <p><strong><?php p($l->t('Internal Username'));?></strong></p>
                <p class="ldapIndent"><?php p($l->t('By default the internal username will be created from the UUID attribute. It makes sure that the username is unique and characters do not need to be converted. The internal username has the restriction that only these characters are allowed: [ a-zA-Z0-9_.@- ].  Other characters are replaced with their ASCII correspondence or simply omitted. On collisions a number will be added/increased. The internal username is used to identify a user internally. It is also the default name for the user home folder in ownCloud. It is also a port of remote URLs, for instance for all *DAV services. With this setting, the default behaviour can be overriden. To achieve a similar behaviour as before ownCloud 5 enter the user display name attribute in the following field. Leave it empty for default behaviour. Changes will have effect only on newly mapped (added) LDAP users.'));?></p>
-               <p class="ldapIndent"><label for="ldap_expert_uid_attr"><?php p($l->t('Internal Username Attribute:'));?></label><input type="text" id="ldap_expert_uid_attr" name="ldap_expert_uid_attr" data-default="<?php p($_['ldap_expert_uid_attr_default']); ?>" /></p>
+               <p class="ldapIndent"><label for="ldap_expert_username_attr"><?php p($l->t('Internal Username Attribute:'));?></label><input type="text" id="ldap_expert_username_attr" name="ldap_expert_username_attr" data-default="<?php p($_['ldap_expert_username_attr_default']); ?>" /></p>
                <p><strong><?php p($l->t('Override UUID detection'));?></strong></p>
-               <p class="ldapIndent"><?php p($l->t('By default, ownCloud autodetects the UUID attribute. The UUID attribute is used to doubtlessly identify LDAP users and groups. You can override the setting and pass an attribute of your choice. You must make sure that the attribute of your choice can be fetched for both users and groups and it is unique. Leave it empty for default behaviour. Changes will have effect only on newly mapped (added) LDAP users and groups.'));?></p>
+               <p class="ldapIndent"><?php p($l->t('By default, ownCloud autodetects the UUID attribute. The UUID attribute is used to doubtlessly identify LDAP users and groups. Also, the internal username will be created based on the UUID, if not specified otherwise above. You can override the setting and pass an attribute of your choice. You must make sure that the attribute of your choice can be fetched for both users and groups and it is unique. Leave it empty for default behaviour. Changes will have effect only on newly mapped (added) LDAP users and groups.'));?></p>
                <p class="ldapIndent"><label for="ldap_expert_uuid_attr"><?php p($l->t('UUID Attribute:'));?></label><input type="text" id="ldap_expert_uuid_attr" name="ldap_expert_uuid_attr" data-default="<?php p($_['ldap_expert_uuid_attr_default']); ?>" /></p>
                <p><strong><?php p($l->t('Username-LDAP User Mapping'));?></strong></p>
                <p class="ldapIndent"><?php p($l->t('ownCloud uses usernames to store and assign (meta) data. In order to precisely identify and recognize users, each LDAP user will have a internal username. This requires a mapping from ownCloud username to LDAP user. The created username is mapped to the UUID of the LDAP user. Additionally the DN is cached as well to reduce LDAP interaction, but it is not used for identification. If the DN changes, the changes will be found by ownCloud. The internal ownCloud name is used all over in ownCloud. Clearing the Mappings will have leftovers everywhere. Clearing the Mappings is not configuration sensitive, it affects all LDAP configurations! Do never clear the mappings in a production environment. Only clear mappings in a testing or experimental stage.'));?></p>