. * */ // Init owncloud require_once('../../../lib/base.php'); // Check if we are a user OC_JSON::checkLoggedIn(); OC_JSON::checkAppEnabled('contacts'); $id = $_POST['id']; $checksum = $_POST['checksum']; $vcard = OC_Contacts_App::getContactVCard( $id ); $line = OC_Contacts_App::getPropertyLineByChecksum($vcard, $checksum); // Set the value $value = $_POST['value']; if(is_array($value)){ $value = OC_VObject::escapeSemicolons($value); } $vcard->children[$line]->setValue($value); // Add parameters $postparameters = isset($_POST['parameters'])?$_POST['parameters']:array(); if ($vcard->children[$line]->name == 'TEL' && !array_key_exists('TYPE', $postparameters)){ $postparameters['TYPE']=''; } for($i=0;$ichildren[$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{ 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); } } 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()); OC_Contacts_VCard::edit($id,$vcard->serialize()); $adr_types = OC_Contacts_App::getTypesOfProperty('ADR'); $phone_types = OC_Contacts_App::getTypesOfProperty('TEL'); if ($vcard->children[$line]->name == 'FN'){ $tmpl = new OC_Template('contacts','part.property.FN'); } else{ $tmpl = new OC_Template('contacts','part.property'); } $tmpl->assign('adr_types',$adr_types); $tmpl->assign('phone_types',$phone_types); $tmpl->assign('property',OC_Contacts_VCard::structureProperty($vcard->children[$line],$line)); $page = $tmpl->fetchPage(); OC_JSON::success(array('data' => array( 'page' => $page, 'line' => $line, 'oldchecksum' => $_POST['checksum'] )));