nextcloud/lib/private/Files/Config/MountProviderCollection.php

109 lines
2.9 KiB
PHP
Raw Normal View History

<?php
/**
2015-03-26 13:44:34 +03:00
* @author Morris Jobke <hey@morrisjobke.de>
* @author Robin Appelman <icewind@owncloud.com>
*
2016-01-12 17:02:16 +03:00
* @copyright Copyright (c) 2016, ownCloud, Inc.
2015-03-26 13:44:34 +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,
* along with this program. If not, see <http://www.gnu.org/licenses/>
*
*/
namespace OC\Files\Config;
use OC\Hooks\Emitter;
use OC\Hooks\EmitterTrait;
use OCP\Files\Config\IMountProviderCollection;
use OCP\Files\Config\IMountProvider;
2015-11-26 19:47:53 +03:00
use OCP\Files\Config\IUserMountCache;
use OCP\Files\Mount\IMountPoint;
use OCP\Files\Storage\IStorageFactory;
use OCP\IUser;
class MountProviderCollection implements IMountProviderCollection, Emitter {
use EmitterTrait;
/**
* @var \OCP\Files\Config\IMountProvider[]
*/
private $providers = array();
/**
* @var \OCP\Files\Storage\IStorageFactory
*/
private $loader;
2015-11-26 19:47:53 +03:00
/**
* @var \OCP\Files\Config\IUserMountCache
*/
private $mountCache;
/**
* @param \OCP\Files\Storage\IStorageFactory $loader
2015-11-26 19:47:53 +03:00
* @param IUserMountCache $mountCache
*/
2015-11-26 19:47:53 +03:00
public function __construct(IStorageFactory $loader, IUserMountCache $mountCache) {
$this->loader = $loader;
2015-11-26 19:47:53 +03:00
$this->mountCache = $mountCache;
}
/**
* Get all configured mount points for the user
*
* @param \OCP\IUser $user
* @return \OCP\Files\Mount\IMountPoint[]
*/
public function getMountsForUser(IUser $user) {
$loader = $this->loader;
2015-06-22 15:41:08 +03:00
$mounts = array_map(function (IMountProvider $provider) use ($user, $loader) {
return $provider->getMountsForUser($user, $loader);
}, $this->providers);
$mounts = array_filter($mounts, function ($result) {
return is_array($result);
});
return array_reduce($mounts, function (array $mounts, array $providerMounts) {
2015-06-22 15:41:08 +03:00
return array_merge($mounts, $providerMounts);
}, array());
}
/**
* Add a provider for mount points
*
* @param \OCP\Files\Config\IMountProvider $provider
*/
public function registerProvider(IMountProvider $provider) {
$this->providers[] = $provider;
$this->emit('\OC\Files\Config', 'registerMountProvider', [$provider]);
}
2015-11-26 19:47:53 +03:00
/**
* Cache mounts for user
*
* @param IUser $user
* @param IMountPoint[] $mountPoints
*/
2015-12-02 15:36:33 +03:00
public function registerMounts(IUser $user, array $mountPoints) {
2015-11-26 19:47:53 +03:00
$this->mountCache->registerMounts($user, $mountPoints);
}
/**
2015-12-02 15:36:33 +03:00
* Get the mount cache which can be used to search for mounts without setting up the filesystem
*
2015-11-26 19:47:53 +03:00
* @return IUserMountCache
*/
public function getMountCache() {
return $this->mountCache;
}
}