nextcloud/apps/contacts/ajax/createaddressbook.php

37 lines
1.0 KiB
PHP
Raw Normal View History

<?php
/**
* Copyright (c) 2011-2012 Thomas Tanghus <thomas@tanghus.net>
* Copyright (c) 2011 Bart Visscher <bartv@thisnet.nl>
* 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 14:23:29 +04:00
OCP\JSON::checkLoggedIn();
OCP\JSON::checkAppEnabled('contacts');
2012-06-13 19:35:42 +04:00
OCP\JSON::callCheck();
2012-07-20 01:48:17 +04:00
require_once 'loghandler.php';
2012-05-01 20:50:31 +04:00
$userid = OCP\USER::getUser();
$name = trim(strip_tags($_POST['name']));
if(!$name) {
2012-06-25 00:22:58 +04:00
bailOut('Cannot add addressbook with an empty name.');
}
$bookid = OC_Contacts_Addressbook::add($userid, $name, null);
if(!$bookid) {
2012-06-25 00:22:58 +04:00
bailOut('Error adding addressbook: '.$name);
}
if(!OC_Contacts_Addressbook::setActive($bookid, 1)) {
2012-06-25 00:22:58 +04:00
bailOut('Error activating addressbook.');
}
2011-12-16 20:42:07 +04:00
$addressbook = OC_Contacts_App::getAddressbook($bookid);
2012-05-07 01:00:36 +04:00
$tmpl = new OCP\Template('contacts', 'part.chooseaddressbook.rowfields');
$tmpl->assign('addressbook', $addressbook);
2012-05-03 14:23:29 +04:00
OCP\JSON::success(array(
'page' => $tmpl->fetchPage(),
'addressbook' => $addressbook,
));