thomascube
2011-08-18 fbe54043cf598b19a753dc2b21a7ed558d23fd15
commit | author | age
4e17e6 1 <?php
T 2
3 /*
4  +-----------------------------------------------------------------------+
5  | program/steps/mail/addcontact.inc                                     |
6  |                                                                       |
e019f2 7  | This file is part of the Roundcube Webmail client                     |
f5e7b3 8  | Copyright (C) 2005-2009, The Roundcube Dev Team                       |
30233b 9  | Licensed under the GNU GPL                                            |
4e17e6 10  |                                                                       |
T 11  | PURPOSE:                                                              |
12  |   Add the submitted contact to the users address book                 |
13  |                                                                       |
14  +-----------------------------------------------------------------------+
15  | Author: Thomas Bruederli <roundcube@gmail.com>                        |
16  +-----------------------------------------------------------------------+
17
18  $Id$
19
20 */
21
881217 22 // only process ajax requests
T 23 if (!$OUTPUT->ajax_call)
24   return;
25
d73448 26 $abook = $RCMAIL->config->get('default_addressbook');
A 27
28 // Get configured addressbook
29 $CONTACTS = $RCMAIL->get_address_book($abook, true);
30
31 // Get first writeable addressbook if the configured doesn't exist
32 // This can happen when user deleted the addressbook (e.g. Kolab folder)
3a9f79 33 if ($abook == null || !is_object($CONTACTS)) {
T 34   $source = reset($RCMAIL->get_address_sources(true));
35   $CONTACTS = $RCMAIL->get_address_book($source['id'], true);
d73448 36 }
f11541 37
ade8e1 38 if (!empty($_POST['_address']) && is_object($CONTACTS))
f11541 39 {
T 40   $contact_arr = $IMAP->decode_address_list(get_input_value('_address', RCUBE_INPUT_POST, true), 1, false);
6f0968 41
ce92ba 42   if (!empty($contact_arr[1]['mailto'])) {
f11541 43     $contact = array(
T 44       'email' => $contact_arr[1]['mailto'],
45       'name' => $contact_arr[1]['name']
46     );
6f0968 47
A 48     // Validity checks
49     if (empty($contact['email'])) {
50       $OUTPUT->show_message('errorsavingcontact', 'error');
51       $OUTPUT->send();
52     }
e18d99 53     
A 54     $email = rcube_idn_to_ascii($contact['email']);
55     if (!check_email($email, false)) {
6f0968 56       $OUTPUT->show_message('emailformaterror', 'error', array('email' => $contact['email']));
A 57       $OUTPUT->send();
58     }
e99991 59
e8d5bd 60     $contact['email'] = rcube_idn_to_utf8($contact['email']);
e84818 61     $contact['name'] = rcube_addressbook::compose_display_name($contact);
4e17e6 62
f11541 63     // check for existing contacts
3fc00e 64     $existing = $CONTACTS->search('email', $contact['email'], true, false);
ce92ba 65
f11541 66     if ($done = $existing->count)
T 67       $OUTPUT->show_message('contactexists', 'warning');
ce92ba 68     else {
e6ce00 69       $plugin = $RCMAIL->plugins->exec_hook('contact_create', array('record' => $contact, 'source' => null));
3ddbe6 70       $contact = $plugin['record'];
A 71
ce92ba 72       $done = !$plugin['abort'] ? $CONTACTS->insert($contact) : $plugin['result'];
A 73
74       if ($done)
3ddbe6 75         $OUTPUT->show_message('addedsuccessfully', 'confirmation');
A 76     }
4e17e6 77   }
f11541 78 }
4e17e6 79
f11541 80 if (!$done)
6f0968 81   $OUTPUT->show_message($plugin['message'] ? $plugin['message'] : 'errorsavingcontact', 'error');
4e17e6 82
f11541 83 $OUTPUT->send();
b25dfd 84