2011-08-09 15:53:58 +04:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* ownCloud - Addressbook
|
|
|
|
*
|
|
|
|
* @author Jakob Sack
|
|
|
|
* @copyright 2011 Jakob Sack mail@jakobsack.de
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 3 of the License, or any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU AFFERO GENERAL PUBLIC LICENSE for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public
|
|
|
|
* License along with this library. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
// Init owncloud
|
|
|
|
require_once('../../../lib/base.php');
|
|
|
|
|
|
|
|
$id = $_POST['id'];
|
|
|
|
$checksum = $_POST['checksum'];
|
|
|
|
$l10n = new OC_L10N('contacts');
|
|
|
|
|
|
|
|
// Check if we are a user
|
|
|
|
if( !OC_User::isLoggedIn()){
|
2011-09-23 22:13:15 +04:00
|
|
|
echo json_encode( array( 'status' => 'error', 'data' => array( 'message' => $l10n->t('You need to log in.'))));
|
2011-08-09 15:53:58 +04:00
|
|
|
exit();
|
|
|
|
}
|
|
|
|
|
2011-09-17 02:26:57 +04:00
|
|
|
$card = OC_Contacts_VCard::find( $id );
|
2011-08-09 15:53:58 +04:00
|
|
|
if( $card === false ){
|
2011-09-23 22:13:15 +04:00
|
|
|
echo json_encode( array( 'status' => 'error', 'data' => array( 'message' => $l10n->t('Contact could not be found.'))));
|
2011-08-09 15:53:58 +04:00
|
|
|
exit();
|
|
|
|
}
|
|
|
|
|
2011-09-17 02:26:57 +04:00
|
|
|
$addressbook = OC_Contacts_Addressbook::find( $card['addressbookid'] );
|
2011-08-09 15:53:58 +04:00
|
|
|
if( $addressbook === false || $addressbook['userid'] != OC_USER::getUser()){
|
2011-09-23 22:13:15 +04:00
|
|
|
echo json_encode( array( 'status' => 'error', 'data' => array( 'message' => $l10n->t('This is not your contact.'))));
|
2011-08-09 15:53:58 +04:00
|
|
|
exit();
|
|
|
|
}
|
|
|
|
|
2011-09-17 02:26:57 +04:00
|
|
|
$vcard = OC_Contacts_VCard::parse($card['carddata']);
|
2011-09-09 01:36:47 +04:00
|
|
|
// Check if the card is valid
|
2011-09-15 13:06:21 +04:00
|
|
|
if(is_null($vcard)){
|
2011-09-23 22:13:15 +04:00
|
|
|
echo json_encode( array( 'status' => 'error', 'data' => array( 'message' => $l10n->t('vCard could not be read.'))));
|
2011-09-09 01:36:47 +04:00
|
|
|
exit();
|
|
|
|
}
|
|
|
|
|
2011-08-09 19:42:54 +04:00
|
|
|
$line = null;
|
|
|
|
for($i=0;$i<count($vcard->children);$i++){
|
|
|
|
if(md5($vcard->children[$i]->serialize()) == $checksum ){
|
|
|
|
$line = $i;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if(is_null($line)){
|
2011-09-23 22:13:15 +04:00
|
|
|
echo json_encode( array( 'status' => 'error', 'data' => array( 'message' => $l10n->t('Information about vCard is incorrect. Please reload the page.'))));
|
2011-08-09 15:53:58 +04:00
|
|
|
exit();
|
|
|
|
}
|
|
|
|
|
|
|
|
// Set the value
|
|
|
|
$value = $_POST['value'];
|
|
|
|
if(is_array($value)){
|
2011-09-17 02:26:57 +04:00
|
|
|
$value = OC_Contacts_VCard::escapeSemicolons($value);
|
2011-08-09 15:53:58 +04:00
|
|
|
}
|
|
|
|
$vcard->children[$line]->setValue($value);
|
|
|
|
|
|
|
|
// Add parameters
|
|
|
|
$postparameters = isset($_POST['parameters'])?$_POST['parameters']:array();
|
|
|
|
for($i=0;$i<count($vcard->children[$line]->parameters);$i++){
|
|
|
|
$name = $vcard->children[$line]->parameters[$i]->name;
|
|
|
|
if(array_key_exists($name,$postparameters)){
|
|
|
|
if($postparameters[$name] == '' || is_null($postparameters[$name])){
|
|
|
|
unset($vcard->children[$line]->parameters[$i]);
|
|
|
|
}
|
|
|
|
else{
|
|
|
|
$vcard->children[$line]->parameters[$i]->value = $postparameters[$name];
|
|
|
|
}
|
|
|
|
unset($postparameters[$name]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
$missingparameters = array_keys($postparameters);
|
|
|
|
foreach($missingparameters as $i){
|
|
|
|
if(!$postparameters[$i] == '' && !is_null($postparameters[$i])){
|
|
|
|
$vcard->children[$line]->parameters[] = new Sabre_VObject_Parameter($i,$postparameters[$i]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Do checksum and be happy
|
|
|
|
$checksum = md5($vcard->children[$line]->serialize());
|
|
|
|
|
2011-09-17 02:26:57 +04:00
|
|
|
OC_Contacts_VCard::edit($id,$vcard->serialize());
|
2011-08-09 15:53:58 +04:00
|
|
|
|
|
|
|
$tmpl = new OC_Template('contacts','part.property');
|
2011-09-17 02:26:57 +04:00
|
|
|
$tmpl->assign('property',OC_Contacts_VCard::structureProperty($vcard->children[$line],$line));
|
2011-08-09 15:53:58 +04:00
|
|
|
$page = $tmpl->fetchPage();
|
|
|
|
|
|
|
|
echo json_encode( array( 'status' => 'success', 'data' => array( 'page' => $page, 'line' => $line, 'oldchecksum' => $_POST['checksum'] )));
|