2015-10-21 16:06:48 +03:00
|
|
|
<?php
|
2016-01-12 17:02:16 +03:00
|
|
|
/**
|
2016-07-21 17:49:16 +03:00
|
|
|
* @copyright Copyright (c) 2016, ownCloud, Inc.
|
|
|
|
*
|
2020-04-29 12:57:22 +03:00
|
|
|
* @author Christoph Wurst <christoph@winzerhof-wurst.at>
|
2017-11-06 17:56:42 +03:00
|
|
|
* @author Morris Jobke <hey@morrisjobke.de>
|
2019-12-03 21:57:53 +03:00
|
|
|
* @author Robin Appelman <robin@icewind.nl>
|
2017-11-06 17:56:42 +03:00
|
|
|
* @author Roeland Jago Douma <roeland@famdouma.nl>
|
2016-01-12 17:02:16 +03:00
|
|
|
* @author Thomas Müller <thomas.mueller@tmit.eu>
|
2017-11-06 17:56:42 +03:00
|
|
|
* @author Vincent Petry <pvince81@owncloud.com>
|
2016-01-12 17:02:16 +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-12 17:02:16 +03:00
|
|
|
*
|
|
|
|
*/
|
2019-11-22 22:52:10 +03:00
|
|
|
|
2015-10-21 16:06:48 +03:00
|
|
|
namespace OCA\DAV\Files;
|
|
|
|
|
|
|
|
use OCA\DAV\Connector\Sabre\Directory;
|
2017-05-05 01:34:01 +03:00
|
|
|
use OCP\Files\FileInfo;
|
2015-10-21 16:06:48 +03:00
|
|
|
use Sabre\DAV\Exception\Forbidden;
|
|
|
|
|
2016-09-08 13:56:48 +03:00
|
|
|
class FilesHome extends Directory {
|
2015-10-21 16:06:48 +03:00
|
|
|
|
2016-03-10 22:53:56 +03:00
|
|
|
/**
|
|
|
|
* @var array
|
|
|
|
*/
|
|
|
|
private $principalInfo;
|
|
|
|
|
2015-10-21 16:06:48 +03:00
|
|
|
/**
|
|
|
|
* FilesHome constructor.
|
|
|
|
*
|
|
|
|
* @param array $principalInfo
|
2018-05-24 15:17:53 +03:00
|
|
|
* @param FileInfo $userFolder
|
2015-10-21 16:06:48 +03:00
|
|
|
*/
|
2018-05-24 15:17:53 +03:00
|
|
|
public function __construct($principalInfo, FileInfo $userFolder) {
|
2015-10-21 16:06:48 +03:00
|
|
|
$this->principalInfo = $principalInfo;
|
2016-09-08 13:56:48 +03:00
|
|
|
$view = \OC\Files\Filesystem::getView();
|
2018-05-24 15:17:53 +03:00
|
|
|
parent::__construct($view, $userFolder);
|
2015-10-21 16:06:48 +03:00
|
|
|
}
|
|
|
|
|
2020-04-10 17:51:06 +03:00
|
|
|
public function delete() {
|
2016-09-08 13:56:48 +03:00
|
|
|
throw new Forbidden('Permission denied to delete home folder');
|
2015-10-21 16:06:48 +03:00
|
|
|
}
|
|
|
|
|
2020-04-10 17:51:06 +03:00
|
|
|
public function getName() {
|
2017-07-20 10:43:23 +03:00
|
|
|
list(,$name) = \Sabre\Uri\split($this->principalInfo['uri']);
|
2015-10-21 16:06:48 +03:00
|
|
|
return $name;
|
|
|
|
}
|
|
|
|
|
2020-04-10 17:51:06 +03:00
|
|
|
public function setName($name) {
|
2015-10-21 16:06:48 +03:00
|
|
|
throw new Forbidden('Permission denied to rename this folder');
|
|
|
|
}
|
|
|
|
}
|