123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623 |
- <?php
- /**
- * @copyright Copyright (c) 2016, ownCloud, Inc.
- *
- * @author Bjoern Schiessle <bjoern@schiessle.org>
- * @author Björn Schießle <bjoern@schiessle.org>
- * @author Christoph Wurst <christoph@winzerhof-wurst.at>
- * @author Daniel Calviño Sánchez <danxuliu@gmail.com>
- * @author Joas Schilling <coding@schilljs.com>
- * @author John Molakvoæ <skjnldsv@protonmail.com>
- * @author Maxence Lange <maxence@nextcloud.com>
- * @author Robin Appelman <robin@icewind.nl>
- * @author Roeland Jago Douma <roeland@famdouma.nl>
- *
- * @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 OC\Share20;
- use OCP\Files\File;
- use OCP\Files\Cache\ICacheEntry;
- use OCP\Files\FileInfo;
- use OCP\Files\IRootFolder;
- use OCP\Files\Node;
- use OCP\Files\NotFoundException;
- use OCP\IUserManager;
- use OCP\Share\Exceptions\IllegalIDChangeException;
- use OCP\Share\IAttributes;
- use OCP\Share\IShare;
- class Share implements IShare {
- /** @var string */
- private $id;
- /** @var string */
- private $providerId;
- /** @var Node */
- private $node;
- /** @var int */
- private $fileId;
- /** @var string */
- private $nodeType;
- /** @var int */
- private $shareType;
- /** @var string */
- private $sharedWith;
- /** @var string */
- private $sharedWithDisplayName;
- /** @var string */
- private $sharedWithAvatar;
- /** @var string */
- private $sharedBy;
- /** @var string */
- private $shareOwner;
- /** @var int */
- private $permissions;
- /** @var IAttributes */
- private $attributes;
- /** @var int */
- private $status;
- /** @var string */
- private $note = '';
- /** @var \DateTime */
- private $expireDate;
- /** @var string */
- private $password;
- private ?\DateTimeInterface $passwordExpirationTime = null;
- /** @var bool */
- private $sendPasswordByTalk = false;
- /** @var string */
- private $token;
- /** @var int */
- private $parent;
- /** @var string */
- private $target;
- /** @var \DateTime */
- private $shareTime;
- /** @var bool */
- private $mailSend;
- /** @var string */
- private $label = '';
- /** @var IRootFolder */
- private $rootFolder;
- /** @var IUserManager */
- private $userManager;
- /** @var ICacheEntry|null */
- private $nodeCacheEntry;
- /** @var bool */
- private $hideDownload = false;
- public function __construct(IRootFolder $rootFolder, IUserManager $userManager) {
- $this->rootFolder = $rootFolder;
- $this->userManager = $userManager;
- }
- /**
- * @inheritdoc
- */
- public function setId($id) {
- if (is_int($id)) {
- $id = (string)$id;
- }
- if (!is_string($id)) {
- throw new \InvalidArgumentException('String expected.');
- }
- if ($this->id !== null) {
- throw new IllegalIDChangeException('Not allowed to assign a new internal id to a share');
- }
- $this->id = trim($id);
- return $this;
- }
- /**
- * @inheritdoc
- */
- public function getId() {
- return $this->id;
- }
- /**
- * @inheritdoc
- */
- public function getFullId() {
- if ($this->providerId === null || $this->id === null) {
- throw new \UnexpectedValueException;
- }
- return $this->providerId . ':' . $this->id;
- }
- /**
- * @inheritdoc
- */
- public function setProviderId($id) {
- if (!is_string($id)) {
- throw new \InvalidArgumentException('String expected.');
- }
- if ($this->providerId !== null) {
- throw new IllegalIDChangeException('Not allowed to assign a new provider id to a share');
- }
- $this->providerId = trim($id);
- return $this;
- }
- /**
- * @inheritdoc
- */
- public function setNode(Node $node) {
- $this->fileId = null;
- $this->nodeType = null;
- $this->node = $node;
- return $this;
- }
- /**
- * @inheritdoc
- */
- public function getNode() {
- if ($this->node === null) {
- if ($this->shareOwner === null || $this->fileId === null) {
- throw new NotFoundException();
- }
- // for federated shares the owner can be a remote user, in this
- // case we use the initiator
- if ($this->userManager->userExists($this->shareOwner)) {
- $userFolder = $this->rootFolder->getUserFolder($this->shareOwner);
- } else {
- $userFolder = $this->rootFolder->getUserFolder($this->sharedBy);
- }
- $nodes = $userFolder->getById($this->fileId);
- if (empty($nodes)) {
- throw new NotFoundException('Node for share not found, fileid: ' . $this->fileId);
- }
- $this->node = $nodes[0];
- }
- return $this->node;
- }
- /**
- * @inheritdoc
- */
- public function setNodeId($fileId) {
- $this->node = null;
- $this->fileId = $fileId;
- return $this;
- }
- /**
- * @inheritdoc
- */
- public function getNodeId() {
- if ($this->fileId === null) {
- $this->fileId = $this->getNode()->getId();
- }
- return $this->fileId;
- }
- /**
- * @inheritdoc
- */
- public function setNodeType($type) {
- if ($type !== 'file' && $type !== 'folder') {
- throw new \InvalidArgumentException();
- }
- $this->nodeType = $type;
- return $this;
- }
- /**
- * @inheritdoc
- */
- public function getNodeType() {
- if ($this->nodeType === null) {
- if ($this->getNodeCacheEntry()) {
- $info = $this->getNodeCacheEntry();
- $this->nodeType = $info->getMimeType() === FileInfo::MIMETYPE_FOLDER ? 'folder' : 'file';
- } else {
- $node = $this->getNode();
- $this->nodeType = $node instanceof File ? 'file' : 'folder';
- }
- }
- return $this->nodeType;
- }
- /**
- * @inheritdoc
- */
- public function setShareType($shareType) {
- $this->shareType = $shareType;
- return $this;
- }
- /**
- * @inheritdoc
- */
- public function getShareType() {
- return $this->shareType;
- }
- /**
- * @inheritdoc
- */
- public function setSharedWith($sharedWith) {
- if (!is_string($sharedWith)) {
- throw new \InvalidArgumentException();
- }
- $this->sharedWith = $sharedWith;
- return $this;
- }
- /**
- * @inheritdoc
- */
- public function getSharedWith() {
- return $this->sharedWith;
- }
- /**
- * @inheritdoc
- */
- public function setSharedWithDisplayName($displayName) {
- if (!is_string($displayName)) {
- throw new \InvalidArgumentException();
- }
- $this->sharedWithDisplayName = $displayName;
- return $this;
- }
- /**
- * @inheritdoc
- */
- public function getSharedWithDisplayName() {
- return $this->sharedWithDisplayName;
- }
- /**
- * @inheritdoc
- */
- public function setSharedWithAvatar($src) {
- if (!is_string($src)) {
- throw new \InvalidArgumentException();
- }
- $this->sharedWithAvatar = $src;
- return $this;
- }
- /**
- * @inheritdoc
- */
- public function getSharedWithAvatar() {
- return $this->sharedWithAvatar;
- }
- /**
- * @inheritdoc
- */
- public function setPermissions($permissions) {
- //TODO checks
- $this->permissions = $permissions;
- return $this;
- }
- /**
- * @inheritdoc
- */
- public function getPermissions() {
- return $this->permissions;
- }
- /**
- * @inheritdoc
- */
- public function newAttributes(): IAttributes {
- return new ShareAttributes();
- }
- /**
- * @inheritdoc
- */
- public function setAttributes(?IAttributes $attributes) {
- $this->attributes = $attributes;
- return $this;
- }
- /**
- * @inheritdoc
- */
- public function getAttributes(): ?IAttributes {
- return $this->attributes;
- }
- /**
- * @inheritdoc
- */
- public function setStatus(int $status): IShare {
- $this->status = $status;
- return $this;
- }
- /**
- * @inheritdoc
- */
- public function getStatus(): int {
- return $this->status;
- }
- /**
- * @inheritdoc
- */
- public function setNote($note) {
- $this->note = $note;
- return $this;
- }
- /**
- * @inheritdoc
- */
- public function getNote() {
- if (is_string($this->note)) {
- return $this->note;
- }
- return '';
- }
- /**
- * @inheritdoc
- */
- public function setLabel($label) {
- $this->label = $label;
- return $this;
- }
- /**
- * @inheritdoc
- */
- public function getLabel() {
- return $this->label;
- }
- /**
- * @inheritdoc
- */
- public function setExpirationDate($expireDate) {
- //TODO checks
- $this->expireDate = $expireDate;
- return $this;
- }
- /**
- * @inheritdoc
- */
- public function getExpirationDate() {
- return $this->expireDate;
- }
- /**
- * @inheritdoc
- */
- public function isExpired() {
- return $this->getExpirationDate() !== null &&
- $this->getExpirationDate() <= new \DateTime();
- }
- /**
- * @inheritdoc
- */
- public function setSharedBy($sharedBy) {
- if (!is_string($sharedBy)) {
- throw new \InvalidArgumentException();
- }
- //TODO checks
- $this->sharedBy = $sharedBy;
- return $this;
- }
- /**
- * @inheritdoc
- */
- public function getSharedBy() {
- //TODO check if set
- return $this->sharedBy;
- }
- /**
- * @inheritdoc
- */
- public function setShareOwner($shareOwner) {
- if (!is_string($shareOwner)) {
- throw new \InvalidArgumentException();
- }
- //TODO checks
- $this->shareOwner = $shareOwner;
- return $this;
- }
- /**
- * @inheritdoc
- */
- public function getShareOwner() {
- //TODO check if set
- return $this->shareOwner;
- }
- /**
- * @inheritdoc
- */
- public function setPassword($password) {
- $this->password = $password;
- return $this;
- }
- /**
- * @inheritdoc
- */
- public function getPassword() {
- return $this->password;
- }
- /**
- * @inheritdoc
- */
- public function setPasswordExpirationTime(?\DateTimeInterface $passwordExpirationTime = null): IShare {
- $this->passwordExpirationTime = $passwordExpirationTime;
- return $this;
- }
- /**
- * @inheritdoc
- */
- public function getPasswordExpirationTime(): ?\DateTimeInterface {
- return $this->passwordExpirationTime;
- }
- /**
- * @inheritdoc
- */
- public function setSendPasswordByTalk(bool $sendPasswordByTalk) {
- $this->sendPasswordByTalk = $sendPasswordByTalk;
- return $this;
- }
- /**
- * @inheritdoc
- */
- public function getSendPasswordByTalk(): bool {
- return $this->sendPasswordByTalk;
- }
- /**
- * @inheritdoc
- */
- public function setToken($token) {
- $this->token = $token;
- return $this;
- }
- /**
- * @inheritdoc
- */
- public function getToken() {
- return $this->token;
- }
- /**
- * Set the parent of this share
- *
- * @param int parent
- * @return IShare
- * @deprecated The new shares do not have parents. This is just here for legacy reasons.
- */
- public function setParent($parent) {
- $this->parent = $parent;
- return $this;
- }
- /**
- * Get the parent of this share.
- *
- * @return int
- * @deprecated The new shares do not have parents. This is just here for legacy reasons.
- */
- public function getParent() {
- return $this->parent;
- }
- /**
- * @inheritdoc
- */
- public function setTarget($target) {
- $this->target = $target;
- return $this;
- }
- /**
- * @inheritdoc
- */
- public function getTarget() {
- return $this->target;
- }
- /**
- * @inheritdoc
- */
- public function setShareTime(\DateTime $shareTime) {
- $this->shareTime = $shareTime;
- return $this;
- }
- /**
- * @inheritdoc
- */
- public function getShareTime() {
- return $this->shareTime;
- }
- /**
- * @inheritdoc
- */
- public function setMailSend($mailSend) {
- $this->mailSend = $mailSend;
- return $this;
- }
- /**
- * @inheritdoc
- */
- public function getMailSend() {
- return $this->mailSend;
- }
- /**
- * @inheritdoc
- */
- public function setNodeCacheEntry(ICacheEntry $entry) {
- $this->nodeCacheEntry = $entry;
- }
- /**
- * @inheritdoc
- */
- public function getNodeCacheEntry() {
- return $this->nodeCacheEntry;
- }
- public function setHideDownload(bool $hide): IShare {
- $this->hideDownload = $hide;
- return $this;
- }
- public function getHideDownload(): bool {
- return $this->hideDownload;
- }
- }
|