2011-09-20 16:41:17 +04:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* ownCloud
|
|
|
|
*
|
|
|
|
* @author Bart Visscher
|
|
|
|
* @copyright 2011 Bart Visscher bartv@thisnet.nl
|
|
|
|
*
|
|
|
|
* 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/>.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* This class provides a streamlined interface to the Sabre VObject classes
|
|
|
|
*/
|
|
|
|
class OC_VObject{
|
|
|
|
/** @var Sabre_VObject_Component */
|
|
|
|
protected $vobject;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @returns Sabre_VObject_Component
|
|
|
|
*/
|
2012-09-07 17:22:01 +04:00
|
|
|
public function getVObject() {
|
2011-09-20 16:41:17 +04:00
|
|
|
return $this->vobject;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Parses the VObject
|
|
|
|
* @param string VObject as string
|
|
|
|
* @returns Sabre_VObject or null
|
|
|
|
*/
|
2012-09-07 17:22:01 +04:00
|
|
|
public static function parse($data) {
|
2011-09-20 16:41:17 +04:00
|
|
|
try {
|
2012-02-25 01:20:40 +04:00
|
|
|
Sabre_VObject_Property::$classMap['LAST-MODIFIED'] = 'Sabre_VObject_Property_DateTime';
|
2011-09-20 16:41:17 +04:00
|
|
|
$vobject = Sabre_VObject_Reader::read($data);
|
2012-09-07 17:22:01 +04:00
|
|
|
if ($vobject instanceof Sabre_VObject_Component) {
|
2011-09-20 16:41:17 +04:00
|
|
|
$vobject = new OC_VObject($vobject);
|
|
|
|
}
|
|
|
|
return $vobject;
|
|
|
|
} catch (Exception $e) {
|
2011-12-10 00:56:03 +04:00
|
|
|
OC_Log::write('vobject', $e->getMessage(), OC_Log::ERROR);
|
2011-09-20 16:41:17 +04:00
|
|
|
return null;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Escapes semicolons
|
|
|
|
* @param string $value
|
|
|
|
* @return string
|
|
|
|
*/
|
2012-09-07 17:22:01 +04:00
|
|
|
public static function escapeSemicolons($value) {
|
|
|
|
foreach($value as &$i ) {
|
2011-09-20 16:41:17 +04:00
|
|
|
$i = implode("\\\\;", explode(';', $i));
|
|
|
|
}
|
|
|
|
return implode(';',$value);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Creates an array out of a multivalue property
|
|
|
|
* @param string $value
|
|
|
|
* @return array
|
|
|
|
*/
|
2012-09-07 17:22:01 +04:00
|
|
|
public static function unescapeSemicolons($value) {
|
2011-09-20 16:41:17 +04:00
|
|
|
$array = explode(';',$value);
|
2012-09-07 17:22:01 +04:00
|
|
|
for($i=0;$i<count($array);$i++) {
|
|
|
|
if(substr($array[$i],-2,2)=="\\\\") {
|
|
|
|
if(isset($array[$i+1])) {
|
2011-09-20 16:41:17 +04:00
|
|
|
$array[$i] = substr($array[$i],0,count($array[$i])-2).';'.$array[$i+1];
|
|
|
|
unset($array[$i+1]);
|
|
|
|
}
|
|
|
|
else{
|
|
|
|
$array[$i] = substr($array[$i],0,count($array[$i])-2).';';
|
|
|
|
}
|
|
|
|
$i = $i - 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return $array;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Constuctor
|
|
|
|
* @param Sabre_VObject_Component or string
|
|
|
|
*/
|
2012-09-07 17:22:01 +04:00
|
|
|
public function __construct($vobject_or_name) {
|
|
|
|
if (is_object($vobject_or_name)) {
|
2011-09-20 16:41:17 +04:00
|
|
|
$this->vobject = $vobject_or_name;
|
|
|
|
} else {
|
|
|
|
$this->vobject = new Sabre_VObject_Component($vobject_or_name);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-09-07 17:22:01 +04:00
|
|
|
public function add($item, $itemValue = null) {
|
|
|
|
if ($item instanceof OC_VObject) {
|
2011-09-20 16:41:17 +04:00
|
|
|
$item = $item->getVObject();
|
|
|
|
}
|
|
|
|
$this->vobject->add($item, $itemValue);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Add property to vobject
|
|
|
|
* @param object $name of property
|
|
|
|
* @param object $value of property
|
|
|
|
* @param object $parameters of property
|
|
|
|
* @returns Sabre_VObject_Property newly created
|
|
|
|
*/
|
2012-09-07 17:22:01 +04:00
|
|
|
public function addProperty($name, $value, $parameters=array()) {
|
|
|
|
if(is_array($value)) {
|
2011-09-20 16:41:17 +04:00
|
|
|
$value = OC_VObject::escapeSemicolons($value);
|
|
|
|
}
|
|
|
|
$property = new Sabre_VObject_Property( $name, $value );
|
2012-09-07 17:22:01 +04:00
|
|
|
foreach($parameters as $name => $value) {
|
2011-09-20 16:41:17 +04:00
|
|
|
$property->parameters[] = new Sabre_VObject_Parameter($name, $value);
|
|
|
|
}
|
|
|
|
|
|
|
|
$this->vobject->add($property);
|
|
|
|
return $property;
|
|
|
|
}
|
|
|
|
|
2012-09-07 17:22:01 +04:00
|
|
|
public function setUID() {
|
2011-09-20 16:41:17 +04:00
|
|
|
$uid = substr(md5(rand().time()),0,10);
|
|
|
|
$this->vobject->add('UID',$uid);
|
|
|
|
}
|
|
|
|
|
2012-09-07 17:22:01 +04:00
|
|
|
public function setString($name, $string) {
|
|
|
|
if ($string != '') {
|
2011-12-10 00:56:03 +04:00
|
|
|
$string = strtr($string, array("\r\n"=>"\n"));
|
2011-09-20 16:41:17 +04:00
|
|
|
$this->vobject->__set($name, $string);
|
|
|
|
}else{
|
|
|
|
$this->vobject->__unset($name);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Sets or unsets the Date and Time for a property.
|
|
|
|
* When $datetime is set to 'now', use the current time
|
|
|
|
* When $datetime is null, unset the property
|
|
|
|
*
|
|
|
|
* @param string property name
|
|
|
|
* @param DateTime $datetime
|
|
|
|
* @param int $dateType
|
|
|
|
* @return void
|
|
|
|
*/
|
2012-09-07 17:22:01 +04:00
|
|
|
public function setDateTime($name, $datetime, $dateType=Sabre_VObject_Property_DateTime::LOCALTZ) {
|
|
|
|
if ($datetime == 'now') {
|
2011-09-20 16:41:17 +04:00
|
|
|
$datetime = new DateTime();
|
|
|
|
}
|
2012-09-07 17:22:01 +04:00
|
|
|
if ($datetime instanceof DateTime) {
|
2012-02-25 01:20:40 +04:00
|
|
|
$datetime_element = new Sabre_VObject_Property_DateTime($name);
|
2011-09-20 16:41:17 +04:00
|
|
|
$datetime_element->setDateTime($datetime, $dateType);
|
|
|
|
$this->vobject->__set($name, $datetime_element);
|
|
|
|
}else{
|
|
|
|
$this->vobject->__unset($name);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-09-07 17:22:01 +04:00
|
|
|
public function getAsString($name) {
|
2011-09-20 16:41:17 +04:00
|
|
|
return $this->vobject->__isset($name) ?
|
|
|
|
$this->vobject->__get($name)->value :
|
|
|
|
'';
|
|
|
|
}
|
|
|
|
|
2012-09-07 17:22:01 +04:00
|
|
|
public function getAsArray($name) {
|
2011-09-20 16:41:17 +04:00
|
|
|
$values = array();
|
2012-09-07 17:22:01 +04:00
|
|
|
if ($this->vobject->__isset($name)) {
|
2011-09-20 16:41:17 +04:00
|
|
|
$values = explode(',', $this->getAsString($name));
|
|
|
|
$values = array_map('trim', $values);
|
|
|
|
}
|
|
|
|
return $values;
|
|
|
|
}
|
|
|
|
|
2012-09-07 17:22:01 +04:00
|
|
|
public function &__get($name) {
|
|
|
|
if ($name == 'children') {
|
2011-09-20 16:41:17 +04:00
|
|
|
return $this->vobject->children;
|
|
|
|
}
|
|
|
|
$return = $this->vobject->__get($name);
|
2012-09-07 17:22:01 +04:00
|
|
|
if ($return instanceof Sabre_VObject_Component) {
|
2011-09-20 16:41:17 +04:00
|
|
|
$return = new OC_VObject($return);
|
|
|
|
}
|
|
|
|
return $return;
|
|
|
|
}
|
|
|
|
|
2012-09-07 17:22:01 +04:00
|
|
|
public function __set($name, $value) {
|
2011-09-20 16:41:17 +04:00
|
|
|
return $this->vobject->__set($name, $value);
|
|
|
|
}
|
|
|
|
|
2012-09-07 17:22:01 +04:00
|
|
|
public function __unset($name) {
|
2011-09-20 16:41:17 +04:00
|
|
|
return $this->vobject->__unset($name);
|
|
|
|
}
|
|
|
|
|
2012-09-07 17:22:01 +04:00
|
|
|
public function __isset($name) {
|
2011-12-10 00:56:03 +04:00
|
|
|
return $this->vobject->__isset($name);
|
|
|
|
}
|
|
|
|
|
2012-09-07 17:22:01 +04:00
|
|
|
public function __call($function,$arguments) {
|
2011-09-20 16:41:17 +04:00
|
|
|
return call_user_func_array(array($this->vobject, $function), $arguments);
|
|
|
|
}
|
|
|
|
}
|