summaryrefslogtreecommitdiffstats
path: root/apps/contacts/ajax/updateaddressbook.php
blob: d3a772c727f71a6dd3b913caa66f5ee6ffbfbf85 (plain)
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
<?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('loghandler.php');

$bookid = $_POST['id'];
OC_Contacts_App::getAddressbook($bookid); // is owner access check

$name = trim(strip_tags($_POST['name']));
if(!$name) {
	bailOut(OC_Contacts_App::$l10n->t('Cannot update addressbook with an empty name.'));
}

if(!OC_Contacts_Addressbook::edit($bookid, $name, null)) {
	bailOut(OC_Contacts_App::$l10n->t('Error updating addressbook.'));
}

if(!OC_Contacts_Addressbook::setActive($bookid, $_POST['active'])) {
	bailOut(OC_Contacts_App::$l10n->t('Error (de)activating addressbook.'));
}

$addressbook = OC_Contacts_App::getAddressbook($bookid);
$tmpl = new OCP\Template('contacts', 'part.chooseaddressbook.rowfields');
$tmpl->assign('addressbook', $addressbook);
OCP\JSON::success(array(
	'page' => $tmpl->fetchPage(),
	'addressbook' => $addressbook,
));