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.
|
|
|
|
*/
|
|
|
|
|
2012-04-17 19:31:29 +02:00
|
|
|
|
2011-12-05 03:38:06 +01:00
|
|
|
|
|
|
|
// Check if we are a user
|
2012-05-03 12:23:29 +02:00
|
|
|
OCP\JSON::checkLoggedIn();
|
|
|
|
OCP\JSON::checkAppEnabled('contacts');
|
2012-06-24 22:22:58 +02:00
|
|
|
require_once('loghandler.php');
|
2011-12-05 03:38:06 +01:00
|
|
|
|
|
|
|
$bookid = $_POST['id'];
|
2012-02-12 15:55:36 +01:00
|
|
|
OC_Contacts_App::getAddressbook($bookid); // is owner access check
|
2012-01-11 20:07:15 +01:00
|
|
|
|
2012-02-20 15:24:54 +01:00
|
|
|
$name = trim(strip_tags($_POST['name']));
|
|
|
|
if(!$name) {
|
2012-06-24 22:22:58 +02:00
|
|
|
bailOut(OC_Contacts_App::$l10n->t('Cannot update addressbook with an empty name.'));
|
2012-02-20 15:24:54 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
if(!OC_Contacts_Addressbook::edit($bookid, $name, null)) {
|
2012-06-24 22:22:58 +02:00
|
|
|
bailOut(OC_Contacts_App::$l10n->t('Error updating addressbook.'));
|
2012-01-11 20:07:15 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
if(!OC_Contacts_Addressbook::setActive($bookid, $_POST['active'])) {
|
2012-06-24 22:22:58 +02:00
|
|
|
bailOut(OC_Contacts_App::$l10n->t('Error (de)activating addressbook.'));
|
2012-01-11 20:07:15 +01:00
|
|
|
}
|
|
|
|
|
2011-12-16 17:42:07 +01:00
|
|
|
$addressbook = OC_Contacts_App::getAddressbook($bookid);
|
2012-05-06 23:00:36 +02:00
|
|
|
$tmpl = new OCP\Template('contacts', 'part.chooseaddressbook.rowfields');
|
2011-12-09 15:10:51 +01:00
|
|
|
$tmpl->assign('addressbook', $addressbook);
|
2012-05-03 12:23:29 +02:00
|
|
|
OCP\JSON::success(array(
|
2011-12-05 03:38:06 +01:00
|
|
|
'page' => $tmpl->fetchPage(),
|
|
|
|
'addressbook' => $addressbook,
|
|
|
|
));
|