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');
|
|
|
|
|
|
|
|
// Check if we are a user
|
2011-09-24 00:22:59 +04:00
|
|
|
OC_JSON::checkLoggedIn();
|
2011-10-01 01:05:10 +04:00
|
|
|
OC_JSON::checkAppEnabled('contacts');
|
2011-08-09 15:53:58 +04:00
|
|
|
|
2011-12-07 01:31:04 +04:00
|
|
|
$id = $_POST['id'];
|
|
|
|
$checksum = $_POST['checksum'];
|
2011-09-09 01:36:47 +04:00
|
|
|
|
2011-12-07 01:31:04 +04:00
|
|
|
$vcard = OC_Contacts_App::getContactVCard( $id );
|
|
|
|
$line = OC_Contacts_App::getPropertyLineByChecksum($vcard, $checksum);
|
2011-08-09 15:53:58 +04:00
|
|
|
|
|
|
|
// Set the value
|
|
|
|
$value = $_POST['value'];
|
|
|
|
if(is_array($value)){
|
2011-09-20 16:41:17 +04:00
|
|
|
$value = OC_VObject::escapeSemicolons($value);
|
2011-08-09 15:53:58 +04:00
|
|
|
}
|
|
|
|
$vcard->children[$line]->setValue($value);
|
|
|
|
|
|
|
|
// Add parameters
|
|
|
|
$postparameters = isset($_POST['parameters'])?$_POST['parameters']:array();
|
2011-11-24 00:06:51 +04:00
|
|
|
if ($vcard->children[$line]->name == 'TEL' && !array_key_exists('TYPE', $postparameters)){
|
|
|
|
$postparameters['TYPE']='';
|
|
|
|
}
|
2011-08-09 15:53:58 +04:00
|
|
|
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{
|
2011-11-24 00:06:51 +04:00
|
|
|
unset($vcard->children[$line][$name]);
|
|
|
|
$values = $postparameters[$name];
|
|
|
|
if (!is_array($values)){
|
|
|
|
$values = array($values);
|
|
|
|
}
|
|
|
|
foreach($values as $value){
|
|
|
|
$vcard->children[$line]->add($name, $value);
|
|
|
|
}
|
2011-08-09 15:53:58 +04:00
|
|
|
}
|
|
|
|
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
|
|
|
|
2011-12-07 01:31:04 +04:00
|
|
|
$adr_types = OC_Contacts_App::getTypesOfProperty('ADR');
|
|
|
|
$phone_types = OC_Contacts_App::getTypesOfProperty('TEL');
|
2011-11-18 02:54:14 +04:00
|
|
|
|
2011-12-03 00:24:48 +04:00
|
|
|
if ($vcard->children[$line]->name == 'FN'){
|
|
|
|
$tmpl = new OC_Template('contacts','part.property.FN');
|
|
|
|
}
|
|
|
|
else{
|
|
|
|
$tmpl = new OC_Template('contacts','part.property');
|
|
|
|
}
|
2011-11-18 02:54:14 +04:00
|
|
|
$tmpl->assign('adr_types',$adr_types);
|
|
|
|
$tmpl->assign('phone_types',$phone_types);
|
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();
|
|
|
|
|
2011-09-24 00:22:59 +04:00
|
|
|
OC_JSON::success(array('data' => array( 'page' => $page, 'line' => $line, 'oldchecksum' => $_POST['checksum'] )));
|