* along with this program. If not, see <http://www.gnu.org/licenses/>
*
*/
+
+use OCP\IUser;
use Symfony\Component\Process\ExecutableFinder;
/**
|| $storage->instanceOfStorage('\OC\Files\ObjectStore\HomeObjectStoreStorage')
) {
/** @var \OC\Files\Storage\Home $storage */
- $userInstance = $storage->getUser();
- $user = ($userInstance === null) ? null : $userInstance->getUID();
- } else {
- $user = \OC::$server->getUserSession()->getUser()->getUID();
- }
- if ($user) {
- $quota = OC_Util::getUserQuota($user);
+ $user = $storage->getUser();
} else {
- $quota = \OCP\Files\FileInfo::SPACE_UNLIMITED;
+ $user = \OC::$server->getUserSession()->getUser();
}
+ $quota = OC_Util::getUserQuota($user);
if ($quota !== \OCP\Files\FileInfo::SPACE_UNLIMITED) {
// always get free space / total space from root + mount points
- return self::getGlobalStorageInfo();
+ return self::getGlobalStorageInfo($quota);
}
}
/**
* Get storage info including all mount points and quota
*
+ * @param int $quota
* @return array
*/
- private static function getGlobalStorageInfo() {
- $quota = OC_Util::getUserQuota(\OCP\User::getUser());
-
+ private static function getGlobalStorageInfo($quota) {
$rootInfo = \OC\Files\Filesystem::getFileInfo('', 'ext');
$used = $rootInfo['size'];
if ($used < 0) {
) {
/** @var \OC\Files\Storage\Home $storage */
if (is_object($storage->getUser())) {
- $user = $storage->getUser()->getUID();
- $quota = OC_Util::getUserQuota($user);
+ $quota = OC_Util::getUserQuota($storage->getUser());
if ($quota !== \OCP\Files\FileInfo::SPACE_UNLIMITED) {
return new \OC\Files\Storage\Wrapper\Quota(array('storage' => $storage, 'quota' => $quota, 'root' => 'files'));
}
/**
* Get the quota of a user
*
- * @param string $userId
+ * @param IUser|null $user
* @return float Quota bytes
*/
- public static function getUserQuota($userId) {
- $user = \OC::$server->getUserManager()->get($userId);
+ public static function getUserQuota(?IUser $user) {
if (is_null($user)) {
return \OCP\Files\FileInfo::SPACE_UNLIMITED;
}