]> git.donarmstrong.com Git - roundcube.git/blobdiff - program/steps/addressbook/copy.inc
Imported Upstream version 0.3
[roundcube.git] / program / steps / addressbook / copy.inc
index e6d917e92bd651ea7f7b3895a83cdb74ba8b6300..a27b67b09211b0cd95a28e6ef82bcfc6ebadeb24 100644 (file)
 
 */
 
+// only process ajax requests
+if (!$OUTPUT->ajax_call)
+  return;
+
 $cid = get_input_value('_cid', RCUBE_INPUT_POST);
 $target = get_input_value('_to', RCUBE_INPUT_POST);
 if ($cid && preg_match('/^[a-z0-9\-_=]+(,[a-z0-9\-_=]+)*$/i', $cid) && strlen($target) && $target != $source)
 {
-  if ($target != '0')
-    $TARGET = new rcube_ldap($CONFIG['ldap_public'][$target]);
-  else
-    $TARGET = new rcube_contacts($DB, $_SESSION['user_id']);
-    
-  $success = false;  
-  if ($TARGET && $TARGET->ready && !$TARGET->readonly)
-    $success = $TARGET->insert($CONTACTS->search($CONTACTS->primary_key, $cid), true);
+  $success = false;
+  $TARGET = $RCMAIL->get_address_book($target);
+
+  if ($TARGET && $TARGET->ready && !$TARGET->readonly) {
+    $plugin = $RCMAIL->plugins->exec_hook('create_contact', array('record' => $CONTACTS->search($CONTACTS->primary_key, $cid), 'source' => $target));
+    $a_record = $plugin['record'];
+
+    if (!$plugin['abort'])
+      $success = $TARGET->insert($CONTACTS->search($a_record, true));
+  }
 
   if (empty($success))
     $OUTPUT->show_message('copyerror', 'error');
   else
     $OUTPUT->show_message('copysuccess', 'notice', array('nr' => count($success)));
+    
+  // close connection to second address directory
+  $TARGET->close();
 }
-  
+
 // send response
 $OUTPUT->send();
 
-?>
\ No newline at end of file
+?>