]> git.donarmstrong.com Git - roundcube.git/blob - program/steps/addressbook/copy.inc
Imported Upstream version 0.1~rc2
[roundcube.git] / program / steps / addressbook / copy.inc
1 <?php
2
3 /*
4  +-----------------------------------------------------------------------+
5  | program/steps/addressbook/copy.inc                                    |
6  |                                                                       |
7  | This file is part of the RoundCube Webmail client                     |
8  | Copyright (C) 2007, RoundCube Dev. - Switzerland                      |
9  | Licensed under the GNU GPL                                            |
10  |                                                                       |
11  | PURPOSE:                                                              |
12  |   Copy a contact record from one direcotry to another                 |
13  |                                                                       |
14  +-----------------------------------------------------------------------+
15  | Author: Thomas Bruederli <roundcube@gmail.com>                        |
16  +-----------------------------------------------------------------------+
17
18  $Id: copy.inc 471 2007-02-09 21:25:50Z thomasb $
19
20 */
21
22 $cid = get_input_value('_cid', RCUBE_INPUT_POST);
23 $target = get_input_value('_to', RCUBE_INPUT_POST);
24 if ($cid && preg_match('/^[a-z0-9\-_=]+(,[a-z0-9\-_=]+)*$/i', $cid) && strlen($target) && $target != $source)
25 {
26   if ($target != '0')
27     $TARGET = new rcube_ldap($CONFIG['ldap_public'][$target]);
28   else
29     $TARGET = new rcube_contacts($DB, $_SESSION['user_id']);
30     
31   $success = false;  
32   if ($TARGET && $TARGET->ready && !$TARGET->readonly)
33     $success = $TARGET->insert($CONTACTS->search($CONTACTS->primary_key, $cid), true);
34
35   if (empty($success))
36     $OUTPUT->show_message('copyerror', 'error');
37   else
38     $OUTPUT->show_message('copysuccess', 'notice', array('nr' => count($success)));
39     
40   // close connection to second address directory
41   $TARGET->close();
42 }
43
44 // send response
45 $OUTPUT->send();
46
47 ?>