]> git.donarmstrong.com Git - roundcube.git/blob - program/steps/mail/addcontact.inc
Imported Upstream version 0.2~alpha
[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-2007, RoundCube Dev. - Switzerland                 |
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 1365 2008-05-08 08:22:18Z alec $
19
20 */
21
22 $done = false;
23
24 if (!empty($_POST['_address']))
25 {
26   $CONTACTS = array();
27   if (strtolower($CONFIG['address_book_type']) == 'ldap') {
28     // Use the first writable LDAP address book.
29     foreach ($CONFIG["ldap_public"] as $id => $prop) {
30       if ($prop["writable"]) {
31         $CONTACTS = new rcube_ldap($prop);
32         break;
33       } // end if
34     } // end foreach
35   } // end if
36   else {
37     $CONTACTS = new rcube_contacts($DB, $_SESSION['user_id']);
38   } // end else
39   $contact_arr = $IMAP->decode_address_list(get_input_value('_address', RCUBE_INPUT_POST, true), 1, false);
40   
41   if (!empty($contact_arr[1]['mailto']))
42   {
43     $contact = array(
44       'email' => $contact_arr[1]['mailto'],
45       'name' => $contact_arr[1]['name']
46     );
47     
48     // use email address part for name
49     if (empty($contact['name']) || $contact['name'] == $contact['email'])
50       $contact['name'] = ucfirst(preg_replace('/[\.\-]/', ' ', substr($contact['email'], 0, strpos($contact['email'], '@'))));
51
52     // check for existing contacts
53     $existing = $CONTACTS->search('email', $contact['email'], true, false);
54     if ($done = $existing->count)
55       $OUTPUT->show_message('contactexists', 'warning');
56     else if ($done = $CONTACTS->insert($contact))
57       $OUTPUT->show_message('addedsuccessfully', 'confirmation');
58   }
59 }
60
61 if (!$done)
62   $OUTPUT->show_message('errorsavingcontact', 'warning');
63
64 $OUTPUT->send();
65 ?>