]> git.donarmstrong.com Git - roundcube.git/blob - program/steps/mail/addcontact.inc
Imported Upstream version 0.7
[roundcube.git] / program / steps / mail / addcontact.inc
1 <?php
2
3 /*
4  +-----------------------------------------------------------------------+
5  | program/steps/mail/addcontact.inc                                     |
6  |                                                                       |
7  | This file is part of the Roundcube Webmail client                     |
8  | Copyright (C) 2005-2009, The Roundcube Dev Team                       |
9  | Licensed under the GNU GPL                                            |
10  |                                                                       |
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: addcontact.inc 5415 2011-11-11 15:04:45Z alec $
19
20 */
21
22 // only process ajax requests
23 if (!$OUTPUT->ajax_call)
24   return;
25
26 $abook = $RCMAIL->config->get('default_addressbook');
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)
33 if ($abook == null || !is_object($CONTACTS)) {
34   $source = reset($RCMAIL->get_address_sources(true));
35   $CONTACTS = $RCMAIL->get_address_book($source['id'], true);
36 }
37
38 if (!empty($_POST['_address']) && is_object($CONTACTS))
39 {
40   $contact_arr = $IMAP->decode_address_list(get_input_value('_address', RCUBE_INPUT_POST, true), 1, false);
41
42   if (!empty($contact_arr[1]['mailto'])) {
43     $contact = array(
44       'email' => $contact_arr[1]['mailto'],
45       'name' => $contact_arr[1]['name']
46     );
47
48     // Validity checks
49     if (empty($contact['email'])) {
50       $OUTPUT->show_message('errorsavingcontact', 'error');
51       $OUTPUT->send();
52     }
53
54     $email = rcube_idn_to_ascii($contact['email']);
55     if (!check_email($email, false)) {
56       $OUTPUT->show_message('emailformaterror', 'error', array('email' => $contact['email']));
57       $OUTPUT->send();
58     }
59
60     $contact['email'] = rcube_idn_to_utf8($contact['email']);
61     $contact['name'] = rcube_addressbook::compose_display_name($contact);
62
63     // validate contact record
64     if (!$CONTACTS->validate($contact, true)) {
65       $error = $CONTACTS->get_error();
66       // TODO: show dialog to complete record
67       // if ($error['type'] == rcube_addressbook::ERROR_VALIDATE) { }
68
69       $OUTPUT->show_message($error['message'] ? $error['message'] : 'errorsavingcontact', 'error');
70       $OUTPUT->send();
71     }
72
73     // check for existing contacts
74     $existing = $CONTACTS->search('email', $contact['email'], 1, false);
75
76     if ($done = $existing->count)
77       $OUTPUT->show_message('contactexists', 'warning');
78     else {
79       $plugin = $RCMAIL->plugins->exec_hook('contact_create', array('record' => $contact, 'source' => null));
80       $contact = $plugin['record'];
81
82       $done = !$plugin['abort'] ? $CONTACTS->insert($contact) : $plugin['result'];
83
84       if ($done)
85         $OUTPUT->show_message('addedsuccessfully', 'confirmation');
86     }
87   }
88 }
89
90 if (!$done)
91   $OUTPUT->show_message($plugin['message'] ? $plugin['message'] : 'errorsavingcontact', 'error');
92
93 $OUTPUT->send();
94