summaryrefslogtreecommitdiffstats
path: root/apps/dav/lib/carddav/addressbookimpl.php
diff options
context:
space:
mode:
authorJoas Schilling <nickvergessen@gmx.de>2016-05-12 09:42:40 +0200
committerThomas Müller <DeepDiver1975@users.noreply.github.com>2016-05-12 09:42:40 +0200
commitdd9ee10bc0699e5dcc17c3ef2181dcda01d9a69b (patch)
tree2d464fcc20ea330481e56487287aeae462ce5917 /apps/dav/lib/carddav/addressbookimpl.php
parent4a3311f430ec6e45c62b2ebde2cae71e943f3c81 (diff)
downloadnextcloud-server-dd9ee10bc0699e5dcc17c3ef2181dcda01d9a69b.tar.gz
nextcloud-server-dd9ee10bc0699e5dcc17c3ef2181dcda01d9a69b.zip
Move dav app to PSR-4 (#24527)
* Move Application to correct namespace and PSR-4 it * Move dav app to PSR-4
Diffstat (limited to 'apps/dav/lib/carddav/addressbookimpl.php')
-rw-r--r--apps/dav/lib/carddav/addressbookimpl.php224
1 files changed, 0 insertions, 224 deletions
diff --git a/apps/dav/lib/carddav/addressbookimpl.php b/apps/dav/lib/carddav/addressbookimpl.php
deleted file mode 100644
index 8b29d6d5c0c..00000000000
--- a/apps/dav/lib/carddav/addressbookimpl.php
+++ /dev/null
@@ -1,224 +0,0 @@
-<?php
-/**
- * @author Björn Schießle <schiessle@owncloud.com>
- * @author Thomas Müller <thomas.mueller@tmit.eu>
- *
- * @copyright Copyright (c) 2016, ownCloud, Inc.
- * @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\CardDAV;
-
-use OCP\Constants;
-use OCP\IAddressBook;
-use Sabre\VObject\Component\VCard;
-use Sabre\VObject\Property\Text;
-use Sabre\VObject\Reader;
-use Sabre\VObject\UUIDUtil;
-
-class AddressBookImpl implements IAddressBook {
-
- /** @var CardDavBackend */
- private $backend;
-
- /** @var array */
- private $addressBookInfo;
-
- /** @var AddressBook */
- private $addressBook;
-
- /**
- * AddressBookImpl constructor.
- *
- * @param AddressBook $addressBook
- * @param array $addressBookInfo
- * @param CardDavBackend $backend
- */
- public function __construct(
- AddressBook $addressBook,
- array $addressBookInfo,
- CardDavBackend $backend) {
-
- $this->addressBook = $addressBook;
- $this->addressBookInfo = $addressBookInfo;
- $this->backend = $backend;
- }
-
- /**
- * @return string defining the technical unique key
- * @since 5.0.0
- */
- public function getKey() {
- return $this->addressBookInfo['id'];
- }
-
- /**
- * In comparison to getKey() this function returns a human readable (maybe translated) name
- *
- * @return mixed
- * @since 5.0.0
- */
- public function getDisplayName() {
- return $this->addressBookInfo['{DAV:}displayname'];
- }
-
- /**
- * @param string $pattern which should match within the $searchProperties
- * @param array $searchProperties defines the properties within the query pattern should match
- * @param array $options - for future use. One should always have options!
- * @return array an array of contacts which are arrays of key-value-pairs
- * @since 5.0.0
- */
- public function search($pattern, $searchProperties, $options) {
- $result = $this->backend->search($this->getKey(), $pattern, $searchProperties);
-
- $vCards = [];
- foreach ($result as $cardData) {
- $vCards[] = $this->vCard2Array($this->readCard($cardData));
- }
-
- return $vCards;
- }
-
- /**
- * @param array $properties this array if key-value-pairs defines a contact
- * @return array an array representing the contact just created or updated
- * @since 5.0.0
- */
- public function createOrUpdate($properties) {
- $update = false;
- if (!isset($properties['UID'])) { // create a new contact
- $uid = $this->createUid();
- $uri = $uid . '.vcf';
- $vCard = $this->createEmptyVCard($uid);
- } else { // update existing contact
- $uid = $properties['UID'];
- $uri = $uid . '.vcf';
- $vCardData = $this->backend->getCard($this->getKey(), $uri);
- $vCard = $this->readCard($vCardData['carddata']);
- $update = true;
- }
-
- foreach ($properties as $key => $value) {
- $vCard->$key = $vCard->createProperty($key, $value);
- }
-
- if ($update) {
- $this->backend->updateCard($this->getKey(), $uri, $vCard->serialize());
- } else {
- $this->backend->createCard($this->getKey(), $uri, $vCard->serialize());
- }
-
- return $this->vCard2Array($vCard);
-
- }
-
- /**
- * @return mixed
- * @since 5.0.0
- */
- public function getPermissions() {
- $permissions = $this->addressBook->getACL();
- $result = 0;
- foreach ($permissions as $permission) {
- switch($permission['privilege']) {
- case '{DAV:}read':
- $result |= Constants::PERMISSION_READ;
- break;
- case '{DAV:}write':
- $result |= Constants::PERMISSION_CREATE;
- $result |= Constants::PERMISSION_UPDATE;
- break;
- case '{DAV:}all':
- $result |= Constants::PERMISSION_ALL;
- break;
- }
- }
-
- return $result;
- }
-
- /**
- * @param object $id the unique identifier to a contact
- * @return bool successful or not
- * @since 5.0.0
- */
- public function delete($id) {
- $uri = $this->backend->getCardUri($id);
- return $this->backend->deleteCard($this->addressBookInfo['id'], $uri);
- }
-
- /**
- * read vCard data into a vCard object
- *
- * @param string $cardData
- * @return VCard
- */
- protected function readCard($cardData) {
- return Reader::read($cardData);
- }
-
- /**
- * create UID for contact
- *
- * @return string
- */
- protected function createUid() {
- do {
- $uid = $this->getUid();
- $contact = $this->backend->getContact($this->getKey(), $uid . '.vcf');
- } while (!empty($contact));
-
- return $uid;
- }
-
- /**
- * getUid is only there for testing, use createUid instead
- */
- protected function getUid() {
- return UUIDUtil::getUUID();
- }
-
- /**
- * create empty vcard
- *
- * @param string $uid
- * @return VCard
- */
- protected function createEmptyVCard($uid) {
- $vCard = new VCard();
- $vCard->add(new Text($vCard, 'UID', $uid));
- return $vCard;
- }
-
- /**
- * create array with all vCard properties
- *
- * @param VCard $vCard
- * @return array
- */
- protected function vCard2Array(VCard $vCard) {
- $result = [];
- foreach ($vCard->children as $property) {
- $result[$property->name] = $property->getValue();
- }
- if ($this->addressBookInfo['principaluri'] === 'principals/system/system' &&
- $this->addressBookInfo['uri'] === 'system') {
- $result['isLocalSystemBook'] = true;
- }
- return $result;
- }
-}