summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lib/private/Calendar/Manager.php140
-rw-r--r--lib/private/Server.php10
-rw-r--r--lib/public/IServerContainer.php9
-rw-r--r--tests/lib/Calendar/ManagerTest.php214
4 files changed, 373 insertions, 0 deletions
diff --git a/lib/private/Calendar/Manager.php b/lib/private/Calendar/Manager.php
new file mode 100644
index 00000000000..85d501f8ea0
--- /dev/null
+++ b/lib/private/Calendar/Manager.php
@@ -0,0 +1,140 @@
+<?php
+/**
+ * @copyright 2017, Georg Ehrke <oc.list@georgehrke.com>
+ *
+ * @author Georg Ehrke <oc.list@georgehrke.com>
+ *
+ * @license GNU AGPL version 3 or any later version
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Affero General Public License as
+ * published by the Free Software Foundation, either version 3 of the
+ * License, or (at your option) any later version.
+ *
+ * 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
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ *
+ */
+
+namespace OC\Calendar;
+
+use OCP\Calendar\ICalendar;
+
+class Manager implements \OCP\Calendar\IManager {
+
+ /**
+ * @var ICalendar[] holds all registered calendars
+ */
+ private $calendars=[];
+
+ /**
+ * @var \Closure[] to call to load/register calendar providers
+ */
+ private $calendarLoaders=[];
+
+ /**
+ * This function is used to search and find objects within the user's calendars.
+ * In case $pattern is empty all events/journals/todos will be returned.
+ *
+ * @param string $pattern which should match within the $searchProperties
+ * @param array $searchProperties defines the properties within the query pattern should match
+ * @param array $options - optional parameters:
+ * ['timerange' => ['start' => new DateTime(...), 'end' => new DateTime(...)]]
+ * @param integer|null $limit - limit number of search results
+ * @param integer|null $offset - offset for paging of search results
+ * @return array an array of events/journals/todos which are arrays of arrays of key-value-pairs
+ * @since 13.0.0
+ */
+ public function search($pattern, array $searchProperties=[], array $options=[], $limit=null, $offset=null) {
+ $this->loadCalendars();
+ $result = [];
+ foreach($this->calendars as $calendar) {
+ $r = $calendar->search($pattern, $searchProperties, $options, $limit, $offset);
+ foreach($r as $o) {
+ $o['calendar-key'] = $calendar->getKey();
+ $result[] = $o;
+ }
+ }
+
+ return $result;
+ }
+
+ /**
+ * Check if calendars are available
+ *
+ * @return bool true if enabled, false if not
+ * @since 13.0.0
+ */
+ public function isEnabled() {
+ return !empty($this->calendars) || !empty($this->calendarLoaders);
+ }
+
+ /**
+ * Registers a calendar
+ *
+ * @param ICalendar $calendar
+ * @return void
+ * @since 13.0.0
+ */
+ public function registerCalendar(ICalendar $calendar) {
+ $this->calendars[$calendar->getKey()] = $calendar;
+ }
+
+ /**
+ * Unregisters a calendar
+ *
+ * @param ICalendar $calendar
+ * @return void
+ * @since 13.0.0
+ */
+ public function unregisterCalendar(ICalendar $calendar) {
+ unset($this->calendars[$calendar->getKey()]);
+ }
+
+ /**
+ * In order to improve lazy loading a closure can be registered which will be called in case
+ * calendars are actually requested
+ *
+ * @param \Closure $callable
+ * @return void
+ * @since 13.0.0
+ */
+ public function register(\Closure $callable) {
+ $this->calendarLoaders[] = $callable;
+ }
+
+ /**
+ * @return ICalendar[]
+ * @since 13.0.0
+ */
+ public function getCalendars() {
+ $this->loadCalendars();
+
+ return array_values($this->calendars);
+ }
+
+ /**
+ * removes all registered calendar instances
+ * @return void
+ * @since 13.0.0
+ */
+ public function clear() {
+ $this->calendars = [];
+ $this->calendarLoaders = [];
+ }
+
+ /**
+ * loads all calendars
+ */
+ private function loadCalendars() {
+ foreach($this->calendarLoaders as $callable) {
+ $callable($this);
+ }
+ $this->calendarLoaders = [];
+ }
+}
diff --git a/lib/private/Server.php b/lib/private/Server.php
index af18b1a3a11..867eee99b54 100644
--- a/lib/private/Server.php
+++ b/lib/private/Server.php
@@ -153,6 +153,9 @@ class Server extends ServerContainer implements IServerContainer {
return $c;
});
+ $this->registerAlias(\OCP\Calendar\IManager::class, \OC\Calendar\Manager::class);
+ $this->registerAlias('CalendarManager', \OC\Calendar\Manager::class);
+
$this->registerAlias(\OCP\Contacts\IManager::class, \OC\ContactsManager::class);
$this->registerAlias('ContactsManager', \OCP\Contacts\IManager::class);
@@ -1095,6 +1098,13 @@ class Server extends ServerContainer implements IServerContainer {
}
/**
+ * @return \OCP\Calendar\IManager
+ */
+ public function getCalendarManager() {
+ return $this->query('CalendarManager');
+ }
+
+ /**
* @return \OCP\Contacts\IManager
*/
public function getContactsManager() {
diff --git a/lib/public/IServerContainer.php b/lib/public/IServerContainer.php
index 13abd0ff43b..8c33a765d5e 100644
--- a/lib/public/IServerContainer.php
+++ b/lib/public/IServerContainer.php
@@ -58,6 +58,15 @@ use Symfony\Component\EventDispatcher\EventDispatcherInterface;
interface IServerContainer extends IContainer {
/**
+ * The calendar manager will act as a broker between consumers for calendar information and
+ * providers which actual deliver the calendar information.
+ *
+ * @return \OCP\Calendar\IManager
+ * @since 13.0.0
+ */
+ public function getCalendarManager();
+
+ /**
* The contacts manager will act as a broker between consumers for contacts information and
* providers which actual deliver the contact information.
*
diff --git a/tests/lib/Calendar/ManagerTest.php b/tests/lib/Calendar/ManagerTest.php
new file mode 100644
index 00000000000..657a50a3d88
--- /dev/null
+++ b/tests/lib/Calendar/ManagerTest.php
@@ -0,0 +1,214 @@
+<?php
+/**
+ * @copyright 2017, Georg Ehrke <oc.list@georgehrke.com>
+ *
+ * @author Georg Ehrke <oc.list@georgehrke.com>
+ *
+ * @license GNU AGPL version 3 or any later version
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Affero General Public License as
+ * published by the Free Software Foundation, either version 3 of the
+ * License, or (at your option) any later version.
+ *
+ * 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
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ *
+ */
+
+namespace Test\Calendar;
+
+use \OC\Calendar\Manager;
+use OCP\Calendar\ICalendar;
+use \Test\TestCase;
+
+class ManagerTest extends TestCase {
+
+ /** @var Manager */
+ private $manager;
+
+ protected function setUp() {
+ parent::setUp();
+
+ $this->manager = new Manager();
+ }
+
+ /**
+ * @dataProvider searchProvider
+ */
+ public function testSearch($search1, $search2, $expected) {
+ /** @var ICalendar | \PHPUnit_Framework_MockObject_MockObject $calendar1 */
+ $calendar1 = $this->createMock(ICalendar::class);
+ $calendar1->method('getKey')->will($this->returnValue('simple:1'));
+ $calendar1->expects($this->once())
+ ->method('search')
+ ->with('', [], [], null, null)
+ ->will($this->returnValue($search1));
+
+ /** @var ICalendar | PHPUnit_Framework_MockObject_MockObject $calendar2 */
+ $calendar2 = $this->createMock(ICalendar::class);
+ $calendar2->method('getKey')->will($this->returnValue('simple:2'));
+ $calendar2->expects($this->once())
+ ->method('search')
+ ->with('', [], [], null, null)
+ ->will($this->returnValue($search2));
+
+ $this->manager->registerCalendar($calendar1);
+ $this->manager->registerCalendar($calendar2);
+
+ $result = $this->manager->search('');
+ $this->assertEquals($expected, $result);
+ }
+
+ /**
+ * @dataProvider searchProvider
+ */
+ public function testSearchOptions($search1, $search2, $expected) {
+ /** @var ICalendar | \PHPUnit_Framework_MockObject_MockObject $calendar1 */
+ $calendar1 = $this->createMock(ICalendar::class);
+ $calendar1->method('getKey')->will($this->returnValue('simple:1'));
+ $calendar1->expects($this->once())
+ ->method('search')
+ ->with('searchTerm', ['SUMMARY', 'DESCRIPTION'],
+ ['timerange' => ['start' => null, 'end' => null]], 5, 20)
+ ->will($this->returnValue($search1));
+
+ /** @var ICalendar | PHPUnit_Framework_MockObject_MockObject $calendar2 */
+ $calendar2 = $this->createMock(ICalendar::class);
+ $calendar2->method('getKey')->will($this->returnValue('simple:2'));
+ $calendar2->expects($this->once())
+ ->method('search')
+ ->with('searchTerm', ['SUMMARY', 'DESCRIPTION'],
+ ['timerange' => ['start' => null, 'end' => null]], 5, 20)
+ ->will($this->returnValue($search2));
+
+ $this->manager->registerCalendar($calendar1);
+ $this->manager->registerCalendar($calendar2);
+
+ $result = $this->manager->search('searchTerm', ['SUMMARY', 'DESCRIPTION'],
+ ['timerange' => ['start' => null, 'end' => null]], 5, 20);
+ $this->assertEquals($expected, $result);
+ }
+
+ public function searchProvider() {
+ $search1 = [
+ [
+ 'id' => 1,
+ 'data' => 'foobar',
+ ],
+ [
+ 'id' => 2,
+ 'data' => 'barfoo',
+ ]
+ ];
+ $search2 = [
+ [
+ 'id' => 3,
+ 'data' => 'blablub',
+ ],
+ [
+ 'id' => 4,
+ 'data' => 'blubbla',
+ ]
+ ];
+
+ $expected = [
+ [
+ 'id' => 1,
+ 'data' => 'foobar',
+ 'calendar-key' => 'simple:1',
+ ],
+ [
+ 'id' => 2,
+ 'data' => 'barfoo',
+ 'calendar-key' => 'simple:1',
+ ],
+ [
+ 'id' => 3,
+ 'data' => 'blablub',
+ 'calendar-key' => 'simple:2',
+ ],
+ [
+ 'id' => 4,
+ 'data' => 'blubbla',
+ 'calendar-key' => 'simple:2',
+ ]
+ ];
+
+ return [
+ [
+ $search1,
+ $search2,
+ $expected
+ ]
+ ];
+ }
+
+ public function testRegisterUnregister() {
+ /** @var ICalendar | \PHPUnit_Framework_MockObject_MockObject $calendar1 */
+ $calendar1 = $this->createMock(ICalendar::class);
+ $calendar1->method('getKey')->will($this->returnValue('key1'));
+
+ /** @var ICalendar | \PHPUnit_Framework_MockObject_MockObject $calendar2 */
+ $calendar2 = $this->createMock(ICalendar::class);
+ $calendar2->method('getKey')->will($this->returnValue('key2'));
+
+ $this->manager->registerCalendar($calendar1);
+ $this->manager->registerCalendar($calendar2);
+
+ $result = $this->manager->getCalendars();
+ $this->assertCount(2, $result);
+ $this->assertContains($calendar1, $result);
+ $this->assertContains($calendar2, $result);
+
+ $this->manager->unregisterCalendar($calendar1);
+
+ $result = $this->manager->getCalendars();
+ $this->assertCount(1, $result);
+ $this->assertContains($calendar2, $result);
+ }
+
+ public function testGetCalendars() {
+ /** @var ICalendar | \PHPUnit_Framework_MockObject_MockObject $calendar1 */
+ $calendar1 = $this->createMock(ICalendar::class);
+ $calendar1->method('getKey')->will($this->returnValue('key1'));
+
+ /** @var ICalendar | \PHPUnit_Framework_MockObject_MockObject $calendar2 */
+ $calendar2 = $this->createMock(ICalendar::class);
+ $calendar2->method('getKey')->will($this->returnValue('key2'));
+
+ $this->manager->registerCalendar($calendar1);
+ $this->manager->registerCalendar($calendar2);
+
+ $result = $this->manager->getCalendars();
+ $this->assertCount(2, $result);
+ $this->assertContains($calendar1, $result);
+ $this->assertContains($calendar2, $result);
+
+ $this->manager->clear();
+
+ $result = $this->manager->getCalendars();
+
+ $this->assertCount(0, $result);
+ }
+
+ public function testEnabledIfNot() {
+ $isEnabled = $this->manager->isEnabled();
+ $this->assertFalse($isEnabled);
+ }
+
+ public function testIfEnabledIfSo() {
+ /** @var ICalendar | \PHPUnit_Framework_MockObject_MockObject $calendar */
+ $calendar = $this->createMock(ICalendar::class);
+ $this->manager->registerCalendar($calendar);
+
+ $isEnabled = $this->manager->isEnabled();
+ $this->assertTrue($isEnabled);
+ }
+
+}