From 1b39d9a6c744a393e7930c2493cc2ddc9c9e95bf Mon Sep 17 00:00:00 2001 From: Aleksander Machniak <alec@alec.pl> Date: Sat, 08 Aug 2015 03:32:24 -0400 Subject: [PATCH] PHP7: Fixed some E_WARNING errors that previously were E_STRICT --- program/lib/Roundcube/rcube_ldap.php | 165 +++++++++++++++++++++++++++++-------------------------- 1 files changed, 87 insertions(+), 78 deletions(-) diff --git a/program/lib/Roundcube/rcube_ldap.php b/program/lib/Roundcube/rcube_ldap.php index 274616a..f1ebea0 100644 --- a/program/lib/Roundcube/rcube_ldap.php +++ b/program/lib/Roundcube/rcube_ldap.php @@ -1,6 +1,6 @@ <?php -/* +/** +-----------------------------------------------------------------------+ | This file is part of the Roundcube Webmail client | | Copyright (C) 2006-2013, The Roundcube Dev Team | @@ -64,7 +64,6 @@ private $base_dn = ''; private $groups_base_dn = ''; - private $group_url; private $group_data; private $group_search_cache; private $cache; @@ -118,13 +117,14 @@ // fieldmap property is given if (is_array($p['fieldmap'])) { + $p['fieldmap'] = array_filter($p['fieldmap']); foreach ($p['fieldmap'] as $rf => $lf) $this->fieldmap[$rf] = $this->_attr_name(strtolower($lf)); } else if (!empty($p)) { // read deprecated *_field properties to remain backwards compatible foreach ($p as $prop => $value) - if (preg_match('/^(.+)_field$/', $prop, $matches)) + if (!empty($value) && preg_match('/^(.+)_field$/', $prop, $matches)) $this->fieldmap[$matches[1]] = $this->_attr_name(strtolower($value)); } @@ -239,10 +239,9 @@ $this->_connect(); } - /** - * Establish a connection to the LDAP server - */ + * Establish a connection to the LDAP server + */ private function _connect() { $rcube = rcube::get_instance(); @@ -283,12 +282,21 @@ } // Get the pieces needed for variable replacement. - if ($fu = $rcube->get_user_email()) + if ($fu = $rcube->get_user_email()) { list($u, $d) = explode('@', $fu); - else + } + else { $d = $this->mail_domain; + } $dc = 'dc='.strtr($d, array('.' => ',dc=')); // hierarchal domain string + + // resolve $dc through LDAP + if (!empty($this->prop['domain_filter']) && !empty($this->prop['search_bind_dn']) && + method_exists($this->ldap, 'domain_root_dn')) { + $this->ldap->bind($this->prop['search_bind_dn'], $this->prop['search_bind_pw']); + $dc = $this->ldap->domain_root_dn($d); + } $replaces = array('%dn' => '', '%dc' => $dc, '%d' => $d, '%fu' => $fu, '%u' => $u); @@ -430,7 +438,6 @@ return $this->ready; } - /** * Close connection to LDAP server */ @@ -441,7 +448,6 @@ } } - /** * Returns address book name * @@ -451,7 +457,6 @@ { return $this->prop['name']; } - /** * Set internal list page @@ -475,7 +480,6 @@ $this->ldap->set_vlv_page($this->list_page, $this->page_size); } - /** * Set internal sort settings * @@ -488,7 +492,6 @@ $this->sort_col = $this->coltypes[$sort_col]['attributes'][0]; } - /** * Save a search string for future listings * @@ -498,7 +501,6 @@ { $this->filter = $filter; } - /** * Getter for saved search properties @@ -510,7 +512,6 @@ return $this->filter; } - /** * Reset all saved results and search parameters */ @@ -521,14 +522,13 @@ $this->filter = ''; } - /** * List the current set of contact records * - * @param array List of cols to show - * @param int Only return this number of records + * @param array List of cols to show + * @param int Only return this number of records * - * @return array Indexed list of contact records, each a hash array + * @return array Indexed list of contact records, each a hash array */ function list_records($cols=null, $subset=0) { @@ -698,8 +698,9 @@ for ($i=0; $i < $entry['memberurl']['count']; $i++) { // extract components from url - if (!preg_match('!ldap:///([^\?]+)\?\?(\w+)\?(.*)$!', $entry['memberurl'][$i], $m)) + if (!preg_match('!ldap://[^/]*/([^\?]+)\?\?(\w+)\?(.*)$!', $entry['memberurl'][$i], $m)) { continue; + } // add search filter if any $filter = $this->filter ? '(&(' . $m[3] . ')(' . $this->filter . '))' : $m[3]; @@ -725,7 +726,6 @@ { return strcmp($a[$this->sort_col][0], $b[$this->sort_col][0]); } - /** * Search contacts @@ -766,16 +766,16 @@ if ($this->prop['vlv_search'] && $this->ready && join(',', (array)$fields) == join(',', $list_fields)) { $this->result = new rcube_result_set(0); - $search_suffix = $this->prop['fuzzy_search'] && $mode != 1 ? '*' : ''; + $this->ldap->config_set('fuzzy_search', intval($this->prop['fuzzy_search'] && $mode != 1)); $ldap_data = $this->ldap->search($this->base_dn, $this->prop['filter'], $this->prop['scope'], $this->prop['attributes'], - array('search' => $value . $search_suffix /*, 'sort' => $this->prop['sort'] */)); + array('search' => $value /*, 'sort' => $this->prop['sort'] */)); if ($ldap_data === false) { return $this->result; } // get all entries of this page and post-filter those that really match the query $search = mb_strtolower($value); - foreach ($ldap_data as $i => $entry) { + foreach ($ldap_data as $entry) { $rec = $this->_ldap2result($entry); foreach ($fields as $f) { foreach ((array)$rec[$f] as $val) { @@ -791,33 +791,24 @@ return $this->result; } - // use AND operator for advanced searches - $filter = is_array($value) ? '(&' : '(|'; - // set wildcards - $wp = $ws = ''; - if (!empty($this->prop['fuzzy_search']) && $mode != 1) { - $ws = '*'; - if (!$mode) { - $wp = '*'; - } - } + // advanced per-attribute search + if (is_array($value)) { + // use AND operator for advanced searches + $filter = '(&'; - if ($fields == '*') { - // search_fields are required for fulltext search - if (empty($this->prop['search_fields'])) { - $this->set_error(self::ERROR_SEARCH, 'nofulltextsearch'); - $this->result = new rcube_result_set(); - return $this->result; - } - if (is_array($this->prop['search_fields'])) { - foreach ($this->prop['search_fields'] as $field) { - $filter .= "($field=$wp" . rcube_ldap_generic::quote_string($value) . "$ws)"; + // set wildcards + $wp = $ws = ''; + if (!empty($this->prop['fuzzy_search']) && $mode != 1) { + $ws = '*'; + if (!$mode) { + $wp = '*'; } } - } - else { + foreach ((array)$fields as $idx => $field) { - $val = is_array($value) ? $value[$idx] : $value; + $val = $value[$idx]; + if (!strlen($val)) + continue; if ($attrs = $this->_map_field($field)) { if (count($attrs) > 1) $filter .= '(|'; @@ -827,8 +818,32 @@ $filter .= ')'; } } + + $filter .= ')'; } - $filter .= ')'; + else { + if ($fields == '*') { + // search_fields are required for fulltext search + if (empty($this->prop['search_fields'])) { + $this->set_error(self::ERROR_SEARCH, 'nofulltextsearch'); + $this->result = new rcube_result_set(); + return $this->result; + } + $attributes = (array)$this->prop['search_fields']; + } + else { + // map address book fields into ldap attributes + $attributes = array(); + foreach ((array) $fields as $field) { + if ($this->coltypes[$field] && ($attrs = $this->coltypes[$field]['attributes'])) { + $attributes = array_merge($attributes, (array) $attrs); + } + } + } + + // compose a full-text-like search filter + $filter = rcube_ldap_generic::fulltext_search_filter($value, $attributes, $mode); + } // add required (non empty) fields filter $req_filter = ''; @@ -866,7 +881,6 @@ return $this->result; } - /** * Count number of available contacts in database * @@ -895,7 +909,6 @@ return new rcube_result_set($count, ($this->list_page-1) * $this->page_size); } - /** * Return the last result set * @@ -905,7 +918,6 @@ { return $this->result; } - /** * Get a specific contact record @@ -948,6 +960,22 @@ return $assoc ? $res : $this->result; } + /** + * Returns the last error occurred (e.g. when updating/inserting failed) + * + * @return array Hash array with the following fields: type, message + */ + function get_error() + { + $err = $this->error; + + // check ldap connection for errors + if (!$err && $this->ldap->get_error()) { + $err = array(self::ERROR_SEARCH, $this->ldap->get_error()); + } + + return $err; + } /** * Check the given data before saving. @@ -1020,15 +1048,17 @@ return true; } - /** * Create a new contact record * - * @param array Hash array with save data + * @param array Associative array with save data + * Keys: Field name with optional section in the form FIELD:SECTION + * Values: Field value. Can be either a string or an array of strings for multiple values + * @param boolean True to check for duplicates first * - * @return encoded record ID on success, False on error + * @return mixed The created record ID on success, False on error */ - function insert($save_cols) + function insert($save_cols, $check = false) { // Map out the column names to their LDAP ones to build the new entry. $newentry = $this->_map_data($save_cols); @@ -1089,7 +1119,6 @@ return $dn; } - /** * Update a specific contact record @@ -1272,7 +1301,6 @@ return $newdn ? $newdn : true; } - /** * Mark one or more contact records as deleted * @@ -1321,7 +1349,6 @@ return count($ids); } - /** * Remove all contact records @@ -1391,7 +1418,6 @@ } } - /** * Converts LDAP entry into an array */ @@ -1450,7 +1476,6 @@ return $out; } - /** * Return LDAP attribute(s) for the given field */ @@ -1458,7 +1483,6 @@ { return (array)$this->coltypes[$field]['attributes']; } - /** * Convert a record data set into LDAP field attributes @@ -1515,7 +1539,6 @@ return $ldap_data; } - /** * Returns unified attribute name (resolving aliases) */ @@ -1547,17 +1570,6 @@ } /** - * Prints debug info to the log - */ - private function _debug($str) - { - if ($this->debug) { - rcube::write_log('ldap', $str); - } - } - - - /** * Activate/deactivate debug mode * * @param boolean $dbg True if LDAP commands should be logged @@ -1570,7 +1582,6 @@ $this->ldap->config_set('debug', $dbg); } } - /** * Setter for the current group @@ -1609,7 +1620,7 @@ if ($search) { foreach ($group_cache as $group) { - if ($this->compare_search_value('name', $group['name'], $search, $mode)) { + if ($this->compare_search_value('name', $group['name'], mb_strtolower($search), $mode)) { $groups[] = $group; } } @@ -1974,7 +1985,7 @@ $filter = strtr("(|(member=$contact_dn)(uniqueMember=$contact_dn)$add_filter)", array('\\' => '\\\\')); $ldap_data = $this->ldap->search($base_dn, $filter, 'sub', array('dn', $name_attr)); - if ($res === false) { + if ($ldap_data === false) { return array(); } @@ -2014,7 +2025,6 @@ return $default; } - /** * HTML-safe DN string encoding * @@ -2041,5 +2051,4 @@ $str = str_pad(strtr($str, '-_', '+/'), strlen($str) % 4, '=', STR_PAD_RIGHT); return base64_decode($str); } - } -- Gitblit v1.9.1