2011-08-06 22:32:06 +02:00
|
|
|
<?php
|
2013-04-18 01:12:04 +02:00
|
|
|
|
|
|
|
namespace OCA\Contacts;
|
2013-09-16 21:30:16 +02:00
|
|
|
use \OC\AppFramework\Core\API;
|
2013-04-18 01:12:04 +02:00
|
|
|
|
2013-04-19 09:59:30 +02:00
|
|
|
//require_once __DIR__ . '/../controller/groupcontroller.php';
|
2013-05-15 23:52:41 +02:00
|
|
|
\Sabre\VObject\Component::$classMap['VCARD'] = '\OCA\Contacts\VObject\VCard';
|
2013-05-19 00:53:33 +02:00
|
|
|
\Sabre\VObject\Property::$classMap['CATEGORIES'] = 'OCA\Contacts\VObject\GroupProperty';
|
2013-05-15 23:52:41 +02:00
|
|
|
\Sabre\VObject\Property::$classMap['FN'] = '\OC\VObject\StringProperty';
|
|
|
|
\Sabre\VObject\Property::$classMap['TITLE'] = '\OC\VObject\StringProperty';
|
|
|
|
\Sabre\VObject\Property::$classMap['ROLE'] = '\OC\VObject\StringProperty';
|
|
|
|
\Sabre\VObject\Property::$classMap['NOTE'] = '\OC\VObject\StringProperty';
|
|
|
|
\Sabre\VObject\Property::$classMap['NICKNAME'] = '\OC\VObject\StringProperty';
|
|
|
|
\Sabre\VObject\Property::$classMap['EMAIL'] = '\OC\VObject\StringProperty';
|
|
|
|
\Sabre\VObject\Property::$classMap['TEL'] = '\OC\VObject\StringProperty';
|
|
|
|
\Sabre\VObject\Property::$classMap['IMPP'] = '\OC\VObject\StringProperty';
|
|
|
|
\Sabre\VObject\Property::$classMap['URL'] = '\OC\VObject\StringProperty';
|
|
|
|
\Sabre\VObject\Property::$classMap['N'] = '\OC\VObject\CompoundProperty';
|
|
|
|
\Sabre\VObject\Property::$classMap['ADR'] = '\OC\VObject\CompoundProperty';
|
|
|
|
\Sabre\VObject\Property::$classMap['GEO'] = '\OC\VObject\CompoundProperty';
|
2013-04-18 01:12:04 +02:00
|
|
|
|
2013-09-25 23:38:31 +02:00
|
|
|
$api = new API('contacts');
|
|
|
|
|
2013-09-27 16:37:51 +02:00
|
|
|
\OC::$server->getNavigationManager()->add(array(
|
|
|
|
'id' => 'contacts',
|
2013-09-25 23:38:31 +02:00
|
|
|
'order' => 10,
|
|
|
|
'href' => \OCP\Util::linkToRoute('contacts_index'),
|
|
|
|
'icon' => \OCP\Util::imagePath( 'contacts', 'contacts.svg' ),
|
|
|
|
'name' => \OCP\Util::getL10N('contacts')->t('Contacts')
|
|
|
|
)
|
|
|
|
);
|
2013-10-01 19:13:28 +02:00
|
|
|
\OC::$server->getNavigationManager()->setActiveEntry('contacts_index');
|
2013-09-25 23:38:31 +02:00
|
|
|
|
|
|
|
$api->connectHook('OC_User', 'post_createUser', '\OCA\Contacts\Hooks', 'userCreated');
|
|
|
|
$api->connectHook('OC_User', 'post_deleteUser', '\OCA\Contacts\Hooks', 'userDeleted');
|
|
|
|
$api->connectHook('OCA\Contacts', 'pre_deleteAddressBook', '\OCA\Contacts\Hooks', 'addressBookDeletion');
|
|
|
|
$api->connectHook('OCA\Contacts', 'pre_deleteContact', '\OCA\Contacts\Hooks', 'contactDeletion');
|
|
|
|
$api->connectHook('OCA\Contacts', 'post_createContact', 'OCA\Contacts\Hooks', 'contactAdded');
|
|
|
|
$api->connectHook('OCA\Contacts', 'post_updateContact', '\OCA\Contacts\Hooks', 'contactUpdated');
|
|
|
|
$api->connectHook('OCA\Contacts', 'scanCategories', '\OCA\Contacts\Hooks', 'scanCategories');
|
|
|
|
$api->connectHook('OCA\Contacts', 'indexProperties', '\OCA\Contacts\Hooks', 'indexProperties');
|
|
|
|
$api->connectHook('OC_Calendar', 'getEvents', 'OCA\Contacts\Hooks', 'getBirthdayEvents');
|
|
|
|
$api->connectHook('OC_Calendar', 'getSources', 'OCA\Contacts\Hooks', 'getCalenderSources');
|
|
|
|
|
|
|
|
\OCP\Util::addscript('contacts', 'loader');
|
|
|
|
|
|
|
|
\OC_Search::registerProvider('OCA\Contacts\SearchProvider');
|
|
|
|
//\OCP\Share::registerBackend('contact', 'OCA\Contacts\Share_Backend_Contact');
|
|
|
|
\OCP\Share::registerBackend('addressbook', 'OCA\Contacts\Share\Addressbook', 'contact');
|
|
|
|
//\OCP\App::registerPersonal('contacts','personalsettings');
|
|
|
|
|
|
|
|
if(\OCP\User::isLoggedIn()) {
|
|
|
|
$app = new App($api->getUserId());
|
|
|
|
$addressBooks = $app->getAddressBooksForUser();
|
|
|
|
foreach($addressBooks as $addressBook) {
|
|
|
|
if($addressBook->getBackend()->name === 'local') {
|
|
|
|
\OCP\Contacts::registerAddressBook(new AddressbookProvider($addressBook));
|
2013-04-30 02:05:15 +02:00
|
|
|
}
|
2013-03-13 20:49:27 +01:00
|
|
|
}
|
2013-09-25 23:38:31 +02:00
|
|
|
}
|