2011-12-05 03:38:06 +01:00
|
|
|
<?php
|
|
|
|
/**
|
2012-01-11 20:07:15 +01:00
|
|
|
* Copyright (c) 2011-2012 Thomas Tanghus <thomas@tanghus.net>
|
2011-12-05 03:38:06 +01:00
|
|
|
* This file is licensed under the Affero General Public License version 3 or
|
|
|
|
* later.
|
|
|
|
* See the COPYING-README file.
|
|
|
|
*/
|
|
|
|
|
|
|
|
// Check if we are a user
|
2012-05-03 12:23:29 +02:00
|
|
|
OCP\JSON::checkLoggedIn();
|
|
|
|
OCP\JSON::checkAppEnabled('contacts');
|
2012-08-01 23:59:44 +02:00
|
|
|
require_once __DIR__.'/../loghandler.php';
|
2012-01-11 20:07:15 +01:00
|
|
|
|
2012-08-01 23:59:44 +02:00
|
|
|
$id = $_POST['id'];
|
2012-02-20 15:24:54 +01:00
|
|
|
$name = trim(strip_tags($_POST['name']));
|
2012-08-01 23:59:44 +02:00
|
|
|
$description = trim(strip_tags($_POST['description']));
|
2012-08-31 00:51:45 +02:00
|
|
|
|
2012-08-01 23:59:44 +02:00
|
|
|
if(!$id) {
|
2012-10-25 03:34:12 +02:00
|
|
|
bailOut(OCA\Contacts\App::$l10n->t('id is not set.'));
|
2012-08-01 23:59:44 +02:00
|
|
|
}
|
|
|
|
|
2012-02-20 15:24:54 +01:00
|
|
|
if(!$name) {
|
2012-10-25 03:34:12 +02:00
|
|
|
bailOut(OCA\Contacts\App::$l10n->t('Cannot update addressbook with an empty name.'));
|
2012-02-20 15:24:54 +01:00
|
|
|
}
|
|
|
|
|
2012-08-31 00:51:45 +02:00
|
|
|
try {
|
2012-10-25 03:34:12 +02:00
|
|
|
OCA\Contacts\Addressbook::edit($id, $name, $description);
|
2012-08-31 00:51:45 +02:00
|
|
|
} catch(Exception $e) {
|
|
|
|
bailOut($e->getMessage());
|
2012-01-11 20:07:15 +01:00
|
|
|
}
|
|
|
|
|
2012-10-25 03:34:12 +02:00
|
|
|
if(!OCA\Contacts\Addressbook::setActive($id, $_POST['active'])) {
|
|
|
|
bailOut(OCA\Contacts\App::$l10n->t('Error (de)activating addressbook.'));
|
2012-01-11 20:07:15 +01:00
|
|
|
}
|
|
|
|
|
2012-10-25 03:34:12 +02:00
|
|
|
$addressbook = OCA\Contacts\Addressbook::find($id);
|
2012-05-03 12:23:29 +02:00
|
|
|
OCP\JSON::success(array(
|
2012-08-31 00:51:45 +02:00
|
|
|
'data' => array('addressbook' => $addressbook),
|
2011-12-05 03:38:06 +01:00
|
|
|
));
|