2012-02-20 14:26:22 +04:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Copyright (c) 2012 Georg Ehrke <ownclouddev@georgswebsite.de>
|
|
|
|
* This file is licensed under the Affero General Public License version 3 or
|
|
|
|
* later.
|
|
|
|
* See the COPYING-README file.
|
|
|
|
*/
|
|
|
|
require_once('../../../../lib/base.php');
|
|
|
|
$id = strip_tags($_GET['id']);
|
|
|
|
$idtype = strip_tags($_GET['idtype']);
|
|
|
|
switch($idtype){
|
|
|
|
case 'calendar':
|
|
|
|
case 'event':
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
OC_JSON::error(array('message'=>'unexspected parameter'));
|
|
|
|
exit;
|
|
|
|
}
|
|
|
|
$sharewith = $_GET['sharewith'];
|
|
|
|
$sharetype = strip_tags($_GET['sharetype']);
|
|
|
|
switch($sharetype){
|
|
|
|
case 'user':
|
|
|
|
case 'group':
|
|
|
|
case 'public':
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
OC_JSON::error(array('message'=>'unexspected parameter'));
|
|
|
|
exit;
|
|
|
|
}
|
|
|
|
if($sharetype == 'user' && !OC_User::userExists($sharewith)){
|
|
|
|
OC_JSON::error(array('message'=>'user not found'));
|
|
|
|
exit;
|
2012-02-18 00:19:04 +04:00
|
|
|
}elseif($sharetype == 'group' && !OC_Group::groupExists($sharewith)){
|
2012-02-20 14:26:22 +04:00
|
|
|
OC_JSON::error(array('message'=>'group not found'));
|
|
|
|
exit;
|
|
|
|
}
|
2012-04-14 05:49:24 +04:00
|
|
|
$success = OC_Calendar_Share::unshare(OC_User::getUser(), $sharewith, $sharetype, $id, (($idtype=='calendar') ? OC_Calendar_Share::CALENDAR : OC_Calendar_Share::EVENT));
|
2012-02-20 14:26:22 +04:00
|
|
|
if($success){
|
|
|
|
OC_JSON::success();
|
|
|
|
}else{
|
|
|
|
OC_JSON::error(array('message'=>'can not unshare'));
|
|
|
|
exit;
|
|
|
|
}
|