2011-08-07 00:32:06 +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/>.
|
|
|
|
*
|
|
|
|
*/
|
2012-03-29 17:24:32 +04:00
|
|
|
function bailOut($msg) {
|
|
|
|
OC_JSON::error(array('data' => array('message' => $msg)));
|
2012-05-01 19:38:27 +04:00
|
|
|
OCP\Util::writeLog('contacts','ajax/saveproperty.php: '.$msg, OCP\Util::DEBUG);
|
2012-03-29 17:24:32 +04:00
|
|
|
exit();
|
|
|
|
}
|
2011-08-07 00:32:06 +04:00
|
|
|
|
|
|
|
// Init owncloud
|
2012-04-17 21:31:29 +04:00
|
|
|
|
2011-08-07 00:32:06 +04:00
|
|
|
|
|
|
|
// 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-07 00:32:06 +04:00
|
|
|
|
2012-03-29 17:24:32 +04:00
|
|
|
$id = isset($_GET['id'])?$_GET['id']:null;
|
|
|
|
if(!$id) {
|
|
|
|
bailOut(OC_Contacts_App::$l10n->t('id is not set.'));
|
|
|
|
}
|
2011-12-07 01:31:04 +04:00
|
|
|
$card = OC_Contacts_App::getContactObject( $id );
|
2011-08-07 00:32:06 +04:00
|
|
|
|
2011-09-17 02:26:57 +04:00
|
|
|
OC_Contacts_VCard::delete($id);
|
2011-09-24 00:22:59 +04:00
|
|
|
OC_JSON::success(array('data' => array( 'id' => $id )));
|