2013-10-29 03:14:23 +04:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Copyright (c) 2012 Robin Appelman <icewind@owncloud.com>
|
|
|
|
* This file is licensed under the Affero General Public License version 3 or
|
|
|
|
* later.
|
|
|
|
* See the COPYING-README file.
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace OC\Files\Storage;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Specialized version of Local storage for home directory usage
|
|
|
|
*/
|
|
|
|
class Home extends Local {
|
2013-11-12 18:46:01 +04:00
|
|
|
/**
|
|
|
|
* @var string
|
|
|
|
*/
|
|
|
|
protected $id;
|
|
|
|
|
2013-10-29 03:14:23 +04:00
|
|
|
/**
|
|
|
|
* @var \OC\User\User $user
|
|
|
|
*/
|
|
|
|
protected $user;
|
|
|
|
|
2013-11-21 15:17:47 +04:00
|
|
|
/**
|
2014-05-19 19:50:53 +04:00
|
|
|
* Construct a Home storage instance
|
2013-11-21 15:17:47 +04:00
|
|
|
* @param array $arguments array with "user" containing the
|
|
|
|
* storage owner and "legacy" containing "true" if the storage is
|
|
|
|
* a legacy storage with "local::" URL instead of the new "home::" one.
|
|
|
|
*/
|
2013-10-29 03:14:23 +04:00
|
|
|
public function __construct($arguments) {
|
|
|
|
$this->user = $arguments['user'];
|
2013-11-02 23:22:12 +04:00
|
|
|
$datadir = $this->user->getHome();
|
2013-11-12 18:46:01 +04:00
|
|
|
if (isset($arguments['legacy']) && $arguments['legacy']) {
|
|
|
|
// legacy home id (<= 5.0.12)
|
|
|
|
$this->id = 'local::' . $datadir . '/';
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
$this->id = 'home::' . $this->user->getUID();
|
|
|
|
}
|
2013-11-02 23:22:12 +04:00
|
|
|
|
|
|
|
parent::__construct(array('datadir' => $datadir));
|
2013-10-29 03:14:23 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
public function getId() {
|
2013-11-12 18:46:01 +04:00
|
|
|
return $this->id;
|
2013-10-29 03:14:23 +04:00
|
|
|
}
|
2013-11-08 15:57:28 +04:00
|
|
|
|
2013-11-21 15:17:47 +04:00
|
|
|
/**
|
|
|
|
* @return \OC\Files\Cache\HomeCache
|
|
|
|
*/
|
2013-11-08 15:57:28 +04:00
|
|
|
public function getCache($path = '') {
|
|
|
|
if (!isset($this->cache)) {
|
|
|
|
$this->cache = new \OC\Files\Cache\HomeCache($this);
|
|
|
|
}
|
|
|
|
return $this->cache;
|
|
|
|
}
|
2013-11-21 15:17:47 +04:00
|
|
|
|
|
|
|
/**
|
2014-05-19 19:50:53 +04:00
|
|
|
* Returns the owner of this home storage
|
2013-11-21 15:17:47 +04:00
|
|
|
* @return \OC\User\User owner of this home storage
|
|
|
|
*/
|
|
|
|
public function getUser() {
|
|
|
|
return $this->user;
|
|
|
|
}
|
2013-10-29 03:14:23 +04:00
|
|
|
}
|