2015-10-30 12:10:08 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* @author Roeland Jago Douma <rullzer@owncloud.com>
|
|
|
|
*
|
2016-01-12 14:02:16 +00:00
|
|
|
* @copyright Copyright (c) 2016, ownCloud, Inc.
|
2015-10-30 12:10:08 +00: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/>
|
|
|
|
*
|
|
|
|
*/
|
2016-01-27 11:13:53 +00:00
|
|
|
|
|
|
|
namespace OCP\Share;
|
2015-10-30 12:10:08 +00:00
|
|
|
|
|
|
|
use OCP\Files\File;
|
|
|
|
use OCP\Files\Folder;
|
|
|
|
use OCP\Files\Node;
|
|
|
|
use OCP\IUser;
|
|
|
|
use OCP\IGroup;
|
|
|
|
|
2016-01-27 11:13:53 +00:00
|
|
|
/**
|
|
|
|
* Interface IShare
|
|
|
|
*
|
|
|
|
* @package OCP\Share
|
|
|
|
* @since 9.0.0
|
|
|
|
*/
|
2015-10-30 12:10:08 +00:00
|
|
|
interface IShare {
|
|
|
|
|
|
|
|
/**
|
2016-01-27 19:51:26 +00:00
|
|
|
* Get the internal id of the share.
|
2015-10-30 12:10:08 +00:00
|
|
|
*
|
|
|
|
* @return string
|
2016-01-27 11:13:53 +00:00
|
|
|
* @since 9.0.0
|
2015-10-30 12:10:08 +00:00
|
|
|
*/
|
|
|
|
public function getId();
|
|
|
|
|
2016-01-13 12:02:23 +00:00
|
|
|
/**
|
2016-01-27 19:51:26 +00:00
|
|
|
* Get the full share id. This is the <providerid>:<internalid>.
|
|
|
|
* The full id is unique in the system.
|
2016-01-13 12:02:23 +00:00
|
|
|
*
|
|
|
|
* @return string
|
2016-01-27 11:13:53 +00:00
|
|
|
* @since 9.0.0
|
2016-01-13 12:02:23 +00:00
|
|
|
*/
|
|
|
|
public function getFullId();
|
|
|
|
|
2015-10-30 12:10:08 +00:00
|
|
|
/**
|
2016-01-27 19:51:26 +00:00
|
|
|
* Set the node of the file/folder that is shared
|
2015-10-30 12:10:08 +00:00
|
|
|
*
|
2016-01-27 19:51:26 +00:00
|
|
|
* @param File|Folder $path
|
2016-01-27 11:13:53 +00:00
|
|
|
* @return \OCP\Share\IShare The modified object
|
|
|
|
* @since 9.0.0
|
2015-10-30 12:10:08 +00:00
|
|
|
*/
|
2016-01-27 19:51:26 +00:00
|
|
|
public function setNode(Node $path);
|
2015-10-30 12:10:08 +00:00
|
|
|
|
|
|
|
/**
|
2016-01-27 19:51:26 +00:00
|
|
|
* Get the node of the file/folder that is shared
|
2016-01-27 11:13:53 +00:00
|
|
|
*
|
2015-10-30 12:10:08 +00:00
|
|
|
* @return File|Folder
|
2016-01-27 11:13:53 +00:00
|
|
|
* @since 9.0.0
|
2015-10-30 12:10:08 +00:00
|
|
|
*/
|
2016-01-27 19:51:26 +00:00
|
|
|
public function getNode();
|
2015-10-30 12:10:08 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Set the shareType
|
|
|
|
*
|
|
|
|
* @param int $shareType
|
2016-01-27 11:13:53 +00:00
|
|
|
* @return \OCP\Share\IShare The modified object
|
|
|
|
* @since 9.0.0
|
2015-10-30 12:10:08 +00:00
|
|
|
*/
|
|
|
|
public function setShareType($shareType);
|
|
|
|
|
|
|
|
/**
|
2016-01-27 11:13:53 +00:00
|
|
|
* Get the shareType
|
2015-10-30 12:10:08 +00:00
|
|
|
*
|
|
|
|
* @return int
|
2016-01-27 11:13:53 +00:00
|
|
|
* @since 9.0.0
|
2015-10-30 12:10:08 +00:00
|
|
|
*/
|
|
|
|
public function getShareType();
|
|
|
|
|
|
|
|
/**
|
2016-01-27 19:51:26 +00:00
|
|
|
* Set the receiver of this share.
|
2015-10-30 12:10:08 +00:00
|
|
|
*
|
2016-02-02 15:55:41 +00:00
|
|
|
* @param string $sharedWith
|
2016-01-27 11:13:53 +00:00
|
|
|
* @return \OCP\Share\IShare The modified object
|
|
|
|
* @since 9.0.0
|
2015-10-30 12:10:08 +00:00
|
|
|
*/
|
|
|
|
public function setSharedWith($sharedWith);
|
|
|
|
|
|
|
|
/**
|
2016-01-27 19:51:26 +00:00
|
|
|
* Get the receiver of this share.
|
2015-10-30 12:10:08 +00:00
|
|
|
*
|
2016-02-02 15:55:41 +00:00
|
|
|
* @return string
|
2016-01-27 11:13:53 +00:00
|
|
|
* @since 9.0.0
|
2015-10-30 12:10:08 +00:00
|
|
|
*/
|
|
|
|
public function getSharedWith();
|
|
|
|
|
|
|
|
/**
|
2016-01-27 19:51:26 +00:00
|
|
|
* Set the permissions.
|
|
|
|
* See \OCP\Constants::PERMISSION_*
|
2015-10-30 12:10:08 +00:00
|
|
|
*
|
|
|
|
* @param int $permissions
|
2016-01-27 11:13:53 +00:00
|
|
|
* @return \OCP\Share\IShare The modified object
|
|
|
|
* @since 9.0.0
|
2015-10-30 12:10:08 +00:00
|
|
|
*/
|
|
|
|
public function setPermissions($permissions);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the share permissions
|
2016-01-27 19:51:26 +00:00
|
|
|
* See \OCP\Constants::PERMISSION_*
|
2015-10-30 12:10:08 +00:00
|
|
|
*
|
|
|
|
* @return int
|
2016-01-27 11:13:53 +00:00
|
|
|
* @since 9.0.0
|
2015-10-30 12:10:08 +00:00
|
|
|
*/
|
|
|
|
public function getPermissions();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Set the expiration date
|
|
|
|
*
|
|
|
|
* @param \DateTime $expireDate
|
2016-01-27 11:13:53 +00:00
|
|
|
* @return \OCP\Share\IShare The modified object
|
|
|
|
* @since 9.0.0
|
2015-10-30 12:10:08 +00:00
|
|
|
*/
|
2015-12-15 08:52:04 +00:00
|
|
|
public function setExpirationDate($expireDate);
|
2015-10-30 12:10:08 +00:00
|
|
|
|
|
|
|
/**
|
2016-01-27 19:51:26 +00:00
|
|
|
* Get the expiration date
|
2015-10-30 12:10:08 +00:00
|
|
|
*
|
|
|
|
* @return \DateTime
|
2016-01-27 11:13:53 +00:00
|
|
|
* @since 9.0.0
|
2015-10-30 12:10:08 +00:00
|
|
|
*/
|
|
|
|
public function getExpirationDate();
|
|
|
|
|
2015-12-15 08:52:04 +00:00
|
|
|
/**
|
2016-01-27 19:51:26 +00:00
|
|
|
* Set the sharer of the path.
|
2015-12-15 08:52:04 +00:00
|
|
|
*
|
2016-02-02 15:55:41 +00:00
|
|
|
* @param string $sharedBy
|
2016-01-27 11:13:53 +00:00
|
|
|
* @return \OCP\Share\IShare The modified object
|
|
|
|
* @since 9.0.0
|
2015-12-15 08:52:04 +00:00
|
|
|
*/
|
|
|
|
public function setSharedBy($sharedBy);
|
|
|
|
|
2015-10-30 12:10:08 +00:00
|
|
|
/**
|
|
|
|
* Get share sharer
|
|
|
|
*
|
2016-02-02 15:55:41 +00:00
|
|
|
* @return string
|
2016-01-27 11:13:53 +00:00
|
|
|
* @since 9.0.0
|
2015-10-30 12:10:08 +00:00
|
|
|
*/
|
|
|
|
public function getSharedBy();
|
|
|
|
|
2015-12-15 08:52:04 +00:00
|
|
|
/**
|
2016-01-27 19:51:26 +00:00
|
|
|
* Set the original share owner (who owns the path that is shared)
|
2015-12-15 08:52:04 +00:00
|
|
|
*
|
2016-02-02 15:55:41 +00:00
|
|
|
* @param string $shareOwner
|
2016-01-27 11:13:53 +00:00
|
|
|
* @return \OCP\Share\IShare The modified object
|
|
|
|
* @since 9.0.0
|
2015-12-15 08:52:04 +00:00
|
|
|
*/
|
|
|
|
public function setShareOwner($shareOwner);
|
|
|
|
|
2015-10-30 12:10:08 +00:00
|
|
|
/**
|
2016-01-27 19:51:26 +00:00
|
|
|
* Get the original share owner (who owns the path that is shared)
|
2016-01-27 11:13:53 +00:00
|
|
|
*
|
2016-02-02 15:55:41 +00:00
|
|
|
* @return string
|
2016-01-27 11:13:53 +00:00
|
|
|
* @since 9.0.0
|
2015-10-30 12:10:08 +00:00
|
|
|
*/
|
|
|
|
public function getShareOwner();
|
|
|
|
|
|
|
|
/**
|
2016-01-27 19:51:26 +00:00
|
|
|
* Set the password for this share.
|
|
|
|
* When the share is passed to the share manager to be created
|
|
|
|
* or updated the password will be hashed.
|
2015-10-30 12:10:08 +00:00
|
|
|
*
|
|
|
|
* @param string $password
|
2016-01-27 11:13:53 +00:00
|
|
|
* @return \OCP\Share\IShare The modified object
|
|
|
|
* @since 9.0.0
|
2015-10-30 12:10:08 +00:00
|
|
|
*/
|
|
|
|
public function setPassword($password);
|
|
|
|
|
2015-11-06 11:05:19 +00:00
|
|
|
/**
|
2016-01-27 19:51:26 +00:00
|
|
|
* Get the password of this share.
|
|
|
|
* If this share is obtained via a shareprovider the password is
|
|
|
|
* hashed.
|
2015-11-06 11:05:19 +00:00
|
|
|
*
|
|
|
|
* @return string
|
2016-01-27 11:13:53 +00:00
|
|
|
* @since 9.0.0
|
2015-11-06 11:05:19 +00:00
|
|
|
*/
|
|
|
|
public function getPassword();
|
|
|
|
|
2015-12-15 08:52:04 +00:00
|
|
|
/**
|
2016-01-27 19:51:26 +00:00
|
|
|
* Set the public link token.
|
2015-12-15 08:52:04 +00:00
|
|
|
*
|
|
|
|
* @param string $token
|
2016-01-27 11:13:53 +00:00
|
|
|
* @return \OCP\Share\IShare The modified object
|
|
|
|
* @since 9.0.0
|
2015-12-15 08:52:04 +00:00
|
|
|
*/
|
|
|
|
public function setToken($token);
|
|
|
|
|
2015-10-30 12:10:08 +00:00
|
|
|
/**
|
2016-01-27 19:51:26 +00:00
|
|
|
* Get the public link token.
|
2015-10-30 12:10:08 +00:00
|
|
|
*
|
|
|
|
* @return string
|
2016-01-27 11:13:53 +00:00
|
|
|
* @since 9.0.0
|
2015-10-30 12:10:08 +00:00
|
|
|
*/
|
|
|
|
public function getToken();
|
|
|
|
|
|
|
|
/**
|
2016-01-27 19:51:26 +00:00
|
|
|
* Set the target path of this share relative to the recipients user folder.
|
2015-12-15 08:52:04 +00:00
|
|
|
*
|
|
|
|
* @param string $target
|
2016-01-27 11:13:53 +00:00
|
|
|
* @return \OCP\Share\IShare The modified object
|
|
|
|
* @since 9.0.0
|
2015-12-15 08:52:04 +00:00
|
|
|
*/
|
|
|
|
public function setTarget($target);
|
|
|
|
|
2015-11-02 20:06:55 +00:00
|
|
|
/**
|
2016-01-27 19:51:26 +00:00
|
|
|
* Get the target path of this share relative to the recipients user folder.
|
2015-11-02 20:06:55 +00:00
|
|
|
*
|
|
|
|
* @return string
|
2016-01-27 11:13:53 +00:00
|
|
|
* @since 9.0.0
|
2015-11-02 20:06:55 +00:00
|
|
|
*/
|
|
|
|
public function getTarget();
|
2015-11-06 11:05:19 +00:00
|
|
|
|
2016-01-27 10:50:49 +00:00
|
|
|
/**
|
|
|
|
* Set the time this share was created
|
|
|
|
*
|
2016-01-27 19:51:26 +00:00
|
|
|
* @param \DateTime $shareTime
|
2016-01-27 11:13:53 +00:00
|
|
|
* @return \OCP\Share\IShare The modified object
|
|
|
|
* @since 9.0.0
|
2016-01-27 10:50:49 +00:00
|
|
|
*/
|
2016-01-27 19:51:26 +00:00
|
|
|
public function setShareTime(\DateTime $shareTime);
|
2016-01-27 10:50:49 +00:00
|
|
|
|
2015-11-06 11:05:19 +00:00
|
|
|
/**
|
|
|
|
* Get the timestamp this share was created
|
|
|
|
*
|
2016-01-27 19:51:26 +00:00
|
|
|
* @return \DateTime
|
2016-01-27 11:13:53 +00:00
|
|
|
* @since 9.0.0
|
2015-11-06 11:05:19 +00:00
|
|
|
*/
|
2016-01-27 10:50:49 +00:00
|
|
|
public function getShareTime();
|
|
|
|
|
|
|
|
/**
|
2016-01-27 19:51:26 +00:00
|
|
|
* Set if the recipient is informed by mail about the share.
|
2016-01-27 10:50:49 +00:00
|
|
|
*
|
|
|
|
* @param bool $mailSend
|
2016-01-27 11:13:53 +00:00
|
|
|
* @return \OCP\Share\IShare The modified object
|
|
|
|
* @since 9.0.0
|
2016-01-27 10:50:49 +00:00
|
|
|
*/
|
|
|
|
public function setMailSend($mailSend);
|
2015-11-06 11:05:19 +00:00
|
|
|
|
|
|
|
/**
|
2016-01-27 19:51:26 +00:00
|
|
|
* Get if the recipient informed by mail about the share.
|
2015-11-06 11:05:19 +00:00
|
|
|
*
|
|
|
|
* @return bool
|
2016-01-27 11:13:53 +00:00
|
|
|
* @since 9.0.0
|
2015-11-06 11:05:19 +00:00
|
|
|
*/
|
|
|
|
public function getMailSend();
|
2015-10-30 12:10:08 +00:00
|
|
|
}
|