1
0
mirror of https://github.com/owncloudarchive/contacts.git synced 2024-11-30 12:24:11 +01:00
OwncloudContactsOfficial/lib/hooks.php

125 lines
3.6 KiB
PHP
Raw Normal View History

2011-08-10 14:28:14 +02:00
<?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/>.
*
*/
2012-06-26 05:26:50 +02:00
/**
* The following signals are being emitted:
2012-09-07 14:32:45 +02:00
*
2012-10-25 03:34:12 +02:00
* 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)
2012-06-26 05:26:50 +02:00
*/
2012-10-25 03:34:12 +02:00
namespace OCA\Contacts;
2012-11-22 00:14:03 +01:00
use \Sabre\VObject;
2011-08-10 14:28:14 +02:00
/**
* This class contains all hooks.
*/
2012-10-25 03:34:12 +02:00
class Hooks{
/**
* @brief Add default Addressbook for a certain user
* @param paramters parameters from postCreateUser-Hook
* @return array
*/
static public function createUser($parameters) {
2012-10-25 03:34:12 +02:00
Addressbook::addDefault($parameters['uid']);
return true;
}
2011-08-10 14:28:14 +02:00
/**
* @brief Deletes all Addressbooks of a certain user
* @param paramters parameters from postDeleteUser-Hook
* @return array
*/
2012-03-01 20:56:51 +01:00
static public function deleteUser($parameters) {
2012-10-25 03:34:12 +02:00
$addressbooks = Addressbook::all($parameters['uid']);
2011-08-10 14:28:14 +02:00
foreach($addressbooks as $addressbook) {
2012-10-25 03:34:12 +02:00
Addressbook::delete($addressbook['id']);
2011-08-10 14:28:14 +02:00
}
return true;
}
static public function getCalenderSources($parameters) {
2012-10-25 03:34:12 +02:00
$base_url = \OCP\Util::linkTo('calendar', 'ajax/events.php').'?calendar_id=';
foreach(Addressbook::all(\OCP\USER::getUser()) as $addressbook) {
2012-09-07 14:32:45 +02:00
$parameters['sources'][]
2012-07-21 00:42:21 +02:00
= array(
'url' => $base_url.'birthday_'. $addressbook['id'],
'backgroundColor' => '#cccccc',
'borderColor' => '#888',
'textColor' => 'black',
'cache' => true,
'editable' => false,
);
}
}
static public function getBirthdayEvents($parameters) {
$name = $parameters['calendar_id'];
if (strpos($name, 'birthday_') != 0) {
return;
}
$info = explode('_', $name);
$aid = $info[1];
2012-10-25 03:34:12 +02:00
Addressbook::find($aid);
2012-11-22 00:14:03 +01:00
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'));
2012-10-25 03:34:12 +02:00
$date = new \DateTime($birthday);
2012-11-22 00:14:03 +01:00
$vevent = VObject\Component::create('VEVENT');
2012-06-29 15:40:46 +02:00
//$vevent->setDateTime('LAST-MODIFIED', new DateTime($vcard->REV));
2012-11-22 00:14:03 +01:00
$vevent->add('DTSTART');
$vevent->DTSTART->setDateTime($date,
VObject\Property\DateTime::DATE);
$vevent->add('DURATION', 'P1D');
$vevent->{'UID'} = substr(md5(rand().time()), 0, 10);
// DESCRIPTION?
2012-11-22 00:14:03 +01:00
$vevent->{'RRULE'} = 'FREQ=YEARLY';
$vevent->{'SUMMARY'} = $title;
$parameters['events'][] = array(
'id' => 0,//$card['id'],
'vevent' => $vevent,
'repeating' => true,
'summary' => $title,
2012-07-21 00:42:21 +02:00
'calendardata' => "BEGIN:VCALENDAR\nVERSION:2.0\n"
2012-09-07 14:32:45 +02:00
. "PRODID:ownCloud Contacts "
2012-10-25 03:34:12 +02:00
. \OCP\App::getAppVersion('contacts') . "\n"
2012-07-21 00:42:21 +02:00
. $vevent->serialize() . "END:VCALENDAR"
);
}
}
}
2011-08-10 14:28:14 +02:00
}