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>
|
2020-04-29 12:57:22 +03:00
|
|
|
* @author Christoph Wurst <christoph@winzerhof-wurst.at>
|
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,
|
2019-12-03 21:57:53 +03:00
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>
|
2016-01-11 20:09:00 +03:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace OCA\DAV\Comments;
|
|
|
|
|
|
|
|
use OCP\Comments\ICommentsManager;
|
2016-02-24 14:43:23 +03:00
|
|
|
use OCP\Comments\NotFoundException;
|
2016-01-11 20:09:00 +03:00
|
|
|
use OCP\ILogger;
|
|
|
|
use OCP\IUserManager;
|
2016-02-01 19:26:42 +03:00
|
|
|
use OCP\IUserSession;
|
2016-01-11 20:09:00 +03:00
|
|
|
use Sabre\DAV\Exception\NotFound;
|
2016-02-24 14:43:23 +03:00
|
|
|
use Sabre\DAV\IProperties;
|
2016-02-01 19:26:42 +03:00
|
|
|
use Sabre\DAV\PropPatch;
|
2016-01-11 20:09:00 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Class EntityCollection
|
|
|
|
*
|
|
|
|
* this represents a specific holder of comments, identified by an entity type
|
|
|
|
* (class member $name) and an entity id (class member $id).
|
|
|
|
*
|
|
|
|
* @package OCA\DAV\Comments
|
|
|
|
*/
|
2016-02-24 14:43:23 +03:00
|
|
|
class EntityCollection extends RootCollection implements IProperties {
|
2020-04-10 17:54:27 +03:00
|
|
|
public const PROPERTY_NAME_READ_MARKER = '{http://owncloud.org/ns}readMarker';
|
2016-02-01 19:26:42 +03:00
|
|
|
|
2016-01-11 20:09:00 +03:00
|
|
|
/** @var string */
|
|
|
|
protected $id;
|
|
|
|
|
|
|
|
/** @var ILogger */
|
|
|
|
protected $logger;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param string $id
|
|
|
|
* @param string $name
|
|
|
|
* @param ICommentsManager $commentsManager
|
|
|
|
* @param IUserManager $userManager
|
2016-01-30 01:23:16 +03:00
|
|
|
* @param IUserSession $userSession
|
2016-01-11 20:09:00 +03:00
|
|
|
* @param ILogger $logger
|
|
|
|
*/
|
|
|
|
public function __construct(
|
|
|
|
$id,
|
|
|
|
$name,
|
|
|
|
ICommentsManager $commentsManager,
|
|
|
|
IUserManager $userManager,
|
2016-01-30 01:23:16 +03:00
|
|
|
IUserSession $userSession,
|
2016-01-11 20:09:00 +03:00
|
|
|
ILogger $logger
|
|
|
|
) {
|
2020-04-10 15:19:56 +03:00
|
|
|
foreach (['id', 'name'] as $property) {
|
2016-01-11 20:09:00 +03:00
|
|
|
$$property = trim($$property);
|
2020-04-10 15:19:56 +03:00
|
|
|
if (empty($$property) || !is_string($$property)) {
|
2016-01-11 20:09:00 +03:00
|
|
|
throw new \InvalidArgumentException('"' . $property . '" parameter must be non-empty string');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
$this->id = $id;
|
|
|
|
$this->name = $name;
|
|
|
|
$this->commentsManager = $commentsManager;
|
|
|
|
$this->logger = $logger;
|
|
|
|
$this->userManager = $userManager;
|
2016-01-30 01:23:16 +03:00
|
|
|
$this->userSession = $userSession;
|
2016-01-11 20:09:00 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* returns the ID of this entity
|
|
|
|
*
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function getId() {
|
|
|
|
return $this->id;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 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
|
|
|
|
*/
|
2020-04-10 17:51:06 +03:00
|
|
|
public function getChild($name) {
|
2016-01-11 20:09:00 +03:00
|
|
|
try {
|
|
|
|
$comment = $this->commentsManager->get($name);
|
2016-01-30 01:23:16 +03:00
|
|
|
return new CommentNode(
|
|
|
|
$this->commentsManager,
|
|
|
|
$comment,
|
|
|
|
$this->userManager,
|
|
|
|
$this->userSession,
|
|
|
|
$this->logger
|
|
|
|
);
|
2016-02-24 14:43:23 +03:00
|
|
|
} catch (NotFoundException $e) {
|
2016-01-11 20:09:00 +03:00
|
|
|
throw new NotFound();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns an array with all the child nodes
|
|
|
|
*
|
|
|
|
* @return \Sabre\DAV\INode[]
|
|
|
|
*/
|
2020-04-10 17:51:06 +03:00
|
|
|
public function getChildren() {
|
2016-01-11 20:09:00 +03:00
|
|
|
return $this->findChildren();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns an array of comment nodes. Result can be influenced by offset,
|
|
|
|
* limit and date time parameters.
|
|
|
|
*
|
|
|
|
* @param int $limit
|
|
|
|
* @param int $offset
|
|
|
|
* @param \DateTime|null $datetime
|
|
|
|
* @return CommentNode[]
|
|
|
|
*/
|
2020-04-10 17:51:06 +03:00
|
|
|
public function findChildren($limit = 0, $offset = 0, \DateTime $datetime = null) {
|
2016-01-11 20:09:00 +03:00
|
|
|
$comments = $this->commentsManager->getForObject($this->name, $this->id, $limit, $offset, $datetime);
|
|
|
|
$result = [];
|
2020-04-10 15:19:56 +03:00
|
|
|
foreach ($comments as $comment) {
|
2016-01-30 01:23:16 +03:00
|
|
|
$result[] = new CommentNode(
|
|
|
|
$this->commentsManager,
|
|
|
|
$comment,
|
|
|
|
$this->userManager,
|
|
|
|
$this->userSession,
|
|
|
|
$this->logger
|
|
|
|
);
|
2016-01-11 20:09:00 +03:00
|
|
|
}
|
|
|
|
return $result;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Checks if a child-node with the specified name exists
|
|
|
|
*
|
|
|
|
* @param string $name
|
|
|
|
* @return bool
|
|
|
|
*/
|
2020-04-10 17:51:06 +03:00
|
|
|
public function childExists($name) {
|
2016-01-11 20:09:00 +03:00
|
|
|
try {
|
|
|
|
$this->commentsManager->get($name);
|
|
|
|
return true;
|
2016-02-24 14:43:23 +03:00
|
|
|
} catch (NotFoundException $e) {
|
2016-01-11 20:09:00 +03:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
2016-02-01 19:26:42 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Sets the read marker to the specified date for the logged in user
|
|
|
|
*
|
|
|
|
* @param \DateTime $value
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
public function setReadMarker($value) {
|
|
|
|
$dateTime = new \DateTime($value);
|
|
|
|
$user = $this->userSession->getUser();
|
|
|
|
$this->commentsManager->setReadMark($this->name, $this->id, $dateTime, $user);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @inheritdoc
|
|
|
|
*/
|
2020-04-10 17:51:06 +03:00
|
|
|
public function propPatch(PropPatch $propPatch) {
|
2016-02-01 19:26:42 +03:00
|
|
|
$propPatch->handle(self::PROPERTY_NAME_READ_MARKER, [$this, 'setReadMarker']);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @inheritdoc
|
|
|
|
*/
|
2020-04-10 17:51:06 +03:00
|
|
|
public function getProperties($properties) {
|
2016-02-01 19:26:42 +03:00
|
|
|
$marker = null;
|
|
|
|
$user = $this->userSession->getUser();
|
2020-04-10 15:19:56 +03:00
|
|
|
if (!is_null($user)) {
|
2016-02-01 19:26:42 +03:00
|
|
|
$marker = $this->commentsManager->getReadMark($this->name, $this->id, $user);
|
|
|
|
}
|
|
|
|
return [self::PROPERTY_NAME_READ_MARKER => $marker];
|
|
|
|
}
|
2016-01-11 20:09:00 +03:00
|
|
|
}
|