2011-08-06 20:32:06 +00: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/>.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
// Init owncloud
|
2011-08-09 11:53:58 +00:00
|
|
|
require_once('../../../lib/base.php');
|
2011-08-06 20:32:06 +00:00
|
|
|
|
2011-12-05 02:38:06 +00:00
|
|
|
$id = $_POST['id'];
|
|
|
|
|
|
|
|
OC_Log::write('contacts','deletebook.php: '.$id,OC_Log::DEBUG);
|
2011-08-06 20:32:06 +00:00
|
|
|
|
|
|
|
$l10n = new OC_L10N('contacts');
|
|
|
|
|
|
|
|
// Check if we are a user
|
2011-09-23 20:22:59 +00:00
|
|
|
OC_JSON::checkLoggedIn();
|
2011-09-30 21:05:10 +00:00
|
|
|
OC_JSON::checkAppEnabled('contacts');
|
2011-08-06 20:32:06 +00:00
|
|
|
|
2011-09-16 22:26:57 +00:00
|
|
|
$addressbook = OC_Contacts_Addressbook::find( $id );
|
2011-08-06 20:32:06 +00:00
|
|
|
if( $addressbook === false || $addressbook['userid'] != OC_USER::getUser()){
|
2011-09-23 20:22:59 +00:00
|
|
|
OC_JSON::error(array('data' => array( 'message' => $l10n->t('This is not your contact.'))));
|
2011-08-06 20:32:06 +00:00
|
|
|
exit();
|
|
|
|
}
|
|
|
|
|
2011-09-16 22:26:57 +00:00
|
|
|
OC_Contacts_Addressbook::delete($id);
|
2011-09-23 20:22:59 +00:00
|
|
|
OC_JSON::success(array('data' => array( 'id' => $id )));
|