1
0
mirror of https://github.com/owncloudarchive/contacts.git synced 2024-11-29 11:24:11 +01:00
OwncloudContactsOfficial/lib/hooks.php
2013-03-30 04:06:07 +01:00

183 lines
5.5 KiB
PHP

<?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();
$addressbook = $backend->getAddressBooksForUser($parameters['uid']);
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) {
}
public static function contactDeletion($parameters) {
$catctrl = new \OC_VCategories('contact');
$catctrl->purgeObjects(array($parameters['id']));
Utils\Properties::updateIndex($parameters['id']);
// Contact sharing not implemented, but keep for future.
//\OCP\Share::unshareAll('contact', $id);
}
public static function contactUpdated($parameters) {
//\OCP\Util::writeLog('contacts', __METHOD__.' parameters: '.print_r($parameters, true), \OCP\Util::DEBUG);
$catctrl = new \OC_VCategories('contact');
$catctrl->loadFromVObject(
$parameters['id'],
new \OC_VObject($parameters['contact']), // OC_VCategories still uses OC_VObject
true // force save
);
Utils\Properties::updateIndex($parameters['id'], $parameters['contact']);
}
/**
* Scan vCards for categories.
*/
public static function scanCategories() {
$offset = 0;
$limit = 10;
$categories = new \OC_VCategories('contact');
$app = new App();
$backend = $app->getBackend('database');
$addressBookInfos = $backend->getAddressBooksForUser();
foreach($addressBookInfos as $addressBookInfo) {
$addressBook = new AddressBook($backend, $addressBookInfo['id']);
while($contacts = $addressBook->getChildren($limit, $offset, false)) {
foreach($contacts as $contact) {
$cards[] = array($contact['id'], $contact['carddata']);
}
\OCP\Util::writeLog('contacts',
__CLASS__.'::'.__METHOD__
.', scanning: ' . $limit . ' starting from ' . $offset,
\OCP\Util::DEBUG);
// only reset on first batch.
$categories->rescan($cards, true, ($offset === 0 ? true : false));
$offset += $limit;
}
}
}
public static function getCalenderSources($parameters) {
/*
$base_url = \OCP\Util::linkTo('calendar', 'ajax/events.php').'?calendar_id=';
foreach(Addressbook::all(\OCP\USER::getUser()) as $addressbook) {
$parameters['sources'][]
= array(
'url' => $base_url.'birthday_'. $addressbook['id'],
'backgroundColor' => '#cccccc',
'borderColor' => '#888',
'textColor' => 'black',
'cache' => true,
'editable' => false,
);
}
*/
}
public static function getBirthdayEvents($parameters) {
$name = $parameters['calendar_id'];
if (strpos($name, 'birthday_') != 0) {
return;
}
$info = explode('_', $name);
$aid = $info[1];
Addressbook::find($aid);
foreach(VCard::all($aid) as $contact) {
try {
$vcard = VObject\Reader::read($contact['carddata']);
} catch (Exception $e) {
continue;
}
$birthday = $vcard->BDAY;
if ((string)$birthday) {
$title = str_replace('{name}',
$vcard->FN,
App::$l10n->t('{name}\'s Birthday'));
$date = new \DateTime($birthday);
$vevent = VObject\Component::create('VEVENT');
//$vevent->setDateTime('LAST-MODIFIED', new DateTime($vcard->REV));
$vevent->add('DTSTART');
$vevent->DTSTART->setDateTime($date,
VObject\Property\DateTime::DATE);
$vevent->add('DURATION', 'P1D');
$vevent->{'UID'} = substr(md5(rand().time()), 0, 10);
// DESCRIPTION?
$vevent->{'RRULE'} = 'FREQ=YEARLY';
$vevent->{'SUMMARY'} = $title;
$parameters['events'][] = array(
'id' => 0,//$card['id'],
'vevent' => $vevent,
'repeating' => true,
'summary' => $title,
'calendardata' => "BEGIN:VCALENDAR\nVERSION:2.0\n"
. "PRODID:ownCloud Contacts "
. \OCP\App::getAppVersion('contacts') . "\n"
. $vevent->serialize() . "END:VCALENDAR"
);
}
}
}
}