]> git.donarmstrong.com Git - roundcube.git/blob - program/steps/addressbook/copy.inc
Imported Upstream version 0.3.1
[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 // only process ajax requests
23 if (!$OUTPUT->ajax_call)
24   return;
25
26 $cid = get_input_value('_cid', RCUBE_INPUT_POST);
27 $target = get_input_value('_to', RCUBE_INPUT_POST);
28
29 if ($cid && preg_match('/^[a-z0-9\-_=]+(,[a-z0-9\-_=]+)*$/i', $cid) && strlen($target) && $target !== $source)
30 {
31   $success = 0;
32   $TARGET = $RCMAIL->get_address_book($target);
33
34   if ($TARGET && $TARGET->ready && !$TARGET->readonly) {
35     $arr_cids = split(',', $cid);
36     foreach ($arr_cids as $cid) {
37       $plugin = $RCMAIL->plugins->exec_hook('create_contact', array('record' => $CONTACTS->get_record($cid, true), 'source' => $target));
38     $a_record = $plugin['record'];
39
40     if (!$plugin['abort'])
41         if ($TARGET->insert($a_record, true))
42           $success++;
43     }
44   }
45
46   if ($success == 0)
47     $OUTPUT->show_message('copyerror', 'error');
48   else
49     $OUTPUT->show_message('copysuccess', 'notice', array('nr' => $success));
50     
51   // close connection to second address directory
52   $TARGET->close();
53 }
54
55 // send response
56 $OUTPUT->send();
57
58 ?>