mirror of
https://github.com/owncloudarchive/contacts.git
synced 2024-12-04 15:24:35 +01:00
43 lines
1.0 KiB
PHP
43 lines
1.0 KiB
PHP
<?php
|
|
/**
|
|
* Copyright (c) 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.
|
|
*/
|
|
|
|
|
|
OCP\JSON::checkLoggedIn();
|
|
OCP\JSON::checkAppEnabled('contacts');
|
|
|
|
$catmgr = OC_Contacts_App::getVCategories();
|
|
$categories = $catmgr->categories(OC_VCategories::FORMAT_MAP);
|
|
foreach($categories as &$category) {
|
|
$ids = array();
|
|
$contacts = $catmgr->itemsForCategory(
|
|
$category['name'],
|
|
array(
|
|
'tablename' => '*PREFIX*contacts_cards',
|
|
'fields' => array('id',),
|
|
));
|
|
foreach($contacts as $contact) {
|
|
$ids[] = $contact['id'];
|
|
}
|
|
$category['contacts'] = $ids;
|
|
}
|
|
|
|
$favorites = $catmgr->getFavorites();
|
|
|
|
OCP\JSON::success(array(
|
|
'data' => array(
|
|
'categories' => $categories,
|
|
'favorites' => $favorites,
|
|
'shared' => OCP\Share::getItemsSharedWith('addressbook', OC_Share_Backend_Addressbook::FORMAT_ADDRESSBOOKS),
|
|
'lastgroup' => OCP\Config::getUserValue(
|
|
OCP\User::getUser(),
|
|
'contacts',
|
|
'lastgroup', 'all'),
|
|
)
|
|
)
|
|
);
|