| | |
| | | | program/include/rcube_addressbook.php | |
| | | | | |
| | | | This file is part of the Roundcube Webmail client | |
| | | | Copyright (C) 2006-2011, The Roundcube Dev Team | |
| | | | Licensed under the GNU GPL | |
| | | | Copyright (C) 2006-2012, The Roundcube Dev Team | |
| | | | | |
| | | | Licensed under the GNU General Public License version 3 or | |
| | | | any later version with exceptions for skins & plugins. | |
| | | | See the README file for a full license statement. | |
| | | | | |
| | | | PURPOSE: | |
| | | | Interface to the local address book database | |
| | |
| | | public $group_id = null; |
| | | public $list_page = 1; |
| | | public $page_size = 10; |
| | | public $sort_col = 'name'; |
| | | public $sort_order = 'ASC'; |
| | | public $coltypes = array('name' => array('limit'=>1), 'firstname' => array('limit'=>1), 'surname' => array('limit'=>1), 'email' => array('limit'=>1)); |
| | | |
| | | protected $error; |
| | |
| | | $this->page_size = (int)$size; |
| | | } |
| | | |
| | | /** |
| | | * Set internal sort settings |
| | | * |
| | | * @param string $sort_col Sort column |
| | | * @param string $sort_order Sort order |
| | | */ |
| | | function set_sort_order($sort_col, $sort_order = null) |
| | | { |
| | | if ($sort_col != null && ($this->coltypes[$sort_col] || in_array($sort_col, $this->coltypes))) { |
| | | $this->sort_col = $sort_col; |
| | | } |
| | | if ($sort_order != null) { |
| | | $this->sort_order = strtoupper($sort_order) == 'DESC' ? 'DESC' : 'ASC'; |
| | | } |
| | | } |
| | | |
| | | /** |
| | | * Check the given data before saving. |
| | |
| | | */ |
| | | public function validate(&$save_data, $autofix = false) |
| | | { |
| | | $rcmail = rcmail::get_instance(); |
| | | |
| | | // check validity of email addresses |
| | | foreach ($this->get_col_values('email', $save_data, true) as $email) { |
| | | if (strlen($email)) { |
| | | if (!check_email(rcube_idn_to_ascii($email))) { |
| | | $this->set_error(self::ERROR_VALIDATE, rcube_label(array('name' => 'emailformaterror', 'vars' => array('email' => $email)))); |
| | | if (!rcube_utils::check_email(rcube_utils::idn_to_ascii($email))) { |
| | | $error = $rcmail->gettext(array('name' => 'emailformaterror', 'vars' => array('email' => $email))); |
| | | $this->set_error(self::ERROR_VALIDATE, $error); |
| | | return false; |
| | | } |
| | | } |
| | |
| | | * Compose a valid display name from the given structured contact data |
| | | * |
| | | * @param array Hash array with contact data as key-value pairs |
| | | * @param bool The name will be used on the list |
| | | * @param bool Don't attempt to extract components from the email address |
| | | * |
| | | * @return string Display name |
| | | */ |
| | | public static function compose_display_name($contact, $list_mode = false) |
| | | public static function compose_display_name($contact, $full_email = false) |
| | | { |
| | | $contact = rcmail::get_instance()->plugins->exec_hook('contact_displayname', $contact); |
| | | $fn = $contact['name']; |
| | | |
| | | if (!$fn) |
| | | if (!$fn) // default display name composition according to vcard standard |
| | | $fn = join(' ', array_filter(array($contact['prefix'], $contact['firstname'], $contact['middlename'], $contact['surname'], $contact['suffix']))); |
| | | |
| | | // use email address part for name |
| | | $email = is_array($contact['email']) ? $contact['email'][0] : $contact['email']; |
| | | |
| | | if ($email && (empty($fn) || $fn == $email)) { |
| | | // Use full email address on contacts list |
| | | if ($list_mode) |
| | | // return full email |
| | | if ($full_email) |
| | | return $email; |
| | | |
| | | list($emailname) = explode('@', $email); |
| | |
| | | return $fn; |
| | | } |
| | | |
| | | |
| | | /** |
| | | * Compose the name to display in the contacts list for the given contact record. |
| | | * This respects the settings parameter how to list conacts. |
| | | * |
| | | * @param array Hash array with contact data as key-value pairs |
| | | * @return string List name |
| | | */ |
| | | public static function compose_list_name($contact) |
| | | { |
| | | static $compose_mode; |
| | | |
| | | if (!isset($compose_mode)) // cache this |
| | | $compose_mode = rcmail::get_instance()->config->get('addressbook_name_listing', 0); |
| | | |
| | | if ($compose_mode == 3) |
| | | $fn = join(' ', array($contact['surname'] . ',', $contact['firstname'], $contact['middlename'])); |
| | | else if ($compose_mode == 2) |
| | | $fn = join(' ', array($contact['surname'], $contact['firstname'], $contact['middlename'])); |
| | | else if ($compose_mode == 1) |
| | | $fn = join(' ', array($contact['firstname'], $contact['middlename'], $contact['surname'])); |
| | | else |
| | | $fn = !empty($contact['name']) ? $contact['name'] : join(' ', array($contact['prefix'], $contact['firstname'], $contact['middlename'], $contact['surname'], $contact['suffix'])); |
| | | |
| | | $fn = trim($fn, ', '); |
| | | |
| | | // fallback to display name |
| | | if (empty($fn) && $contact['name']) |
| | | $fn = $contact['name']; |
| | | |
| | | // fallback to email address |
| | | $email = is_array($contact['email']) ? $contact['email'][0] : $contact['email']; |
| | | if (empty($fn) && $email) |
| | | return $email; |
| | | |
| | | return $fn; |
| | | } |
| | | |
| | | } |
| | | |