summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristoph Wurst <christoph@winzerhof-wurst.at>2017-03-20 13:42:32 +0100
committerChristoph Wurst <christoph@winzerhof-wurst.at>2017-03-20 13:42:32 +0100
commit3fd93f23f5f51eb381b257cfe1578da4c04850d1 (patch)
treefc3ac12028049c558e30d4148c0b00943d343249
parent334e7ed3301d045754bfdae05ef8e0939c1c0a60 (diff)
Add contacts menu integration
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
-rw-r--r--ContactsMenu/Provider/DetailsProvider.php71
-rw-r--r--tests/unit/ContactsMenu/Provider/DetailsProviderTest.php91
2 files changed, 162 insertions, 0 deletions
diff --git a/ContactsMenu/Provider/DetailsProvider.php b/ContactsMenu/Provider/DetailsProvider.php
new file mode 100644
index 00000000..17b22dd0
--- /dev/null
+++ b/ContactsMenu/Provider/DetailsProvider.php
@@ -0,0 +1,71 @@
+<?php
+
+/**
+ * @copyright 2017 Christoph Wurst <christoph@winzerhof-wurst.at>
+ *
+ * @author 2017 Christoph Wurst <christoph@winzerhof-wurst.at>
+ *
+ * @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\Contacts\ContactsMenu\Providers;
+
+use OCP\Contacts\ContactsMenu\IActionFactory;
+use OCP\Contacts\ContactsMenu\IEntry;
+use OCP\Contacts\ContactsMenu\IProvider;
+use OCP\IURLGenerator;
+
+/**
+ * @todo move to contacts app
+ */
+class DetailsProvider implements IProvider {
+
+ /** @var IURLGenerator */
+ private $urlGenerator;
+
+ /** @var IActionFactory */
+ private $actionFactory;
+
+ /**
+ * @param IURLGenerator $urlGenerator
+ * @param IActionFactory $actionFactory
+ */
+ public function __construct(IURLGenerator $urlGenerator, IActionFactory $actionFactory) {
+ $this->actionFactory = $actionFactory;
+ $this->urlGenerator = $urlGenerator;
+ }
+
+ /**
+ * @param IEntry $entry
+ */
+ public function process(IEntry $entry) {
+ $uid = $entry->getProperty('UID');
+
+ if (is_null($uid)) {
+ // Nothing to do
+ return;
+ }
+
+ // TODO: unique contact URL to the contacts app
+ // TODO: l10n
+ $contactsUrl = $this->urlGenerator->getAbsoluteURL('/index.php/apps/contacts');
+ $action = $this->actionFactory->newLinkAction('icon-info', 'Details', $contactsUrl);
+ $action->setPriority(0);
+ $entry->addAction($action);
+ }
+
+}
diff --git a/tests/unit/ContactsMenu/Provider/DetailsProviderTest.php b/tests/unit/ContactsMenu/Provider/DetailsProviderTest.php
new file mode 100644
index 00000000..6e9871eb
--- /dev/null
+++ b/tests/unit/ContactsMenu/Provider/DetailsProviderTest.php
@@ -0,0 +1,91 @@
+<?php
+
+/**
+ * @copyright 2017 Christoph Wurst <christoph@winzerhof-wurst.at>
+ *
+ * @author 2017 Christoph Wurst <christoph@winzerhof-wurst.at>
+ *
+ * @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 Tests\Contacts\ContactsMenu\Providers;
+
+use OC\Contacts\ContactsMenu\Providers\DetailsProvider;
+use OCP\Contacts\ContactsMenu\IActionFactory;
+use OCP\Contacts\ContactsMenu\IEntry;
+use OCP\Contacts\ContactsMenu\ILinkAction;
+use OCP\IURLGenerator;
+use PHPUnit_Framework_MockObject_MockObject;
+use Test\TestCase;
+
+class DetailsProviderTest extends TestCase {
+
+ /** @var IURLGenerator|PHPUnit_Framework_MockObject_MockObject */
+ private $urlGenerator;
+
+ /** @var IActionFactory|PHPUnit_Framework_MockObject_MockObject */
+ private $actionFactory;
+
+ /** @var DetailsProvider */
+ private $provider;
+
+ protected function setUp() {
+ parent::setUp();
+
+ $this->urlGenerator = $this->createMock(IURLGenerator::class);
+ $this->actionFactory = $this->createMock(IActionFactory::class);
+ $this->provider = new DetailsProvider($this->urlGenerator, $this->actionFactory);
+ }
+
+ public function testProcess() {
+ $entry = $this->createMock(IEntry::class);
+ $action = $this->createMock(ILinkAction::class);
+
+ $entry->expects($this->once())
+ ->method('getProperty')
+ ->with($this->equalTo('UID'))
+ ->willReturn('e3a71614-c602-4eb5-9994-47eec551542b');
+ $this->urlGenerator->expects($this->once())
+ ->method('getAbsoluteURL')
+ ->with('/index.php/apps/contacts')
+ ->willReturn('cloud.example.com/index.php/apps/contacts');
+ $this->actionFactory->expects($this->once())
+ ->method('newLinkAction')
+ ->with($this->equalTo('icon-info'), $this->equalTo('Details'), $this->equalTo('cloud.example.com/index.php/apps/contacts'))
+ ->willReturn($action);
+ $action->expects($this->once())
+ ->method('setPriority')
+ ->with($this->equalTo(0));
+ $entry->expects($this->once())
+ ->method('addAction')
+ ->with($action);
+
+ $this->provider->process($entry);
+ }
+
+ public function testProcessNoUID() {
+ $entry = $this->createMock(IEntry::class);
+
+ $entry->expects($this->once())
+ ->method('getProperty')
+ ->with($this->equalTo('UID'))
+ ->willReturn(null);
+
+ $this->provider->process($entry);
+ }
+
+}