Blame view
sources/apps/contacts/lib/hooks.php
7.76 KB
|
d1bafeea1
|
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 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 |
<?php
/**
* ownCloud - Addressbook
*
* @author Jakob Sack
* @copyright 2011 Jakob Sack mail@jakobsack.de
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE
* License as published by the Free Software Foundation; either
* version 3 of the License, or any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU AFFERO GENERAL PUBLIC LICENSE for more details.
*
* You should have received a copy of the GNU Affero General Public
* License along with this library. If not, see <http://www.gnu.org/licenses/>.
*
*/
/**
* The following signals are being emitted:
*
* OCA\Contacts\VCard::post_moveToAddressbook(array('aid' => $aid, 'id' => $id))
* OCA\Contacts\VCard::pre_deleteVCard(array('aid' => $aid, 'id' => $id, 'uri' = $uri)); (NOTE: the values can be null depending on which method emits them)
* OCA\Contacts\VCard::post_updateVCard($id)
* OCA\Contacts\VCard::post_createVCard($newid)
*/
namespace OCA\Contacts;
use \Sabre\VObject;
/**
* This class contains all hooks.
*/
class Hooks{
/**
* @brief Add default Addressbook for a certain user
* @param paramters parameters from postCreateUser-Hook
* @return array
*/
public static function userCreated($parameters) {
//Addressbook::addDefault($parameters['uid']);
return true;
}
/**
* @brief Deletes all Addressbooks of a certain user
* @param paramters parameters from postDeleteUser-Hook
* @return array
*/
public static function userDeleted($parameters) {
$backend = new Backend\Database($parameters['uid']);
$addressBooks = $backend->getAddressBooksForUser();
foreach($addressBooks as $addressBook) {
// Purging of contact categories and and properties is done by backend.
$backend->deleteAddressBook($addressBook['id']);
}
}
/**
* Delete any registred address books (Future)
*/
public static function addressBookDeletion($parameters) {
// Clean up sharing
\OCP\Share::unshareAll('addressbook', $parameters['addressbookid']);
if(count($parameters['contactids'])) {
// Remove contacts from groups
$tagMgr = \OC::$server->getTagManager()->load('contact');
$tagMgr->purgeObjects($parameters['contactids']);
// Purge property indexes
Utils\Properties::purgeIndexes($parameters['contactids']);
}
}
/**
* A contact has been deleted and cleanup for property indexes and
* group/contact relations must be performed.
*
* NOTE: When deleting an entire address book the cleanup is done in the
* addressBookDeletion() hook. Any cleanup procedures most be implemented
* in both.
*
* @param array $parameters Currently only the id of the contact.
*/
public static function contactDeletion($parameters) {
\OCP\Util::writeLog('contacts', __METHOD__.' id: '.$parameters['id'], \OCP\Util::DEBUG);
$ids = is_array($parameters['id']) ? $parameters['id'] : array($parameters['id']);
$tagMgr = \OC::$server->getTagManager()->load('contact');
$tagMgr->purgeObjects($ids);
Utils\Properties::purgeIndexes($ids);
// Contact sharing not implemented, but keep for future.
//\OCP\Share::unshareAll('contact', $id);
}
public static function contactAdded($parameters) {
\OCP\Util::writeLog('contacts', __METHOD__.' id: '.$parameters['id'], \OCP\Util::DEBUG);
$contact = $parameters['contact'];
if(isset($contact->CATEGORIES)) {
\OCP\Util::writeLog('contacts', __METHOD__.' groups: '.print_r($contact->CATEGORIES->getParts(), true), \OCP\Util::DEBUG);
$tagMgr = \OC::$server->getTagManager()->load('contact');
foreach($contact->CATEGORIES->getParts() as $group) {
\OCP\Util::writeLog('contacts', __METHOD__.' group: '.$group, \OCP\Util::DEBUG);
$tagMgr->tagAs($parameters['id'], $group);
}
}
Utils\Properties::updateIndex($parameters['id'], $contact);
}
public static function contactUpdated($parameters) {
//\OCP\Util::writeLog('contacts', __METHOD__.' parameters: '.print_r($parameters, true), \OCP\Util::DEBUG);
$contact = $parameters['contact'];
Utils\Properties::updateIndex($parameters['contactId'], $contact);
// If updated via CardDAV we don't know if PHOTO has changed
if(isset($parameters['carddav']) && $parameters['carddav']) {
if(isset($contact->PHOTO) || isset($contact->LOGO)) {
Utils\Properties::cacheThumbnail(
$parameters['backend'],
$parameters['addressBookId'],
$parameters['contactId'],
null,
$contact,
array('update' => true)
);
}
$tagMgr = \OC::$server->getTagManager()->load('contact');
$tagMgr->purgeObjects(array($parameters['contactId']));
if(isset($contact->CATEGORIES)) {
$tagMgr->addMultiple($contact->CATEGORIES->getParts(), true, $parameters['contactId']);
}
}
}
/**
* Scan vCards for categories.
*/
public static function scanCategories() {
$offset = 0;
$limit = 10;
$tagMgr = \OC::$server->getTagManager()->load('contact');
$tags = array();
foreach($tagMgr->getTags() as $tag) {
$tags[] = $tag['name'];
}
// reset tags
$tagMgr->delete($tags);
$backend = $this->app->getBackend('local');
$addressBookInfos = $backend->getAddressBooksForUser();
foreach($addressBookInfos as $addressBookInfo) {
$addressBook = new AddressBook($backend, $addressBookInfo);
while($contacts = $addressBook->getChildren($limit, $offset, false)) {
foreach($contacts as $contact) {
if(isset($contact->CATEGORIES)) {
$tagMgr->addMultiple($contact->CATEGORIES->getParts(), true, $contact->getId());
}
}
\OCP\Util::writeLog('contacts',
__METHOD__ .', scanning: ' . $limit . ' starting from ' . $offset,
\OCP\Util::DEBUG);
$offset += $limit;
}
}
}
/**
* Scan vCards for properties.
*/
public static function indexProperties() {
$offset = 0;
$limit = 10;
$app = new App();
$backend = $app->getBackend('local');
$addressBookInfos = $backend->getAddressBooksForUser();
foreach($addressBookInfos as $addressBookInfo) {
$addressBook = new AddressBook($backend, $addressBookInfo);
while($contacts = $addressBook->getChildren($limit, $offset, false)) {
foreach($contacts as $contact) {
$contact->retrieve();
}
\OCP\Util::writeLog('contacts',
__CLASS__.'::'.__METHOD__
.', indexing: ' . $limit . ' starting from ' . $offset,
\OCP\Util::DEBUG);
Utils\Properties::updateIndex($contact->getId(), $contact);
$offset += $limit;
}
}
}
public static function getCalenderSources($parameters) {
//\OCP\Util::writeLog('contacts', __METHOD__.' parameters: '.print_r($parameters, true), \OCP\Util::DEBUG);
$app = new App();
$addressBooks = $app->getAddressBooksForUser();
$base_url = \OCP\Util::linkTo('calendar', 'ajax/events.php').'?calendar_id=';
foreach($addressBooks as $addressBook) {
$info = $addressBook->getMetaData();
$parameters['sources'][]
= array(
'url' => $base_url.'birthday_'. $info['backend'].'_'.$info['id'],
'backgroundColor' => '#cccccc',
'borderColor' => '#888',
'textColor' => 'black',
'cache' => true,
'editable' => false,
);
}
}
public static function getBirthdayEvents($parameters) {
//\OCP\Util::writeLog('contacts', __METHOD__.' parameters: '.print_r($parameters, true), \OCP\Util::DEBUG);
$name = $parameters['calendar_id'];
if (strpos($name, 'birthday_') != 0) {
return;
}
$info = explode('_', $name);
$backend = $info[1];
$aid = $info[2];
$app = new App();
$addressBook = $app->getAddressBook($backend, $aid);
foreach($addressBook->getBirthdayEvents() as $vevent) {
$parameters['events'][] = array(
'id' => 0,
'vevent' => $vevent,
'repeating' => true,
'summary' => $vevent->SUMMARY,
'calendardata' => $vevent->serialize()
);
}
}
}
|