commit
2103c331a0
@ -0,0 +1,122 @@ |
||||
<?php |
||||
/** |
||||
* Copyright (c) 2011 Bart Visscher bartv@thisnet.nl |
||||
* This file is licensed under the Affero General Public License version 3 or |
||||
* later. |
||||
* See the COPYING-README file. |
||||
*/ |
||||
|
||||
/** |
||||
* This class manages our app actions |
||||
*/ |
||||
OC_Contacts_App::$l10n = new OC_L10N('contacts'); |
||||
class OC_Contacts_App{ |
||||
public static $l10n; |
||||
|
||||
/** |
||||
* Render templates/part.details to json output |
||||
* @param int $id of contact |
||||
* @param Sabre_VObject_Component $vcard to render |
||||
*/ |
||||
public static function renderDetails($id, $vcard){ |
||||
$property_types = self::getAddPropertyOptions(); |
||||
$adr_types = self::getTypesOfProperty('ADR'); |
||||
$phone_types = self::getTypesOfProperty('TEL'); |
||||
|
||||
$details = OC_Contacts_VCard::structureContact($vcard); |
||||
$name = $details['FN'][0]['value']; |
||||
$tmpl = new OC_Template('contacts','part.details'); |
||||
$tmpl->assign('details',$details); |
||||
$tmpl->assign('id',$id); |
||||
$tmpl->assign('property_types',$property_types); |
||||
$tmpl->assign('adr_types',$adr_types); |
||||
$tmpl->assign('phone_types',$phone_types); |
||||
$page = $tmpl->fetchPage(); |
||||
|
||||
OC_JSON::success(array('data' => array( 'id' => $id, 'name' => $name, 'page' => $page ))); |
||||
} |
||||
|
||||
public static function getAddressbook($id){ |
||||
$addressbook = OC_Contacts_Addressbook::find( $id ); |
||||
if( $addressbook === false || $addressbook['userid'] != OC_USER::getUser()){ |
||||
OC_JSON::error(array('data' => array( 'message' => self::$l10n->t('This is not your addressbook.')))); // Same here (as with the contact error). Could this error be improved? |
||||
exit(); |
||||
} |
||||
return $addressbook; |
||||
} |
||||
|
||||
public static function getContactObject($id){ |
||||
$card = OC_Contacts_VCard::find( $id ); |
||||
if( $card === false ){ |
||||
OC_JSON::error(array('data' => array( 'message' => self::$l10n->t('Contact could not be found.')))); |
||||
exit(); |
||||
} |
||||
|
||||
self::getAddressbook( $card['addressbookid'] ); |
||||
return $card; |
||||
} |
||||
|
||||
public static function getContactVCard($id){ |
||||
$card = self::getContactObject( $id ); |
||||
|
||||
$vcard = OC_VObject::parse($card['carddata']); |
||||
// Check if the card is valid |
||||
if(is_null($vcard)){ |
||||
OC_JSON::error(array('data' => array( 'message' => self::$l10n->t('vCard could not be read.')))); |
||||
exit(); |
||||
} |
||||
return $vcard; |
||||
} |
||||
|
||||
public static function getPropertyLineByChecksum($vcard, $checksum){ |
||||
$line = null; |
||||
for($i=0;$i<count($vcard->children);$i++){ |
||||
if(md5($vcard->children[$i]->serialize()) == $checksum ){ |
||||
$line = $i; |
||||
} |
||||
} |
||||
if(is_null($line)){ |
||||
OC_JSON::error(array('data' => array( 'message' => self::$l10n->t('Information about vCard is incorrect. Please reload the page.')))); |
||||
exit(); |
||||
} |
||||
return $line; |
||||
} |
||||
|
||||
/** |
||||
* @return array of vcard prop => label |
||||
*/ |
||||
public static function getAddPropertyOptions(){ |
||||
$l10n = self::$l10n; |
||||
return array( |
||||
'ADR' => $l10n->t('Address'), |
||||
'TEL' => $l10n->t('Telephone'), |
||||
'EMAIL' => $l10n->t('Email'), |
||||
'ORG' => $l10n->t('Organization'), |
||||
); |
||||
} |
||||
|
||||
/** |
||||
* @return types for property $prop |
||||
*/ |
||||
public static function getTypesOfProperty($prop){ |
||||
$l = self::$l10n; |
||||
switch($prop){ |
||||
case 'ADR': |
||||
return array( |
||||
'WORK' => $l->t('Work'), |
||||
'HOME' => $l->t('Home'), |
||||
); |
||||
case 'TEL': |
||||
return array( |
||||
'HOME' => $l->t('Home'), |
||||
'CELL' => $l->t('Mobile'), |
||||
'WORK' => $l->t('Work'), |
||||
'TEXT' => $l->t('Text'), |
||||
'VOICE' => $l->t('Voice'), |
||||
'FAX' => $l->t('Fax'), |
||||
'VIDEO' => $l->t('Video'), |
||||
'PAGER' => $l->t('Pager'), |
||||
); |
||||
} |
||||
} |
||||
} |
@ -0,0 +1,100 @@ |
||||
<?php |
||||
|
||||
/** |
||||
* ownCloud |
||||
* |
||||
* Original: |
||||
* @author Frank Karlitschek |
||||
* @copyright 2010 Frank Karlitschek karlitschek@kde.org |
||||
* |
||||
* Adapted: |
||||
* @author Michiel de Jong, 2011 |
||||
* |
||||
* 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/>. |
||||
* |
||||
*/ |
||||
|
||||
|
||||
// Do not load FS ... |
||||
$RUNTIME_NOSETUPFS = true; |
||||
|
||||
require_once('../../lib/base.php'); |
||||
OC_Util::checkAppEnabled('remoteStorage'); |
||||
require_once('Sabre/autoload.php'); |
||||
require_once('lib_remoteStorage.php'); |
||||
require_once('oauth_ro_auth.php'); |
||||
|
||||
ini_set('default_charset', 'UTF-8'); |
||||
#ini_set('error_reporting', ''); |
||||
@ob_clean(); |
||||
|
||||
//allow use as remote storage for other websites |
||||
if(isset($_SERVER['HTTP_ORIGIN'])) { |
||||
header('Access-Control-Allow-Origin: ' . $_SERVER['HTTP_ORIGIN']); |
||||
header('Access-Control-Max-Age: 3600'); |
||||
header('Access-Control-Allow-Methods: OPTIONS, GET, PUT, DELETE, PROPFIND'); |
||||
header('Access-Control-Allow-Headers: Authorization, Content-Type'); |
||||
} else { |
||||
header('Access-Control-Allow-Origin: *'); |
||||
} |
||||
|
||||
$path = substr($_SERVER["REQUEST_URI"], strlen($_SERVER["SCRIPT_NAME"])); |
||||
$pathParts = explode('/', $path); |
||||
// for webdav: |
||||
// 0/ 1 / 2 / 3 / 4 / 5 / 6 / 7 |
||||
// /$ownCloudUser/remoteStorage/webdav/$userHost/$userName/$dataScope/$key |
||||
// for oauth: |
||||
// 0/ 1 / 2 / 3 / 4 |
||||
// /$ownCloudUser/remoteStorage/oauth/auth |
||||
|
||||
if(count($pathParts) == 2 && $pathParts[0] == '') { |
||||
//TODO: input checking. these explodes may fail to produces the desired arrays: |
||||
$subPathParts = explode('?', $pathParts[1]); |
||||
$ownCloudUser = $subPathParts[0]; |
||||
foreach($_GET as $k => $v) { |
||||
if($k=='user_address'){ |
||||
$userAddress=$v; |
||||
} else if($k=='redirect_uri'){ |
||||
$appUrl=$v; |
||||
} else if($k=='scope'){ |
||||
$category=$v; |
||||
} |
||||
} |
||||
$currUser = OC_User::getUser(); |
||||
if($currUser == $ownCloudUser) { |
||||
if(isset($_POST['allow'])) { |
||||
//TODO: check if this can be faked by editing the cookie in firebug! |
||||
$token=OC_remoteStorage::createCategory($appUrl, $category); |
||||
header('Location: '.$_GET['redirect_uri'].'#access_token='.$token.'&token_type=bearer'); |
||||
} else { |
||||
echo '<form method="POST"><input name="allow" type="submit" value="Allow this web app to store stuff on your owncloud."></form>'; |
||||
} |
||||
} else { |
||||
if((isset($_SERVER['HTTPS'])) && ($_SERVER['HTTPS'])) { |
||||
$url = "https://"; |
||||
} else { |
||||
$url = "http://"; |
||||
} |
||||
$url .= $_SERVER['SERVER_NAME']; |
||||
$url .= substr($_SERVER['SCRIPT_NAME'], 0, -strlen('apps/remoteStorage/compat.php')); |
||||
die('You are '.($currUser?'logged in as '.$currUser.' instead of '.$ownCloudUser:'not logged in').'. Please ' |
||||
.'<input type="submit" onclick="' |
||||
."window.open('$url','Close me!','height=600,width=300');" |
||||
.'" value="log in">' |
||||
.', close the pop-up, and ' |
||||
.'<form method="POST"><input name="allow" type="submit" value="Click here"></form>'); |
||||
} |
||||
} else { |
||||
die('please use auth.php/username?params. '.var_export($pathParts, true)); |
||||
} |
@ -0,0 +1,201 @@ |
||||
<?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 |
||||
*/ |
||||
public function getVObject(){ |
||||
return $this->vobject; |
||||
} |
||||
|
||||
/** |
||||
* @brief Parses the VObject |
||||
* @param string VObject as string |
||||
* @returns Sabre_VObject or null |
||||
*/ |
||||
public static function parse($data){ |
||||
try { |
||||
Sabre_VObject_Reader::$elementMap['LAST-MODIFIED'] = 'Sabre_VObject_Element_DateTime'; |
||||
$vobject = Sabre_VObject_Reader::read($data); |
||||
if ($vobject instanceof Sabre_VObject_Component){ |
||||
$vobject = new OC_VObject($vobject); |
||||
} |
||||
return $vobject; |
||||
} catch (Exception $e) { |
||||
return null; |
||||
} |
||||
} |
||||
|
||||
/** |
||||
* @brief Escapes semicolons |
||||
* @param string $value |
||||
* @return string |
||||
*/ |
||||
public static function escapeSemicolons($value){ |
||||
foreach($value as &$i ){ |
||||
$i = implode("\\\\;", explode(';', $i)); |
||||
} |
||||
return implode(';',$value); |
||||
} |
||||
|
||||
/** |
||||
* @brief Creates an array out of a multivalue property |
||||
* @param string $value |
||||
* @return array |
||||
*/ |
||||
public static function unescapeSemicolons($value){ |
||||
$array = explode(';',$value); |
||||
for($i=0;$i<count($array);$i++){ |
||||
if(substr($array[$i],-2,2)=="\\\\"){ |
||||
if(isset($array[$i+1])){ |
||||
$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 |
||||
*/ |
||||
public function __construct($vobject_or_name){ |
||||
if (is_object($vobject_or_name)){ |
||||
$this->vobject = $vobject_or_name; |
||||
} else { |
||||
$this->vobject = new Sabre_VObject_Component($vobject_or_name); |
||||
} |
||||
} |
||||
|
||||
public function add($item, $itemValue = null){ |
||||
if ($item instanceof OC_VObject){ |
||||
$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 |
||||
*/ |
||||
public function addProperty($name, $value, $parameters=array()){ |
||||
if(is_array($value)){ |
||||
$value = OC_VObject::escapeSemicolons($value); |
||||
} |
||||
$property = new Sabre_VObject_Property( $name, $value ); |
||||
foreach($parameters as $name => $value){ |
||||
$property->parameters[] = new Sabre_VObject_Parameter($name, $value); |
||||
} |
||||
|
||||
$this->vobject->add($property); |
||||
return $property; |
||||
} |
||||
|
||||
public function setUID(){ |
||||
$uid = substr(md5(rand().time()),0,10); |
||||
$this->vobject->add('UID',$uid); |
||||
} |
||||
|
||||
public function setString($name, $string){ |
||||
if ($string != ''){ |
||||
$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 |
||||
*/ |
||||
public function setDateTime($name, $datetime, $dateType=Sabre_VObject_Element_DateTime::LOCALTZ){ |
||||
if ($datetime == 'now'){ |
||||
$datetime = new DateTime(); |
||||
} |
||||
if ($datetime instanceof DateTime){ |
||||
$datetime_element = new Sabre_VObject_Element_DateTime($name); |
||||
$datetime_element->setDateTime($datetime, $dateType); |
||||
$this->vobject->__set($name, $datetime_element); |
||||
}else{ |
||||
$this->vobject->__unset($name); |
||||
} |
||||
} |
||||
|
||||
public function getAsString($name){ |
||||
return $this->vobject->__isset($name) ? |
||||
$this->vobject->__get($name)->value : |
||||
''; |
||||
} |
||||
|
||||
public function getAsArray($name){ |
||||
$values = array(); |
||||
if ($this->vobject->__isset($name)){ |
||||
$values = explode(',', $this->getAsString($name)); |
||||
$values = array_map('trim', $values); |
||||
} |
||||
return $values; |
||||
} |
||||
|
||||
public function &__get($name){ |
||||
if ($name == 'children'){ |
||||
return $this->vobject->children; |
||||
} |
||||
$return = $this->vobject->__get($name); |
||||
if ($return instanceof Sabre_VObject_Component){ |
||||
$return = new OC_VObject($return); |
||||
} |
||||
return $return; |
||||
} |
||||
|
||||
public function __set($name, $value){ |
||||
return $this->vobject->__set($name, $value); |
||||
} |
||||
|
||||
public function __unset($name){ |
||||
return $this->vobject->__unset($name); |
||||
} |
||||
|
||||
public function __call($function,$arguments){ |
||||
return call_user_func_array(array($this->vobject, $function), $arguments); |
||||
} |
||||
} |
Loading…
Reference in new issue