2011-12-05 06:38:06 +04:00
|
|
|
<?php
|
|
|
|
/**
|
2012-01-11 23:07:15 +04:00
|
|
|
* Copyright (c) 2011-2012 Thomas Tanghus <thomas@tanghus.net>
|
2011-12-05 06:38:06 +04:00
|
|
|
* 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.
|
|
|
|
*/
|
2012-04-17 21:31:29 +04:00
|
|
|
|
2011-12-05 06:38:06 +04:00
|
|
|
|
|
|
|
// Check if we are a user
|
|
|
|
OC_JSON::checkLoggedIn();
|
|
|
|
OC_JSON::checkAppEnabled('contacts');
|
|
|
|
|
2012-05-01 20:50:31 +04:00
|
|
|
$userid = OCP\USER::getUser();
|
2012-02-20 18:24:54 +04:00
|
|
|
$name = trim(strip_tags($_POST['name']));
|
|
|
|
if(!$name) {
|
|
|
|
OC_JSON::error(array('data' => array('message' => OC_Contacts_App::$l10n->t('Cannot add addressbook with an empty name.'))));
|
2012-05-01 19:38:27 +04:00
|
|
|
OCP\Util::writeLog('contacts','ajax/createaddressbook.php: Cannot add addressbook with an empty name: '.strip_tags($_POST['name']), OCP\Util::ERROR);
|
2012-02-20 18:24:54 +04:00
|
|
|
exit();
|
|
|
|
}
|
|
|
|
$bookid = OC_Contacts_Addressbook::add($userid, $name, null);
|
2012-01-11 23:07:15 +04:00
|
|
|
if(!$bookid) {
|
2012-02-12 19:11:41 +04:00
|
|
|
OC_JSON::error(array('data' => array('message' => OC_Contacts_App::$l10n->t('Error adding addressbook.'))));
|
2012-05-01 19:38:27 +04:00
|
|
|
OCP\Util::writeLog('contacts','ajax/createaddressbook.php: Error adding addressbook: '.$_POST['name'], OCP\Util::ERROR);
|
2012-01-11 23:07:15 +04:00
|
|
|
exit();
|
|
|
|
}
|
|
|
|
|
|
|
|
if(!OC_Contacts_Addressbook::setActive($bookid, 1)) {
|
2012-02-12 19:11:41 +04:00
|
|
|
OC_JSON::error(array('data' => array('message' => OC_Contacts_App::$l10n->t('Error activating addressbook.'))));
|
2012-05-01 19:38:27 +04:00
|
|
|
OCP\Util::writeLog('contacts','ajax/createaddressbook.php: Error activating addressbook: '.$bookid, OCP\Util::ERROR);
|
2012-01-11 23:07:15 +04:00
|
|
|
//exit();
|
|
|
|
}
|
2011-12-16 20:42:07 +04:00
|
|
|
$addressbook = OC_Contacts_App::getAddressbook($bookid);
|
2011-12-05 06:38:06 +04:00
|
|
|
$tmpl = new OC_Template('contacts', 'part.chooseaddressbook.rowfields');
|
2011-12-09 18:10:51 +04:00
|
|
|
$tmpl->assign('addressbook', $addressbook);
|
2011-12-05 06:38:06 +04:00
|
|
|
OC_JSON::success(array(
|
|
|
|
'page' => $tmpl->fetchPage(),
|
2011-12-09 18:10:51 +04:00
|
|
|
'addressbook' => $addressbook,
|
2011-12-05 06:38:06 +04:00
|
|
|
));
|