2016-01-11 20:09:00 +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 Arthur Schiwon <blizzz@arthur-schiwon.de>
|
2016-07-21 17:49:16 +03:00
|
|
|
* @author Joas Schilling <coding@schilljs.com>
|
2016-01-11 20:09:00 +03:00
|
|
|
*
|
|
|
|
* @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\Comments;
|
|
|
|
|
2016-02-24 15:23:44 +03:00
|
|
|
use OCP\Comments\CommentsEntityEvent;
|
2016-01-11 20:09:00 +03:00
|
|
|
use OCP\Comments\ICommentsManager;
|
|
|
|
use OCP\ILogger;
|
|
|
|
use OCP\IUserManager;
|
|
|
|
use OCP\IUserSession;
|
|
|
|
use Sabre\DAV\Exception\NotAuthenticated;
|
|
|
|
use Sabre\DAV\Exception\Forbidden;
|
|
|
|
use Sabre\DAV\Exception\NotFound;
|
|
|
|
use Sabre\DAV\ICollection;
|
2016-02-24 15:23:44 +03:00
|
|
|
use Symfony\Component\EventDispatcher\EventDispatcherInterface;
|
2016-01-11 20:09:00 +03:00
|
|
|
|
|
|
|
class RootCollection implements ICollection {
|
|
|
|
|
2016-02-24 15:23:44 +03:00
|
|
|
/** @var EntityTypeCollection[]|null */
|
|
|
|
private $entityTypeCollections;
|
2016-01-11 20:09:00 +03:00
|
|
|
|
|
|
|
/** @var ICommentsManager */
|
|
|
|
protected $commentsManager;
|
|
|
|
|
|
|
|
/** @var string */
|
|
|
|
protected $name = 'comments';
|
|
|
|
|
|
|
|
/** @var ILogger */
|
|
|
|
protected $logger;
|
|
|
|
|
|
|
|
/** @var IUserManager */
|
|
|
|
protected $userManager;
|
2016-02-24 15:23:44 +03:00
|
|
|
|
|
|
|
/** @var IUserSession */
|
2016-01-11 20:09:00 +03:00
|
|
|
protected $userSession;
|
2016-02-24 15:23:44 +03:00
|
|
|
|
|
|
|
/** @var EventDispatcherInterface */
|
|
|
|
protected $dispatcher;
|
2016-01-11 20:09:00 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @param ICommentsManager $commentsManager
|
|
|
|
* @param IUserManager $userManager
|
|
|
|
* @param IUserSession $userSession
|
2016-02-24 15:23:44 +03:00
|
|
|
* @param EventDispatcherInterface $dispatcher
|
2016-01-11 20:09:00 +03:00
|
|
|
* @param ILogger $logger
|
|
|
|
*/
|
|
|
|
public function __construct(
|
|
|
|
ICommentsManager $commentsManager,
|
|
|
|
IUserManager $userManager,
|
|
|
|
IUserSession $userSession,
|
2016-02-24 15:23:44 +03:00
|
|
|
EventDispatcherInterface $dispatcher,
|
2016-01-11 20:09:00 +03:00
|
|
|
ILogger $logger)
|
|
|
|
{
|
|
|
|
$this->commentsManager = $commentsManager;
|
|
|
|
$this->logger = $logger;
|
|
|
|
$this->userManager = $userManager;
|
|
|
|
$this->userSession = $userSession;
|
2016-02-24 15:23:44 +03:00
|
|
|
$this->dispatcher = $dispatcher;
|
2016-01-11 20:09:00 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* initializes the collection. At this point of time, we need the logged in
|
|
|
|
* user. Since it is not the case when the instance is created, we cannot
|
|
|
|
* have this in the constructor.
|
|
|
|
*
|
|
|
|
* @throws NotAuthenticated
|
|
|
|
*/
|
|
|
|
protected function initCollections() {
|
2016-02-24 15:23:44 +03:00
|
|
|
if($this->entityTypeCollections !== null) {
|
2016-01-11 20:09:00 +03:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
$user = $this->userSession->getUser();
|
|
|
|
if(is_null($user)) {
|
|
|
|
throw new NotAuthenticated();
|
|
|
|
}
|
2016-02-24 15:23:44 +03:00
|
|
|
|
|
|
|
$event = new CommentsEntityEvent(CommentsEntityEvent::EVENT_ENTITY);
|
|
|
|
$this->dispatcher->dispatch(CommentsEntityEvent::EVENT_ENTITY, $event);
|
|
|
|
|
|
|
|
$this->entityTypeCollections = [];
|
|
|
|
foreach ($event->getEntityCollections() as $entity => $entityExistsFunction) {
|
|
|
|
$this->entityTypeCollections[$entity] = new EntityTypeCollection(
|
|
|
|
$entity,
|
|
|
|
$this->commentsManager,
|
|
|
|
$this->userManager,
|
|
|
|
$this->userSession,
|
|
|
|
$this->logger,
|
|
|
|
$entityExistsFunction
|
|
|
|
);
|
|
|
|
}
|
2016-01-11 20:09:00 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Creates a new file in the directory
|
|
|
|
*
|
|
|
|
* @param string $name Name of the file
|
|
|
|
* @param resource|string $data Initial payload
|
|
|
|
* @return null|string
|
|
|
|
* @throws Forbidden
|
|
|
|
*/
|
|
|
|
function createFile($name, $data = null) {
|
|
|
|
throw new Forbidden('Cannot create comments by id');
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Creates a new subdirectory
|
|
|
|
*
|
|
|
|
* @param string $name
|
|
|
|
* @throws Forbidden
|
|
|
|
*/
|
|
|
|
function createDirectory($name) {
|
|
|
|
throw new Forbidden('Permission denied to create collections');
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns a specific child node, referenced by its name
|
|
|
|
*
|
|
|
|
* This method must throw Sabre\DAV\Exception\NotFound if the node does not
|
|
|
|
* exist.
|
|
|
|
*
|
|
|
|
* @param string $name
|
|
|
|
* @return \Sabre\DAV\INode
|
|
|
|
* @throws NotFound
|
|
|
|
*/
|
|
|
|
function getChild($name) {
|
|
|
|
$this->initCollections();
|
|
|
|
if(isset($this->entityTypeCollections[$name])) {
|
|
|
|
return $this->entityTypeCollections[$name];
|
|
|
|
}
|
|
|
|
throw new NotFound('Entity type "' . $name . '" not found."');
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns an array with all the child nodes
|
|
|
|
*
|
|
|
|
* @return \Sabre\DAV\INode[]
|
|
|
|
*/
|
|
|
|
function getChildren() {
|
|
|
|
$this->initCollections();
|
|
|
|
return $this->entityTypeCollections;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Checks if a child-node with the specified name exists
|
|
|
|
*
|
|
|
|
* @param string $name
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
function childExists($name) {
|
|
|
|
$this->initCollections();
|
|
|
|
return isset($this->entityTypeCollections[$name]);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Deleted the current node
|
|
|
|
*
|
|
|
|
* @throws Forbidden
|
|
|
|
*/
|
|
|
|
function delete() {
|
|
|
|
throw new Forbidden('Permission denied to delete this collection');
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns the name of the node.
|
|
|
|
*
|
|
|
|
* This is used to generate the url.
|
|
|
|
*
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
function getName() {
|
|
|
|
return $this->name;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Renames the node
|
|
|
|
*
|
|
|
|
* @param string $name The new name
|
|
|
|
* @throws Forbidden
|
|
|
|
*/
|
|
|
|
function setName($name) {
|
|
|
|
throw new Forbidden('Permission denied to rename this collection');
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns the last modification time, as a unix timestamp
|
|
|
|
*
|
|
|
|
* @return int
|
|
|
|
*/
|
|
|
|
function getLastModified() {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
}
|