2016-02-03 17:43:45 +03:00
|
|
|
<?php
|
|
|
|
/**
|
2016-07-21 17:49:16 +03:00
|
|
|
* @copyright Copyright (c) 2016, ownCloud, Inc.
|
|
|
|
*
|
2016-05-26 20:56:05 +03:00
|
|
|
* @author Achim Königs <garfonso@tratschtante.de>
|
2016-07-21 19:13:36 +03:00
|
|
|
* @author Robin Appelman <robin@icewind.nl>
|
2016-02-03 17:43:45 +03:00
|
|
|
* @author Thomas Müller <thomas.mueller@tmit.eu>
|
|
|
|
*
|
|
|
|
* @license AGPL-3.0
|
|
|
|
*
|
|
|
|
* This code is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License, version 3,
|
|
|
|
* as published by the Free Software Foundation.
|
|
|
|
*
|
|
|
|
* This program 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, version 3,
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace OCA\DAV\CalDAV;
|
|
|
|
|
|
|
|
use Exception;
|
|
|
|
use OCA\DAV\CardDAV\CardDavBackend;
|
2016-03-23 16:12:50 +03:00
|
|
|
use OCA\DAV\DAV\GroupPrincipalBackend;
|
2016-02-03 17:43:45 +03:00
|
|
|
use Sabre\VObject\Component\VCalendar;
|
|
|
|
use Sabre\VObject\Reader;
|
|
|
|
|
|
|
|
class BirthdayService {
|
|
|
|
|
|
|
|
const BIRTHDAY_CALENDAR_URI = 'contact_birthdays';
|
|
|
|
|
2016-03-23 16:12:50 +03:00
|
|
|
/** @var GroupPrincipalBackend */
|
|
|
|
private $principalBackend;
|
|
|
|
|
2016-07-05 23:45:05 +03:00
|
|
|
/** @var CalDavBackend */
|
|
|
|
private $calDavBackEnd;
|
|
|
|
|
|
|
|
/** @var CardDavBackend */
|
|
|
|
private $cardDavBackEnd;
|
|
|
|
|
2016-02-03 17:43:45 +03:00
|
|
|
/**
|
|
|
|
* BirthdayService constructor.
|
|
|
|
*
|
|
|
|
* @param CalDavBackend $calDavBackEnd
|
|
|
|
* @param CardDavBackend $cardDavBackEnd
|
2016-03-23 16:12:50 +03:00
|
|
|
* @param GroupPrincipalBackend $principalBackend
|
2016-02-03 17:43:45 +03:00
|
|
|
*/
|
2016-03-23 16:12:50 +03:00
|
|
|
public function __construct($calDavBackEnd, $cardDavBackEnd, $principalBackend) {
|
2016-02-03 17:43:45 +03:00
|
|
|
$this->calDavBackEnd = $calDavBackEnd;
|
|
|
|
$this->cardDavBackEnd = $cardDavBackEnd;
|
2016-03-23 16:12:50 +03:00
|
|
|
$this->principalBackend = $principalBackend;
|
2016-02-03 17:43:45 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param int $addressBookId
|
|
|
|
* @param string $cardUri
|
|
|
|
* @param string $cardData
|
|
|
|
*/
|
|
|
|
public function onCardChanged($addressBookId, $cardUri, $cardData) {
|
|
|
|
|
2016-03-23 16:12:50 +03:00
|
|
|
$targetPrincipals = $this->getAllAffectedPrincipals($addressBookId);
|
2016-03-23 14:28:54 +03:00
|
|
|
|
2016-02-03 17:43:45 +03:00
|
|
|
$book = $this->cardDavBackEnd->getAddressBookById($addressBookId);
|
2016-03-23 14:28:54 +03:00
|
|
|
$targetPrincipals[] = $book['principaluri'];
|
|
|
|
foreach ($targetPrincipals as $principalUri) {
|
|
|
|
$calendar = $this->ensureCalendarExists($principalUri);
|
|
|
|
$objectUri = $book['uri'] . '-' . $cardUri. '.ics';
|
|
|
|
$calendarData = $this->buildBirthdayFromContact($cardData);
|
|
|
|
$existing = $this->calDavBackEnd->getCalendarObject($calendar['id'], $objectUri);
|
|
|
|
if (is_null($calendarData)) {
|
|
|
|
if (!is_null($existing)) {
|
|
|
|
$this->calDavBackEnd->deleteCalendarObject($calendar['id'], $objectUri);
|
|
|
|
}
|
2016-02-03 17:43:45 +03:00
|
|
|
} else {
|
2016-03-23 14:28:54 +03:00
|
|
|
if (is_null($existing)) {
|
|
|
|
$this->calDavBackEnd->createCalendarObject($calendar['id'], $objectUri, $calendarData->serialize());
|
|
|
|
} else {
|
|
|
|
if ($this->birthdayEvenChanged($existing['calendardata'], $calendarData)) {
|
|
|
|
$this->calDavBackEnd->updateCalendarObject($calendar['id'], $objectUri, $calendarData->serialize());
|
|
|
|
}
|
2016-02-18 16:49:45 +03:00
|
|
|
}
|
2016-02-03 17:43:45 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param int $addressBookId
|
|
|
|
* @param string $cardUri
|
|
|
|
*/
|
|
|
|
public function onCardDeleted($addressBookId, $cardUri) {
|
2016-03-23 16:12:50 +03:00
|
|
|
$targetPrincipals = $this->getAllAffectedPrincipals($addressBookId);
|
2016-02-03 17:43:45 +03:00
|
|
|
$book = $this->cardDavBackEnd->getAddressBookById($addressBookId);
|
2016-03-23 14:28:54 +03:00
|
|
|
$targetPrincipals[] = $book['principaluri'];
|
|
|
|
foreach ($targetPrincipals as $principalUri) {
|
|
|
|
$calendar = $this->ensureCalendarExists($principalUri);
|
|
|
|
$objectUri = $book['uri'] . '-' . $cardUri . '.ics';
|
|
|
|
$this->calDavBackEnd->deleteCalendarObject($calendar['id'], $objectUri);
|
|
|
|
}
|
2016-02-03 17:43:45 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param string $principal
|
|
|
|
* @return array|null
|
|
|
|
* @throws \Sabre\DAV\Exception\BadRequest
|
|
|
|
*/
|
2016-03-16 19:19:14 +03:00
|
|
|
public function ensureCalendarExists($principal) {
|
|
|
|
$book = $this->calDavBackEnd->getCalendarByUri($principal, self::BIRTHDAY_CALENDAR_URI);
|
2016-02-03 17:43:45 +03:00
|
|
|
if (!is_null($book)) {
|
|
|
|
return $book;
|
|
|
|
}
|
2016-03-16 19:19:14 +03:00
|
|
|
$this->calDavBackEnd->createCalendar($principal, self::BIRTHDAY_CALENDAR_URI, [
|
|
|
|
'{DAV:}displayname' => 'Contact birthdays',
|
|
|
|
'{http://apple.com/ns/ical/}calendar-color' => '#FFFFCA',
|
|
|
|
]);
|
2016-02-03 17:43:45 +03:00
|
|
|
|
2016-03-16 19:19:14 +03:00
|
|
|
return $this->calDavBackEnd->getCalendarByUri($principal, self::BIRTHDAY_CALENDAR_URI);
|
2016-02-03 17:43:45 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param string $cardData
|
|
|
|
* @return null|VCalendar
|
|
|
|
*/
|
|
|
|
public function buildBirthdayFromContact($cardData) {
|
|
|
|
if (empty($cardData)) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
try {
|
|
|
|
$doc = Reader::read($cardData);
|
|
|
|
} catch (Exception $e) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!isset($doc->BDAY)) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
$birthday = $doc->BDAY;
|
|
|
|
if (!(string)$birthday) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
$title = str_replace('{name}',
|
|
|
|
strtr((string)$doc->FN, array('\,' => ',', '\;' => ';')),
|
2016-03-10 14:41:37 +03:00
|
|
|
'{name}'
|
2016-02-03 17:43:45 +03:00
|
|
|
);
|
|
|
|
try {
|
|
|
|
$date = new \DateTime($birthday);
|
|
|
|
} catch (Exception $e) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
$vCal = new VCalendar();
|
|
|
|
$vCal->VERSION = '2.0';
|
|
|
|
$vEvent = $vCal->createComponent('VEVENT');
|
|
|
|
$vEvent->add('DTSTART');
|
|
|
|
$vEvent->DTSTART->setDateTime(
|
|
|
|
$date
|
|
|
|
);
|
|
|
|
$vEvent->DTSTART['VALUE'] = 'DATE';
|
|
|
|
$vEvent->add('DTEND');
|
|
|
|
$date->add(new \DateInterval('P1D'));
|
|
|
|
$vEvent->DTEND->setDateTime(
|
|
|
|
$date
|
|
|
|
);
|
|
|
|
$vEvent->DTEND['VALUE'] = 'DATE';
|
|
|
|
$vEvent->{'UID'} = $doc->UID;
|
|
|
|
$vEvent->{'RRULE'} = 'FREQ=YEARLY';
|
2016-03-10 14:41:37 +03:00
|
|
|
$vEvent->{'SUMMARY'} = $title . ' (*' . $date->format('Y') . ')';
|
2016-02-03 17:43:45 +03:00
|
|
|
$vEvent->{'TRANSP'} = 'TRANSPARENT';
|
2016-03-23 01:47:34 +03:00
|
|
|
$alarm = $vCal->createComponent('VALARM');
|
|
|
|
$alarm->add($vCal->createProperty('TRIGGER', '-PT0M', ['VALUE' => 'DURATION']));
|
|
|
|
$alarm->add($vCal->createProperty('ACTION', 'DISPLAY'));
|
|
|
|
$alarm->add($vCal->createProperty('DESCRIPTION', $vEvent->{'SUMMARY'}));
|
|
|
|
$vEvent->add($alarm);
|
2016-02-03 17:43:45 +03:00
|
|
|
$vCal->add($vEvent);
|
|
|
|
return $vCal;
|
|
|
|
}
|
|
|
|
|
2016-02-18 16:49:45 +03:00
|
|
|
/**
|
|
|
|
* @param string $user
|
|
|
|
*/
|
|
|
|
public function syncUser($user) {
|
2016-03-16 19:19:14 +03:00
|
|
|
$principal = 'principals/users/'.$user;
|
|
|
|
$this->ensureCalendarExists($principal);
|
|
|
|
$books = $this->cardDavBackEnd->getAddressBooksForUser($principal);
|
2016-02-18 16:49:45 +03:00
|
|
|
foreach($books as $book) {
|
|
|
|
$cards = $this->cardDavBackEnd->getCards($book['id']);
|
|
|
|
foreach($cards as $card) {
|
|
|
|
$this->onCardChanged($book['id'], $card['uri'], $card['carddata']);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param string $existingCalendarData
|
|
|
|
* @param VCalendar $newCalendarData
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
public function birthdayEvenChanged($existingCalendarData, $newCalendarData) {
|
|
|
|
try {
|
|
|
|
$existingBirthday = Reader::read($existingCalendarData);
|
|
|
|
} catch (Exception $ex) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
if ($newCalendarData->VEVENT->DTSTART->getValue() !== $existingBirthday->VEVENT->DTSTART->getValue() ||
|
|
|
|
$newCalendarData->VEVENT->SUMMARY->getValue() !== $existingBirthday->VEVENT->SUMMARY->getValue()
|
|
|
|
) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2016-03-23 16:12:50 +03:00
|
|
|
/**
|
2016-04-08 18:11:37 +03:00
|
|
|
* @param integer $addressBookId
|
2016-03-23 16:12:50 +03:00
|
|
|
* @return mixed
|
|
|
|
*/
|
|
|
|
protected function getAllAffectedPrincipals($addressBookId) {
|
|
|
|
$targetPrincipals = [];
|
|
|
|
$shares = $this->cardDavBackEnd->getShares($addressBookId);
|
|
|
|
foreach ($shares as $share) {
|
|
|
|
if ($share['{http://owncloud.org/ns}group-share']) {
|
|
|
|
$users = $this->principalBackend->getGroupMemberSet($share['{http://owncloud.org/ns}principal']);
|
|
|
|
foreach ($users as $user) {
|
|
|
|
$targetPrincipals[] = $user['uri'];
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
$targetPrincipals[] = $share['{http://owncloud.org/ns}principal'];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return array_values(array_unique($targetPrincipals, SORT_STRING));
|
|
|
|
}
|
|
|
|
|
2016-02-03 17:43:45 +03:00
|
|
|
}
|