aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorArthur Schiwon <blizzz@owncloud.com>2013-02-26 22:27:09 +0100
committerArthur Schiwon <blizzz@owncloud.com>2013-02-26 22:27:09 +0100
commit64551ee06f2d33979c525a36455337aaca646d16 (patch)
tree35911d0b71b59060a3277958bf0a992e655f801a
parent81c664697b810d591b6b106bce7fde707c465e8f (diff)
downloadnextcloud-server-64551ee06f2d33979c525a36455337aaca646d16.tar.gz
nextcloud-server-64551ee06f2d33979c525a36455337aaca646d16.zip
LDAP: sort users on server-side
-rw-r--r--apps/user_ldap/lib/access.php11
1 files changed, 10 insertions, 1 deletions
diff --git a/apps/user_ldap/lib/access.php b/apps/user_ldap/lib/access.php
index 901299e7c21..05249b8f163 100644
--- a/apps/user_ldap/lib/access.php
+++ b/apps/user_ldap/lib/access.php
@@ -624,7 +624,8 @@ abstract class Access {
* @brief executes an LDAP search
* @param $filter the LDAP filter for the search
* @param $base an array containing the LDAP subtree(s) that shall be searched
- * @param $attr optional, when a certain attribute shall be filtered out
+ * @param $attr optional, array, one or more attributes that shall be
+ * retrieved. Results will according to the order in the array.
* @returns array with the search result
*
* Executes an LDAP search
@@ -656,6 +657,14 @@ abstract class Access {
\OCP\Util::writeLog('user_ldap', 'Attempt for Paging? '.print_r($pagedSearchOK, true), \OCP\Util::ERROR);
return array();
}
+
+ // Do the server-side sorting
+ foreach(array_reverse($attr) as $sortAttr){
+ foreach($sr as $searchResource) {
+ ldap_sort($link_resource, $searchResource, $sortAttr);
+ }
+ }
+
$findings = array();
foreach($sr as $key => $res) {
$findings = array_merge($findings, ldap_get_entries($link_resource, $res ));