Blame view
sources/apps/contacts/ajax/addressbook/update.php
1021 Bytes
|
03e52840d
|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 |
<?php
/**
* Copyright (c) 2011-2012 Thomas Tanghus <thomas@tanghus.net>
* 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
OCP\JSON::checkLoggedIn();
OCP\JSON::checkAppEnabled('contacts');
require_once __DIR__.'/../loghandler.php';
$id = $_POST['id'];
$name = trim(strip_tags($_POST['name']));
$description = trim(strip_tags($_POST['description']));
if(!$id) {
bailOut(OCA\Contacts\App::$l10n->t('id is not set.'));
}
if(!$name) {
bailOut(OCA\Contacts\App::$l10n->t('Cannot update addressbook with an empty name.'));
}
try {
OCA\Contacts\Addressbook::edit($id, $name, $description);
} catch(Exception $e) {
bailOut($e->getMessage());
}
if(!OCA\Contacts\Addressbook::setActive($id, $_POST['active'])) {
bailOut(OCA\Contacts\App::$l10n->t('Error (de)activating addressbook.'));
}
$addressbook = OCA\Contacts\Addressbook::find($id);
OCP\JSON::success(array(
'data' => array('addressbook' => $addressbook),
));
|