2014-06-18 00:06:56 +04:00
|
|
|
<?php
|
|
|
|
/**
|
2016-07-21 18:07:57 +03:00
|
|
|
* @copyright Copyright (c) 2016, ownCloud, Inc.
|
|
|
|
*
|
2016-05-26 20:56:05 +03:00
|
|
|
* @author Björn Schießle <bjoern@schiessle.org>
|
2020-04-29 12:57:22 +03:00
|
|
|
* @author Christoph Wurst <christoph@winzerhof-wurst.at>
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Jörn Friedrich Dreyer <jfd@butonic.de>
|
|
|
|
* @author Morris Jobke <hey@morrisjobke.de>
|
2019-12-03 21:57:53 +03:00
|
|
|
* @author Roeland Jago Douma <roeland@famdouma.nl>
|
2014-06-18 00:06:56 +04:00
|
|
|
*
|
2015-03-26 13:44:34 +03:00
|
|
|
* @license AGPL-3.0
|
2014-06-18 00:06:56 +04:00
|
|
|
*
|
2015-03-26 13:44:34 +03:00
|
|
|
* 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,
|
2014-06-18 00:06:56 +04:00
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2015-03-26 13:44:34 +03:00
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Affero General Public License for more details.
|
2014-06-18 00:06:56 +04:00
|
|
|
*
|
2015-03-26 13:44:34 +03:00
|
|
|
* 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/>
|
2014-06-18 00:06:56 +04:00
|
|
|
*
|
|
|
|
*/
|
2015-02-26 13:37:37 +03:00
|
|
|
|
2014-06-18 00:06:56 +04:00
|
|
|
namespace OC\Files\ObjectStore;
|
|
|
|
|
2014-06-18 17:20:26 +04:00
|
|
|
use OC\User\User;
|
|
|
|
|
2014-07-01 19:29:57 +04:00
|
|
|
class HomeObjectStoreStorage extends ObjectStoreStorage implements \OCP\Files\IHomeStorage {
|
2014-06-18 00:06:56 +04:00
|
|
|
|
2014-06-18 17:20:26 +04:00
|
|
|
/**
|
|
|
|
* The home user storage requires a user object to create a unique storage id
|
|
|
|
* @param array $params
|
|
|
|
*/
|
2014-06-18 00:06:56 +04:00
|
|
|
public function __construct($params) {
|
2020-04-09 17:07:47 +03:00
|
|
|
if (! isset($params['user']) || ! $params['user'] instanceof User) {
|
2014-06-18 17:20:26 +04:00
|
|
|
throw new \Exception('missing user object in parameters');
|
|
|
|
}
|
|
|
|
$this->user = $params['user'];
|
2014-06-18 00:06:56 +04:00
|
|
|
parent::__construct($params);
|
|
|
|
}
|
|
|
|
|
2020-04-09 14:53:40 +03:00
|
|
|
public function getId() {
|
2014-06-18 17:20:26 +04:00
|
|
|
return 'object::user:' . $this->user->getUID();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* get the owner of a path
|
|
|
|
*
|
|
|
|
* @param string $path The path to get the owner
|
|
|
|
* @return false|string uid
|
|
|
|
*/
|
|
|
|
public function getOwner($path) {
|
|
|
|
if (is_object($this->user)) {
|
|
|
|
return $this->user->getUID();
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param string $path, optional
|
|
|
|
* @return \OC\User\User
|
|
|
|
*/
|
|
|
|
public function getUser($path = null) {
|
|
|
|
return $this->user;
|
|
|
|
}
|
2019-11-22 22:52:10 +03:00
|
|
|
}
|