@@ -30,23 +30,23 @@ |
||
| 30 | 30 | $limit = null; |
| 31 | 31 | $offset = null; |
| 32 | 32 | if (isset($_GET['pattern'])) { |
| 33 | - $pattern = (string)$_GET['pattern']; |
|
| 33 | + $pattern = (string)$_GET['pattern']; |
|
| 34 | 34 | } |
| 35 | 35 | if (isset($_GET['limit'])) { |
| 36 | - $limit = (int)$_GET['limit']; |
|
| 36 | + $limit = (int)$_GET['limit']; |
|
| 37 | 37 | } |
| 38 | 38 | if (isset($_GET['offset'])) { |
| 39 | - $offset = (int)$_GET['offset']; |
|
| 39 | + $offset = (int)$_GET['offset']; |
|
| 40 | 40 | } |
| 41 | 41 | |
| 42 | 42 | $groups = []; |
| 43 | 43 | foreach (\OC::$server->getGroupManager()->search($pattern, $limit, $offset) as $group) { |
| 44 | - $groups[$group->getGID()] = $group->getGID(); |
|
| 44 | + $groups[$group->getGID()] = $group->getGID(); |
|
| 45 | 45 | } |
| 46 | 46 | |
| 47 | 47 | $users = []; |
| 48 | 48 | foreach (\OC::$server->getUserManager()->searchDisplayName($pattern, $limit, $offset) as $user) { |
| 49 | - $users[$user->getUID()] = $user->getDisplayName(); |
|
| 49 | + $users[$user->getUID()] = $user->getDisplayName(); |
|
| 50 | 50 | } |
| 51 | 51 | |
| 52 | 52 | $results = array('groups' => $groups, 'users' => $users); |
@@ -24,25 +24,25 @@ |
||
| 24 | 24 | namespace OCA\Files_External\Service; |
| 25 | 25 | |
| 26 | 26 | class ImportLegacyStoragesService extends LegacyStoragesService { |
| 27 | - private $data; |
|
| 27 | + private $data; |
|
| 28 | 28 | |
| 29 | - /** |
|
| 30 | - * @param BackendService $backendService |
|
| 31 | - */ |
|
| 32 | - public function __construct(BackendService $backendService) { |
|
| 33 | - $this->backendService = $backendService; |
|
| 34 | - } |
|
| 29 | + /** |
|
| 30 | + * @param BackendService $backendService |
|
| 31 | + */ |
|
| 32 | + public function __construct(BackendService $backendService) { |
|
| 33 | + $this->backendService = $backendService; |
|
| 34 | + } |
|
| 35 | 35 | |
| 36 | - public function setData($data) { |
|
| 37 | - $this->data = $data; |
|
| 38 | - } |
|
| 36 | + public function setData($data) { |
|
| 37 | + $this->data = $data; |
|
| 38 | + } |
|
| 39 | 39 | |
| 40 | - /** |
|
| 41 | - * Read legacy config data |
|
| 42 | - * |
|
| 43 | - * @return array list of mount configs |
|
| 44 | - */ |
|
| 45 | - protected function readLegacyConfig() { |
|
| 46 | - return $this->data; |
|
| 47 | - } |
|
| 40 | + /** |
|
| 41 | + * Read legacy config data |
|
| 42 | + * |
|
| 43 | + * @return array list of mount configs |
|
| 44 | + */ |
|
| 45 | + protected function readLegacyConfig() { |
|
| 46 | + return $this->data; |
|
| 47 | + } |
|
| 48 | 48 | } |
@@ -34,167 +34,167 @@ |
||
| 34 | 34 | */ |
| 35 | 35 | class UserGlobalStoragesService extends GlobalStoragesService { |
| 36 | 36 | |
| 37 | - use UserTrait; |
|
| 38 | - |
|
| 39 | - /** @var IGroupManager */ |
|
| 40 | - protected $groupManager; |
|
| 41 | - |
|
| 42 | - /** |
|
| 43 | - * @param BackendService $backendService |
|
| 44 | - * @param DBConfigService $dbConfig |
|
| 45 | - * @param IUserSession $userSession |
|
| 46 | - * @param IGroupManager $groupManager |
|
| 47 | - * @param IUserMountCache $userMountCache |
|
| 48 | - */ |
|
| 49 | - public function __construct( |
|
| 50 | - BackendService $backendService, |
|
| 51 | - DBConfigService $dbConfig, |
|
| 52 | - IUserSession $userSession, |
|
| 53 | - IGroupManager $groupManager, |
|
| 54 | - IUserMountCache $userMountCache |
|
| 55 | - ) { |
|
| 56 | - parent::__construct($backendService, $dbConfig, $userMountCache); |
|
| 57 | - $this->userSession = $userSession; |
|
| 58 | - $this->groupManager = $groupManager; |
|
| 59 | - } |
|
| 60 | - |
|
| 61 | - /** |
|
| 62 | - * Replace config hash ID with real IDs, for migrating legacy storages |
|
| 63 | - * |
|
| 64 | - * @param StorageConfig[] $storages Storages with real IDs |
|
| 65 | - * @param StorageConfig[] $storagesWithConfigHash Storages with config hash IDs |
|
| 66 | - */ |
|
| 67 | - protected function setRealStorageIds(array &$storages, array $storagesWithConfigHash) { |
|
| 68 | - // as a read-only view, storage IDs don't need to be real |
|
| 69 | - foreach ($storagesWithConfigHash as $storage) { |
|
| 70 | - $storages[$storage->getId()] = $storage; |
|
| 71 | - } |
|
| 72 | - } |
|
| 73 | - |
|
| 74 | - protected function readDBConfig() { |
|
| 75 | - $userMounts = $this->dbConfig->getAdminMountsFor(DBConfigService::APPLICABLE_TYPE_USER, $this->getUser()->getUID()); |
|
| 76 | - $globalMounts = $this->dbConfig->getAdminMountsFor(DBConfigService::APPLICABLE_TYPE_GLOBAL, null); |
|
| 77 | - $groups = $this->groupManager->getUserGroupIds($this->getUser()); |
|
| 78 | - if (is_array($groups) && count($groups) !== 0) { |
|
| 79 | - $groupMounts = $this->dbConfig->getAdminMountsForMultiple(DBConfigService::APPLICABLE_TYPE_GROUP, $groups); |
|
| 80 | - } else { |
|
| 81 | - $groupMounts = []; |
|
| 82 | - } |
|
| 83 | - return array_merge($userMounts, $groupMounts, $globalMounts); |
|
| 84 | - } |
|
| 85 | - |
|
| 86 | - public function addStorage(StorageConfig $newStorage) { |
|
| 87 | - throw new \DomainException('UserGlobalStoragesService writing disallowed'); |
|
| 88 | - } |
|
| 89 | - |
|
| 90 | - public function updateStorage(StorageConfig $updatedStorage) { |
|
| 91 | - throw new \DomainException('UserGlobalStoragesService writing disallowed'); |
|
| 92 | - } |
|
| 93 | - |
|
| 94 | - /** |
|
| 95 | - * @param integer $id |
|
| 96 | - */ |
|
| 97 | - public function removeStorage($id) { |
|
| 98 | - throw new \DomainException('UserGlobalStoragesService writing disallowed'); |
|
| 99 | - } |
|
| 100 | - |
|
| 101 | - /** |
|
| 102 | - * Get unique storages, in case two are defined with the same mountpoint |
|
| 103 | - * Higher priority storages take precedence |
|
| 104 | - * |
|
| 105 | - * @return StorageConfig[] |
|
| 106 | - */ |
|
| 107 | - public function getUniqueStorages() { |
|
| 108 | - $storages = $this->getStorages(); |
|
| 109 | - |
|
| 110 | - $storagesByMountpoint = []; |
|
| 111 | - foreach ($storages as $storage) { |
|
| 112 | - $storagesByMountpoint[$storage->getMountPoint()][] = $storage; |
|
| 113 | - } |
|
| 114 | - |
|
| 115 | - $result = []; |
|
| 116 | - foreach ($storagesByMountpoint as $storageList) { |
|
| 117 | - $storage = array_reduce($storageList, function ($carry, $item) { |
|
| 118 | - if (isset($carry)) { |
|
| 119 | - $carryPriorityType = $this->getPriorityType($carry); |
|
| 120 | - $itemPriorityType = $this->getPriorityType($item); |
|
| 121 | - if ($carryPriorityType > $itemPriorityType) { |
|
| 122 | - return $carry; |
|
| 123 | - } elseif ($carryPriorityType === $itemPriorityType) { |
|
| 124 | - if ($carry->getPriority() > $item->getPriority()) { |
|
| 125 | - return $carry; |
|
| 126 | - } |
|
| 127 | - } |
|
| 128 | - } |
|
| 129 | - return $item; |
|
| 130 | - }); |
|
| 131 | - $result[$storage->getID()] = $storage; |
|
| 132 | - } |
|
| 133 | - |
|
| 134 | - return $result; |
|
| 135 | - } |
|
| 136 | - |
|
| 137 | - /** |
|
| 138 | - * Get a priority 'type', where a bigger number means higher priority |
|
| 139 | - * user applicable > group applicable > 'all' |
|
| 140 | - * |
|
| 141 | - * @param StorageConfig $storage |
|
| 142 | - * @return int |
|
| 143 | - */ |
|
| 144 | - protected function getPriorityType(StorageConfig $storage) { |
|
| 145 | - $applicableUsers = $storage->getApplicableUsers(); |
|
| 146 | - $applicableGroups = $storage->getApplicableGroups(); |
|
| 147 | - |
|
| 148 | - if ($applicableUsers && $applicableUsers[0] !== 'all') { |
|
| 149 | - return 2; |
|
| 150 | - } |
|
| 151 | - if ($applicableGroups) { |
|
| 152 | - return 1; |
|
| 153 | - } |
|
| 154 | - return 0; |
|
| 155 | - } |
|
| 156 | - |
|
| 157 | - protected function isApplicable(StorageConfig $config) { |
|
| 158 | - $applicableUsers = $config->getApplicableUsers(); |
|
| 159 | - $applicableGroups = $config->getApplicableGroups(); |
|
| 160 | - |
|
| 161 | - if (count($applicableUsers) === 0 && count($applicableGroups) === 0) { |
|
| 162 | - return true; |
|
| 163 | - } |
|
| 164 | - if (in_array($this->getUser()->getUID(), $applicableUsers, true)) { |
|
| 165 | - return true; |
|
| 166 | - } |
|
| 167 | - $groupIds = $this->groupManager->getUserGroupIds($this->getUser()); |
|
| 168 | - foreach ($groupIds as $groupId) { |
|
| 169 | - if (in_array($groupId, $applicableGroups, true)) { |
|
| 170 | - return true; |
|
| 171 | - } |
|
| 172 | - } |
|
| 173 | - return false; |
|
| 174 | - } |
|
| 175 | - |
|
| 176 | - |
|
| 177 | - /** |
|
| 178 | - * Gets all storages for the user, admin, personal, global, etc |
|
| 179 | - * |
|
| 180 | - * @return StorageConfig[] array of storage configs |
|
| 181 | - */ |
|
| 182 | - public function getAllStoragesForUser() { |
|
| 183 | - if (is_null($this->getUser())) { |
|
| 184 | - return []; |
|
| 185 | - } |
|
| 186 | - $groupIds = $this->groupManager->getUserGroupIds($this->getUser()); |
|
| 187 | - $mounts = $this->dbConfig->getMountsForUser($this->getUser()->getUID(), $groupIds); |
|
| 188 | - $configs = array_map([$this, 'getStorageConfigFromDBMount'], $mounts); |
|
| 189 | - $configs = array_filter($configs, function ($config) { |
|
| 190 | - return $config instanceof StorageConfig; |
|
| 191 | - }); |
|
| 192 | - |
|
| 193 | - $keys = array_map(function (StorageConfig $config) { |
|
| 194 | - return $config->getId(); |
|
| 195 | - }, $configs); |
|
| 196 | - |
|
| 197 | - $storages = array_combine($keys, $configs); |
|
| 198 | - return array_filter($storages, [$this, 'validateStorage']); |
|
| 199 | - } |
|
| 37 | + use UserTrait; |
|
| 38 | + |
|
| 39 | + /** @var IGroupManager */ |
|
| 40 | + protected $groupManager; |
|
| 41 | + |
|
| 42 | + /** |
|
| 43 | + * @param BackendService $backendService |
|
| 44 | + * @param DBConfigService $dbConfig |
|
| 45 | + * @param IUserSession $userSession |
|
| 46 | + * @param IGroupManager $groupManager |
|
| 47 | + * @param IUserMountCache $userMountCache |
|
| 48 | + */ |
|
| 49 | + public function __construct( |
|
| 50 | + BackendService $backendService, |
|
| 51 | + DBConfigService $dbConfig, |
|
| 52 | + IUserSession $userSession, |
|
| 53 | + IGroupManager $groupManager, |
|
| 54 | + IUserMountCache $userMountCache |
|
| 55 | + ) { |
|
| 56 | + parent::__construct($backendService, $dbConfig, $userMountCache); |
|
| 57 | + $this->userSession = $userSession; |
|
| 58 | + $this->groupManager = $groupManager; |
|
| 59 | + } |
|
| 60 | + |
|
| 61 | + /** |
|
| 62 | + * Replace config hash ID with real IDs, for migrating legacy storages |
|
| 63 | + * |
|
| 64 | + * @param StorageConfig[] $storages Storages with real IDs |
|
| 65 | + * @param StorageConfig[] $storagesWithConfigHash Storages with config hash IDs |
|
| 66 | + */ |
|
| 67 | + protected function setRealStorageIds(array &$storages, array $storagesWithConfigHash) { |
|
| 68 | + // as a read-only view, storage IDs don't need to be real |
|
| 69 | + foreach ($storagesWithConfigHash as $storage) { |
|
| 70 | + $storages[$storage->getId()] = $storage; |
|
| 71 | + } |
|
| 72 | + } |
|
| 73 | + |
|
| 74 | + protected function readDBConfig() { |
|
| 75 | + $userMounts = $this->dbConfig->getAdminMountsFor(DBConfigService::APPLICABLE_TYPE_USER, $this->getUser()->getUID()); |
|
| 76 | + $globalMounts = $this->dbConfig->getAdminMountsFor(DBConfigService::APPLICABLE_TYPE_GLOBAL, null); |
|
| 77 | + $groups = $this->groupManager->getUserGroupIds($this->getUser()); |
|
| 78 | + if (is_array($groups) && count($groups) !== 0) { |
|
| 79 | + $groupMounts = $this->dbConfig->getAdminMountsForMultiple(DBConfigService::APPLICABLE_TYPE_GROUP, $groups); |
|
| 80 | + } else { |
|
| 81 | + $groupMounts = []; |
|
| 82 | + } |
|
| 83 | + return array_merge($userMounts, $groupMounts, $globalMounts); |
|
| 84 | + } |
|
| 85 | + |
|
| 86 | + public function addStorage(StorageConfig $newStorage) { |
|
| 87 | + throw new \DomainException('UserGlobalStoragesService writing disallowed'); |
|
| 88 | + } |
|
| 89 | + |
|
| 90 | + public function updateStorage(StorageConfig $updatedStorage) { |
|
| 91 | + throw new \DomainException('UserGlobalStoragesService writing disallowed'); |
|
| 92 | + } |
|
| 93 | + |
|
| 94 | + /** |
|
| 95 | + * @param integer $id |
|
| 96 | + */ |
|
| 97 | + public function removeStorage($id) { |
|
| 98 | + throw new \DomainException('UserGlobalStoragesService writing disallowed'); |
|
| 99 | + } |
|
| 100 | + |
|
| 101 | + /** |
|
| 102 | + * Get unique storages, in case two are defined with the same mountpoint |
|
| 103 | + * Higher priority storages take precedence |
|
| 104 | + * |
|
| 105 | + * @return StorageConfig[] |
|
| 106 | + */ |
|
| 107 | + public function getUniqueStorages() { |
|
| 108 | + $storages = $this->getStorages(); |
|
| 109 | + |
|
| 110 | + $storagesByMountpoint = []; |
|
| 111 | + foreach ($storages as $storage) { |
|
| 112 | + $storagesByMountpoint[$storage->getMountPoint()][] = $storage; |
|
| 113 | + } |
|
| 114 | + |
|
| 115 | + $result = []; |
|
| 116 | + foreach ($storagesByMountpoint as $storageList) { |
|
| 117 | + $storage = array_reduce($storageList, function ($carry, $item) { |
|
| 118 | + if (isset($carry)) { |
|
| 119 | + $carryPriorityType = $this->getPriorityType($carry); |
|
| 120 | + $itemPriorityType = $this->getPriorityType($item); |
|
| 121 | + if ($carryPriorityType > $itemPriorityType) { |
|
| 122 | + return $carry; |
|
| 123 | + } elseif ($carryPriorityType === $itemPriorityType) { |
|
| 124 | + if ($carry->getPriority() > $item->getPriority()) { |
|
| 125 | + return $carry; |
|
| 126 | + } |
|
| 127 | + } |
|
| 128 | + } |
|
| 129 | + return $item; |
|
| 130 | + }); |
|
| 131 | + $result[$storage->getID()] = $storage; |
|
| 132 | + } |
|
| 133 | + |
|
| 134 | + return $result; |
|
| 135 | + } |
|
| 136 | + |
|
| 137 | + /** |
|
| 138 | + * Get a priority 'type', where a bigger number means higher priority |
|
| 139 | + * user applicable > group applicable > 'all' |
|
| 140 | + * |
|
| 141 | + * @param StorageConfig $storage |
|
| 142 | + * @return int |
|
| 143 | + */ |
|
| 144 | + protected function getPriorityType(StorageConfig $storage) { |
|
| 145 | + $applicableUsers = $storage->getApplicableUsers(); |
|
| 146 | + $applicableGroups = $storage->getApplicableGroups(); |
|
| 147 | + |
|
| 148 | + if ($applicableUsers && $applicableUsers[0] !== 'all') { |
|
| 149 | + return 2; |
|
| 150 | + } |
|
| 151 | + if ($applicableGroups) { |
|
| 152 | + return 1; |
|
| 153 | + } |
|
| 154 | + return 0; |
|
| 155 | + } |
|
| 156 | + |
|
| 157 | + protected function isApplicable(StorageConfig $config) { |
|
| 158 | + $applicableUsers = $config->getApplicableUsers(); |
|
| 159 | + $applicableGroups = $config->getApplicableGroups(); |
|
| 160 | + |
|
| 161 | + if (count($applicableUsers) === 0 && count($applicableGroups) === 0) { |
|
| 162 | + return true; |
|
| 163 | + } |
|
| 164 | + if (in_array($this->getUser()->getUID(), $applicableUsers, true)) { |
|
| 165 | + return true; |
|
| 166 | + } |
|
| 167 | + $groupIds = $this->groupManager->getUserGroupIds($this->getUser()); |
|
| 168 | + foreach ($groupIds as $groupId) { |
|
| 169 | + if (in_array($groupId, $applicableGroups, true)) { |
|
| 170 | + return true; |
|
| 171 | + } |
|
| 172 | + } |
|
| 173 | + return false; |
|
| 174 | + } |
|
| 175 | + |
|
| 176 | + |
|
| 177 | + /** |
|
| 178 | + * Gets all storages for the user, admin, personal, global, etc |
|
| 179 | + * |
|
| 180 | + * @return StorageConfig[] array of storage configs |
|
| 181 | + */ |
|
| 182 | + public function getAllStoragesForUser() { |
|
| 183 | + if (is_null($this->getUser())) { |
|
| 184 | + return []; |
|
| 185 | + } |
|
| 186 | + $groupIds = $this->groupManager->getUserGroupIds($this->getUser()); |
|
| 187 | + $mounts = $this->dbConfig->getMountsForUser($this->getUser()->getUID(), $groupIds); |
|
| 188 | + $configs = array_map([$this, 'getStorageConfigFromDBMount'], $mounts); |
|
| 189 | + $configs = array_filter($configs, function ($config) { |
|
| 190 | + return $config instanceof StorageConfig; |
|
| 191 | + }); |
|
| 192 | + |
|
| 193 | + $keys = array_map(function (StorageConfig $config) { |
|
| 194 | + return $config->getId(); |
|
| 195 | + }, $configs); |
|
| 196 | + |
|
| 197 | + $storages = array_combine($keys, $configs); |
|
| 198 | + return array_filter($storages, [$this, 'validateStorage']); |
|
| 199 | + } |
|
| 200 | 200 | } |
@@ -35,151 +35,151 @@ |
||
| 35 | 35 | * Service class to manage global external storages |
| 36 | 36 | */ |
| 37 | 37 | class GlobalStoragesService extends StoragesService { |
| 38 | - /** |
|
| 39 | - * Triggers $signal for all applicable users of the given |
|
| 40 | - * storage |
|
| 41 | - * |
|
| 42 | - * @param StorageConfig $storage storage data |
|
| 43 | - * @param string $signal signal to trigger |
|
| 44 | - */ |
|
| 45 | - protected function triggerHooks(StorageConfig $storage, $signal) { |
|
| 46 | - // FIXME: Use as expression in empty once PHP 5.4 support is dropped |
|
| 47 | - $applicableUsers = $storage->getApplicableUsers(); |
|
| 48 | - $applicableGroups = $storage->getApplicableGroups(); |
|
| 49 | - if (empty($applicableUsers) && empty($applicableGroups)) { |
|
| 50 | - // raise for user "all" |
|
| 51 | - $this->triggerApplicableHooks( |
|
| 52 | - $signal, |
|
| 53 | - $storage->getMountPoint(), |
|
| 54 | - \OC_Mount_Config::MOUNT_TYPE_USER, |
|
| 55 | - ['all'] |
|
| 56 | - ); |
|
| 57 | - return; |
|
| 58 | - } |
|
| 59 | - |
|
| 60 | - $this->triggerApplicableHooks( |
|
| 61 | - $signal, |
|
| 62 | - $storage->getMountPoint(), |
|
| 63 | - \OC_Mount_Config::MOUNT_TYPE_USER, |
|
| 64 | - $applicableUsers |
|
| 65 | - ); |
|
| 66 | - $this->triggerApplicableHooks( |
|
| 67 | - $signal, |
|
| 68 | - $storage->getMountPoint(), |
|
| 69 | - \OC_Mount_Config::MOUNT_TYPE_GROUP, |
|
| 70 | - $applicableGroups |
|
| 71 | - ); |
|
| 72 | - } |
|
| 73 | - |
|
| 74 | - /** |
|
| 75 | - * Triggers signal_create_mount or signal_delete_mount to |
|
| 76 | - * accommodate for additions/deletions in applicableUsers |
|
| 77 | - * and applicableGroups fields. |
|
| 78 | - * |
|
| 79 | - * @param StorageConfig $oldStorage old storage config |
|
| 80 | - * @param StorageConfig $newStorage new storage config |
|
| 81 | - */ |
|
| 82 | - protected function triggerChangeHooks(StorageConfig $oldStorage, StorageConfig $newStorage) { |
|
| 83 | - // if mount point changed, it's like a deletion + creation |
|
| 84 | - if ($oldStorage->getMountPoint() !== $newStorage->getMountPoint()) { |
|
| 85 | - $this->triggerHooks($oldStorage, Filesystem::signal_delete_mount); |
|
| 86 | - $this->triggerHooks($newStorage, Filesystem::signal_create_mount); |
|
| 87 | - return; |
|
| 88 | - } |
|
| 89 | - |
|
| 90 | - $userAdditions = array_diff($newStorage->getApplicableUsers(), $oldStorage->getApplicableUsers()); |
|
| 91 | - $userDeletions = array_diff($oldStorage->getApplicableUsers(), $newStorage->getApplicableUsers()); |
|
| 92 | - $groupAdditions = array_diff($newStorage->getApplicableGroups(), $oldStorage->getApplicableGroups()); |
|
| 93 | - $groupDeletions = array_diff($oldStorage->getApplicableGroups(), $newStorage->getApplicableGroups()); |
|
| 94 | - |
|
| 95 | - // FIXME: Use as expression in empty once PHP 5.4 support is dropped |
|
| 96 | - // if no applicable were set, raise a signal for "all" |
|
| 97 | - $oldApplicableUsers = $oldStorage->getApplicableUsers(); |
|
| 98 | - $oldApplicableGroups = $oldStorage->getApplicableGroups(); |
|
| 99 | - if (empty($oldApplicableUsers) && empty($oldApplicableGroups)) { |
|
| 100 | - $this->triggerApplicableHooks( |
|
| 101 | - Filesystem::signal_delete_mount, |
|
| 102 | - $oldStorage->getMountPoint(), |
|
| 103 | - \OC_Mount_Config::MOUNT_TYPE_USER, |
|
| 104 | - ['all'] |
|
| 105 | - ); |
|
| 106 | - } |
|
| 107 | - |
|
| 108 | - // trigger delete for removed users |
|
| 109 | - $this->triggerApplicableHooks( |
|
| 110 | - Filesystem::signal_delete_mount, |
|
| 111 | - $oldStorage->getMountPoint(), |
|
| 112 | - \OC_Mount_Config::MOUNT_TYPE_USER, |
|
| 113 | - $userDeletions |
|
| 114 | - ); |
|
| 115 | - |
|
| 116 | - // trigger delete for removed groups |
|
| 117 | - $this->triggerApplicableHooks( |
|
| 118 | - Filesystem::signal_delete_mount, |
|
| 119 | - $oldStorage->getMountPoint(), |
|
| 120 | - \OC_Mount_Config::MOUNT_TYPE_GROUP, |
|
| 121 | - $groupDeletions |
|
| 122 | - ); |
|
| 123 | - |
|
| 124 | - // and now add the new users |
|
| 125 | - $this->triggerApplicableHooks( |
|
| 126 | - Filesystem::signal_create_mount, |
|
| 127 | - $newStorage->getMountPoint(), |
|
| 128 | - \OC_Mount_Config::MOUNT_TYPE_USER, |
|
| 129 | - $userAdditions |
|
| 130 | - ); |
|
| 131 | - |
|
| 132 | - // and now add the new groups |
|
| 133 | - $this->triggerApplicableHooks( |
|
| 134 | - Filesystem::signal_create_mount, |
|
| 135 | - $newStorage->getMountPoint(), |
|
| 136 | - \OC_Mount_Config::MOUNT_TYPE_GROUP, |
|
| 137 | - $groupAdditions |
|
| 138 | - ); |
|
| 139 | - |
|
| 140 | - // FIXME: Use as expression in empty once PHP 5.4 support is dropped |
|
| 141 | - // if no applicable, raise a signal for "all" |
|
| 142 | - $newApplicableUsers = $newStorage->getApplicableUsers(); |
|
| 143 | - $newApplicableGroups = $newStorage->getApplicableGroups(); |
|
| 144 | - if (empty($newApplicableUsers) && empty($newApplicableGroups)) { |
|
| 145 | - $this->triggerApplicableHooks( |
|
| 146 | - Filesystem::signal_create_mount, |
|
| 147 | - $newStorage->getMountPoint(), |
|
| 148 | - \OC_Mount_Config::MOUNT_TYPE_USER, |
|
| 149 | - ['all'] |
|
| 150 | - ); |
|
| 151 | - } |
|
| 152 | - } |
|
| 153 | - |
|
| 154 | - /** |
|
| 155 | - * Get the visibility type for this controller, used in validation |
|
| 156 | - * |
|
| 157 | - * @return string BackendService::VISIBILITY_* constants |
|
| 158 | - */ |
|
| 159 | - public function getVisibilityType() { |
|
| 160 | - return BackendService::VISIBILITY_ADMIN; |
|
| 161 | - } |
|
| 162 | - |
|
| 163 | - protected function isApplicable(StorageConfig $config) { |
|
| 164 | - return true; |
|
| 165 | - } |
|
| 166 | - |
|
| 167 | - /** |
|
| 168 | - * Get all configured admin and personal mounts |
|
| 169 | - * |
|
| 170 | - * @return array map of storage id to storage config |
|
| 171 | - */ |
|
| 172 | - public function getStorageForAllUsers() { |
|
| 173 | - $mounts = $this->dbConfig->getAllMounts(); |
|
| 174 | - $configs = array_map([$this, 'getStorageConfigFromDBMount'], $mounts); |
|
| 175 | - $configs = array_filter($configs, function ($config) { |
|
| 176 | - return $config instanceof StorageConfig; |
|
| 177 | - }); |
|
| 178 | - |
|
| 179 | - $keys = array_map(function (StorageConfig $config) { |
|
| 180 | - return $config->getId(); |
|
| 181 | - }, $configs); |
|
| 182 | - |
|
| 183 | - return array_combine($keys, $configs); |
|
| 184 | - } |
|
| 38 | + /** |
|
| 39 | + * Triggers $signal for all applicable users of the given |
|
| 40 | + * storage |
|
| 41 | + * |
|
| 42 | + * @param StorageConfig $storage storage data |
|
| 43 | + * @param string $signal signal to trigger |
|
| 44 | + */ |
|
| 45 | + protected function triggerHooks(StorageConfig $storage, $signal) { |
|
| 46 | + // FIXME: Use as expression in empty once PHP 5.4 support is dropped |
|
| 47 | + $applicableUsers = $storage->getApplicableUsers(); |
|
| 48 | + $applicableGroups = $storage->getApplicableGroups(); |
|
| 49 | + if (empty($applicableUsers) && empty($applicableGroups)) { |
|
| 50 | + // raise for user "all" |
|
| 51 | + $this->triggerApplicableHooks( |
|
| 52 | + $signal, |
|
| 53 | + $storage->getMountPoint(), |
|
| 54 | + \OC_Mount_Config::MOUNT_TYPE_USER, |
|
| 55 | + ['all'] |
|
| 56 | + ); |
|
| 57 | + return; |
|
| 58 | + } |
|
| 59 | + |
|
| 60 | + $this->triggerApplicableHooks( |
|
| 61 | + $signal, |
|
| 62 | + $storage->getMountPoint(), |
|
| 63 | + \OC_Mount_Config::MOUNT_TYPE_USER, |
|
| 64 | + $applicableUsers |
|
| 65 | + ); |
|
| 66 | + $this->triggerApplicableHooks( |
|
| 67 | + $signal, |
|
| 68 | + $storage->getMountPoint(), |
|
| 69 | + \OC_Mount_Config::MOUNT_TYPE_GROUP, |
|
| 70 | + $applicableGroups |
|
| 71 | + ); |
|
| 72 | + } |
|
| 73 | + |
|
| 74 | + /** |
|
| 75 | + * Triggers signal_create_mount or signal_delete_mount to |
|
| 76 | + * accommodate for additions/deletions in applicableUsers |
|
| 77 | + * and applicableGroups fields. |
|
| 78 | + * |
|
| 79 | + * @param StorageConfig $oldStorage old storage config |
|
| 80 | + * @param StorageConfig $newStorage new storage config |
|
| 81 | + */ |
|
| 82 | + protected function triggerChangeHooks(StorageConfig $oldStorage, StorageConfig $newStorage) { |
|
| 83 | + // if mount point changed, it's like a deletion + creation |
|
| 84 | + if ($oldStorage->getMountPoint() !== $newStorage->getMountPoint()) { |
|
| 85 | + $this->triggerHooks($oldStorage, Filesystem::signal_delete_mount); |
|
| 86 | + $this->triggerHooks($newStorage, Filesystem::signal_create_mount); |
|
| 87 | + return; |
|
| 88 | + } |
|
| 89 | + |
|
| 90 | + $userAdditions = array_diff($newStorage->getApplicableUsers(), $oldStorage->getApplicableUsers()); |
|
| 91 | + $userDeletions = array_diff($oldStorage->getApplicableUsers(), $newStorage->getApplicableUsers()); |
|
| 92 | + $groupAdditions = array_diff($newStorage->getApplicableGroups(), $oldStorage->getApplicableGroups()); |
|
| 93 | + $groupDeletions = array_diff($oldStorage->getApplicableGroups(), $newStorage->getApplicableGroups()); |
|
| 94 | + |
|
| 95 | + // FIXME: Use as expression in empty once PHP 5.4 support is dropped |
|
| 96 | + // if no applicable were set, raise a signal for "all" |
|
| 97 | + $oldApplicableUsers = $oldStorage->getApplicableUsers(); |
|
| 98 | + $oldApplicableGroups = $oldStorage->getApplicableGroups(); |
|
| 99 | + if (empty($oldApplicableUsers) && empty($oldApplicableGroups)) { |
|
| 100 | + $this->triggerApplicableHooks( |
|
| 101 | + Filesystem::signal_delete_mount, |
|
| 102 | + $oldStorage->getMountPoint(), |
|
| 103 | + \OC_Mount_Config::MOUNT_TYPE_USER, |
|
| 104 | + ['all'] |
|
| 105 | + ); |
|
| 106 | + } |
|
| 107 | + |
|
| 108 | + // trigger delete for removed users |
|
| 109 | + $this->triggerApplicableHooks( |
|
| 110 | + Filesystem::signal_delete_mount, |
|
| 111 | + $oldStorage->getMountPoint(), |
|
| 112 | + \OC_Mount_Config::MOUNT_TYPE_USER, |
|
| 113 | + $userDeletions |
|
| 114 | + ); |
|
| 115 | + |
|
| 116 | + // trigger delete for removed groups |
|
| 117 | + $this->triggerApplicableHooks( |
|
| 118 | + Filesystem::signal_delete_mount, |
|
| 119 | + $oldStorage->getMountPoint(), |
|
| 120 | + \OC_Mount_Config::MOUNT_TYPE_GROUP, |
|
| 121 | + $groupDeletions |
|
| 122 | + ); |
|
| 123 | + |
|
| 124 | + // and now add the new users |
|
| 125 | + $this->triggerApplicableHooks( |
|
| 126 | + Filesystem::signal_create_mount, |
|
| 127 | + $newStorage->getMountPoint(), |
|
| 128 | + \OC_Mount_Config::MOUNT_TYPE_USER, |
|
| 129 | + $userAdditions |
|
| 130 | + ); |
|
| 131 | + |
|
| 132 | + // and now add the new groups |
|
| 133 | + $this->triggerApplicableHooks( |
|
| 134 | + Filesystem::signal_create_mount, |
|
| 135 | + $newStorage->getMountPoint(), |
|
| 136 | + \OC_Mount_Config::MOUNT_TYPE_GROUP, |
|
| 137 | + $groupAdditions |
|
| 138 | + ); |
|
| 139 | + |
|
| 140 | + // FIXME: Use as expression in empty once PHP 5.4 support is dropped |
|
| 141 | + // if no applicable, raise a signal for "all" |
|
| 142 | + $newApplicableUsers = $newStorage->getApplicableUsers(); |
|
| 143 | + $newApplicableGroups = $newStorage->getApplicableGroups(); |
|
| 144 | + if (empty($newApplicableUsers) && empty($newApplicableGroups)) { |
|
| 145 | + $this->triggerApplicableHooks( |
|
| 146 | + Filesystem::signal_create_mount, |
|
| 147 | + $newStorage->getMountPoint(), |
|
| 148 | + \OC_Mount_Config::MOUNT_TYPE_USER, |
|
| 149 | + ['all'] |
|
| 150 | + ); |
|
| 151 | + } |
|
| 152 | + } |
|
| 153 | + |
|
| 154 | + /** |
|
| 155 | + * Get the visibility type for this controller, used in validation |
|
| 156 | + * |
|
| 157 | + * @return string BackendService::VISIBILITY_* constants |
|
| 158 | + */ |
|
| 159 | + public function getVisibilityType() { |
|
| 160 | + return BackendService::VISIBILITY_ADMIN; |
|
| 161 | + } |
|
| 162 | + |
|
| 163 | + protected function isApplicable(StorageConfig $config) { |
|
| 164 | + return true; |
|
| 165 | + } |
|
| 166 | + |
|
| 167 | + /** |
|
| 168 | + * Get all configured admin and personal mounts |
|
| 169 | + * |
|
| 170 | + * @return array map of storage id to storage config |
|
| 171 | + */ |
|
| 172 | + public function getStorageForAllUsers() { |
|
| 173 | + $mounts = $this->dbConfig->getAllMounts(); |
|
| 174 | + $configs = array_map([$this, 'getStorageConfigFromDBMount'], $mounts); |
|
| 175 | + $configs = array_filter($configs, function ($config) { |
|
| 176 | + return $config instanceof StorageConfig; |
|
| 177 | + }); |
|
| 178 | + |
|
| 179 | + $keys = array_map(function (StorageConfig $config) { |
|
| 180 | + return $config->getId(); |
|
| 181 | + }, $configs); |
|
| 182 | + |
|
| 183 | + return array_combine($keys, $configs); |
|
| 184 | + } |
|
| 185 | 185 | } |
@@ -29,28 +29,28 @@ |
||
| 29 | 29 | * Read user defined mounts from the legacy mount.json |
| 30 | 30 | */ |
| 31 | 31 | class UserLegacyStoragesService extends LegacyStoragesService { |
| 32 | - /** |
|
| 33 | - * @var IUserSession |
|
| 34 | - */ |
|
| 35 | - private $userSession; |
|
| 32 | + /** |
|
| 33 | + * @var IUserSession |
|
| 34 | + */ |
|
| 35 | + private $userSession; |
|
| 36 | 36 | |
| 37 | - /** |
|
| 38 | - * @param BackendService $backendService |
|
| 39 | - * @param IUserSession $userSession |
|
| 40 | - */ |
|
| 41 | - public function __construct(BackendService $backendService, IUserSession $userSession) { |
|
| 42 | - $this->backendService = $backendService; |
|
| 43 | - $this->userSession = $userSession; |
|
| 44 | - } |
|
| 37 | + /** |
|
| 38 | + * @param BackendService $backendService |
|
| 39 | + * @param IUserSession $userSession |
|
| 40 | + */ |
|
| 41 | + public function __construct(BackendService $backendService, IUserSession $userSession) { |
|
| 42 | + $this->backendService = $backendService; |
|
| 43 | + $this->userSession = $userSession; |
|
| 44 | + } |
|
| 45 | 45 | |
| 46 | - /** |
|
| 47 | - * Read legacy config data |
|
| 48 | - * |
|
| 49 | - * @return array list of storage configs |
|
| 50 | - */ |
|
| 51 | - protected function readLegacyConfig() { |
|
| 52 | - // read user config |
|
| 53 | - $user = $this->userSession->getUser()->getUID(); |
|
| 54 | - return \OC_Mount_Config::readData($user); |
|
| 55 | - } |
|
| 46 | + /** |
|
| 47 | + * Read legacy config data |
|
| 48 | + * |
|
| 49 | + * @return array list of storage configs |
|
| 50 | + */ |
|
| 51 | + protected function readLegacyConfig() { |
|
| 52 | + // read user config |
|
| 53 | + $user = $this->userSession->getUser()->getUID(); |
|
| 54 | + return \OC_Mount_Config::readData($user); |
|
| 55 | + } |
|
| 56 | 56 | } |
@@ -30,46 +30,46 @@ |
||
| 30 | 30 | */ |
| 31 | 31 | trait UserTrait { |
| 32 | 32 | |
| 33 | - /** @var IUserSession */ |
|
| 34 | - protected $userSession; |
|
| 33 | + /** @var IUserSession */ |
|
| 34 | + protected $userSession; |
|
| 35 | 35 | |
| 36 | - /** |
|
| 37 | - * User override |
|
| 38 | - * |
|
| 39 | - * @var IUser|null |
|
| 40 | - */ |
|
| 41 | - private $user = null; |
|
| 36 | + /** |
|
| 37 | + * User override |
|
| 38 | + * |
|
| 39 | + * @var IUser|null |
|
| 40 | + */ |
|
| 41 | + private $user = null; |
|
| 42 | 42 | |
| 43 | - /** |
|
| 44 | - * @return IUser|null |
|
| 45 | - */ |
|
| 46 | - protected function getUser() { |
|
| 47 | - if ($this->user) { |
|
| 48 | - return $this->user; |
|
| 49 | - } |
|
| 50 | - return $this->userSession->getUser(); |
|
| 51 | - } |
|
| 43 | + /** |
|
| 44 | + * @return IUser|null |
|
| 45 | + */ |
|
| 46 | + protected function getUser() { |
|
| 47 | + if ($this->user) { |
|
| 48 | + return $this->user; |
|
| 49 | + } |
|
| 50 | + return $this->userSession->getUser(); |
|
| 51 | + } |
|
| 52 | 52 | |
| 53 | - /** |
|
| 54 | - * Override the user from the session |
|
| 55 | - * Unset with ->resetUser() when finished! |
|
| 56 | - * |
|
| 57 | - * @param IUser |
|
| 58 | - * @return self |
|
| 59 | - */ |
|
| 60 | - public function setUser(IUser $user) { |
|
| 61 | - $this->user = $user; |
|
| 62 | - return $this; |
|
| 63 | - } |
|
| 53 | + /** |
|
| 54 | + * Override the user from the session |
|
| 55 | + * Unset with ->resetUser() when finished! |
|
| 56 | + * |
|
| 57 | + * @param IUser |
|
| 58 | + * @return self |
|
| 59 | + */ |
|
| 60 | + public function setUser(IUser $user) { |
|
| 61 | + $this->user = $user; |
|
| 62 | + return $this; |
|
| 63 | + } |
|
| 64 | 64 | |
| 65 | - /** |
|
| 66 | - * Reset the user override |
|
| 67 | - * |
|
| 68 | - * @return self |
|
| 69 | - */ |
|
| 70 | - public function resetUser() { |
|
| 71 | - $this->user = null; |
|
| 72 | - return $this; |
|
| 73 | - } |
|
| 65 | + /** |
|
| 66 | + * Reset the user override |
|
| 67 | + * |
|
| 68 | + * @return self |
|
| 69 | + */ |
|
| 70 | + public function resetUser() { |
|
| 71 | + $this->user = null; |
|
| 72 | + return $this; |
|
| 73 | + } |
|
| 74 | 74 | } |
| 75 | 75 | |
@@ -45,143 +45,143 @@ |
||
| 45 | 45 | */ |
| 46 | 46 | class ConfigAdapter implements IMountProvider { |
| 47 | 47 | |
| 48 | - /** @var UserStoragesService */ |
|
| 49 | - private $userStoragesService; |
|
| 50 | - |
|
| 51 | - /** @var UserGlobalStoragesService */ |
|
| 52 | - private $userGlobalStoragesService; |
|
| 53 | - /** @var StorageMigrator */ |
|
| 54 | - private $migrator; |
|
| 55 | - |
|
| 56 | - /** |
|
| 57 | - * @param UserStoragesService $userStoragesService |
|
| 58 | - * @param UserGlobalStoragesService $userGlobalStoragesService |
|
| 59 | - * @param StorageMigrator $migrator |
|
| 60 | - */ |
|
| 61 | - public function __construct( |
|
| 62 | - UserStoragesService $userStoragesService, |
|
| 63 | - UserGlobalStoragesService $userGlobalStoragesService, |
|
| 64 | - StorageMigrator $migrator |
|
| 65 | - ) { |
|
| 66 | - $this->userStoragesService = $userStoragesService; |
|
| 67 | - $this->userGlobalStoragesService = $userGlobalStoragesService; |
|
| 68 | - $this->migrator = $migrator; |
|
| 69 | - } |
|
| 70 | - |
|
| 71 | - /** |
|
| 72 | - * Process storage ready for mounting |
|
| 73 | - * |
|
| 74 | - * @param StorageConfig $storage |
|
| 75 | - * @param IUser $user |
|
| 76 | - */ |
|
| 77 | - private function prepareStorageConfig(StorageConfig &$storage, IUser $user) { |
|
| 78 | - foreach ($storage->getBackendOptions() as $option => $value) { |
|
| 79 | - $storage->setBackendOption($option, \OC_Mount_Config::setUserVars( |
|
| 80 | - $user->getUID(), $value |
|
| 81 | - )); |
|
| 82 | - } |
|
| 83 | - |
|
| 84 | - $objectStore = $storage->getBackendOption('objectstore'); |
|
| 85 | - if ($objectStore) { |
|
| 86 | - $objectClass = $objectStore['class']; |
|
| 87 | - if (!is_subclass_of($objectClass, '\OCP\Files\ObjectStore\IObjectStore')) { |
|
| 88 | - throw new \InvalidArgumentException('Invalid object store'); |
|
| 89 | - } |
|
| 90 | - $storage->setBackendOption('objectstore', new $objectClass($objectStore)); |
|
| 91 | - } |
|
| 92 | - |
|
| 93 | - $storage->getAuthMechanism()->manipulateStorageConfig($storage, $user); |
|
| 94 | - $storage->getBackend()->manipulateStorageConfig($storage, $user); |
|
| 95 | - } |
|
| 96 | - |
|
| 97 | - /** |
|
| 98 | - * Construct the storage implementation |
|
| 99 | - * |
|
| 100 | - * @param StorageConfig $storageConfig |
|
| 101 | - * @return Storage |
|
| 102 | - */ |
|
| 103 | - private function constructStorage(StorageConfig $storageConfig) { |
|
| 104 | - $class = $storageConfig->getBackend()->getStorageClass(); |
|
| 105 | - $storage = new $class($storageConfig->getBackendOptions()); |
|
| 106 | - |
|
| 107 | - // auth mechanism should fire first |
|
| 108 | - $storage = $storageConfig->getBackend()->wrapStorage($storage); |
|
| 109 | - $storage = $storageConfig->getAuthMechanism()->wrapStorage($storage); |
|
| 110 | - |
|
| 111 | - return $storage; |
|
| 112 | - } |
|
| 113 | - |
|
| 114 | - /** |
|
| 115 | - * Get all mountpoints applicable for the user |
|
| 116 | - * |
|
| 117 | - * @param \OCP\IUser $user |
|
| 118 | - * @param \OCP\Files\Storage\IStorageFactory $loader |
|
| 119 | - * @return \OCP\Files\Mount\IMountPoint[] |
|
| 120 | - */ |
|
| 121 | - public function getMountsForUser(IUser $user, IStorageFactory $loader) { |
|
| 122 | - $this->migrator->migrateUser($user); |
|
| 123 | - |
|
| 124 | - $this->userStoragesService->setUser($user); |
|
| 125 | - $this->userGlobalStoragesService->setUser($user); |
|
| 126 | - |
|
| 127 | - $storageConfigs = $this->userGlobalStoragesService->getAllStoragesForUser(); |
|
| 128 | - |
|
| 129 | - $storages = array_map(function(StorageConfig $storageConfig) use ($user) { |
|
| 130 | - try { |
|
| 131 | - $this->prepareStorageConfig($storageConfig, $user); |
|
| 132 | - return $this->constructStorage($storageConfig); |
|
| 133 | - } catch (\Exception $e) { |
|
| 134 | - // propagate exception into filesystem |
|
| 135 | - return new FailedStorage(['exception' => $e]); |
|
| 136 | - } |
|
| 137 | - }, $storageConfigs); |
|
| 138 | - |
|
| 139 | - |
|
| 140 | - \OC\Files\Cache\Storage::getGlobalCache()->loadForStorageIds(array_map(function(Storage\IStorage $storage) { |
|
| 141 | - return $storage->getId(); |
|
| 142 | - }, $storages)); |
|
| 143 | - |
|
| 144 | - $availableStorages = array_map(function (Storage\IStorage $storage, StorageConfig $storageConfig) { |
|
| 145 | - try { |
|
| 146 | - $availability = $storage->getAvailability(); |
|
| 147 | - if (!$availability['available'] && !Availability::shouldRecheck($availability)) { |
|
| 148 | - $storage = new FailedStorage([ |
|
| 149 | - 'exception' => new StorageNotAvailableException('Storage with mount id ' . $storageConfig->getId() . ' is not available') |
|
| 150 | - ]); |
|
| 151 | - } |
|
| 152 | - } catch (\Exception $e) { |
|
| 153 | - // propagate exception into filesystem |
|
| 154 | - $storage = new FailedStorage(['exception' => $e]); |
|
| 155 | - } |
|
| 156 | - return $storage; |
|
| 157 | - }, $storages, $storageConfigs); |
|
| 158 | - |
|
| 159 | - $mounts = array_map(function(StorageConfig $storageConfig, Storage\IStorage $storage) use ($user, $loader) { |
|
| 160 | - if ($storageConfig->getType() === StorageConfig::MOUNT_TYPE_PERSONAl) { |
|
| 161 | - return new PersonalMount( |
|
| 162 | - $this->userStoragesService, |
|
| 163 | - $storageConfig->getId(), |
|
| 164 | - $storage, |
|
| 165 | - '/' . $user->getUID() . '/files' . $storageConfig->getMountPoint(), |
|
| 166 | - null, |
|
| 167 | - $loader, |
|
| 168 | - $storageConfig->getMountOptions() |
|
| 169 | - ); |
|
| 170 | - } else { |
|
| 171 | - return new MountPoint( |
|
| 172 | - $storage, |
|
| 173 | - '/' . $user->getUID() . '/files' . $storageConfig->getMountPoint(), |
|
| 174 | - null, |
|
| 175 | - $loader, |
|
| 176 | - $storageConfig->getMountOptions(), |
|
| 177 | - $storageConfig->getId() |
|
| 178 | - ); |
|
| 179 | - } |
|
| 180 | - }, $storageConfigs, $availableStorages); |
|
| 181 | - |
|
| 182 | - $this->userStoragesService->resetUser(); |
|
| 183 | - $this->userGlobalStoragesService->resetUser(); |
|
| 184 | - |
|
| 185 | - return $mounts; |
|
| 186 | - } |
|
| 48 | + /** @var UserStoragesService */ |
|
| 49 | + private $userStoragesService; |
|
| 50 | + |
|
| 51 | + /** @var UserGlobalStoragesService */ |
|
| 52 | + private $userGlobalStoragesService; |
|
| 53 | + /** @var StorageMigrator */ |
|
| 54 | + private $migrator; |
|
| 55 | + |
|
| 56 | + /** |
|
| 57 | + * @param UserStoragesService $userStoragesService |
|
| 58 | + * @param UserGlobalStoragesService $userGlobalStoragesService |
|
| 59 | + * @param StorageMigrator $migrator |
|
| 60 | + */ |
|
| 61 | + public function __construct( |
|
| 62 | + UserStoragesService $userStoragesService, |
|
| 63 | + UserGlobalStoragesService $userGlobalStoragesService, |
|
| 64 | + StorageMigrator $migrator |
|
| 65 | + ) { |
|
| 66 | + $this->userStoragesService = $userStoragesService; |
|
| 67 | + $this->userGlobalStoragesService = $userGlobalStoragesService; |
|
| 68 | + $this->migrator = $migrator; |
|
| 69 | + } |
|
| 70 | + |
|
| 71 | + /** |
|
| 72 | + * Process storage ready for mounting |
|
| 73 | + * |
|
| 74 | + * @param StorageConfig $storage |
|
| 75 | + * @param IUser $user |
|
| 76 | + */ |
|
| 77 | + private function prepareStorageConfig(StorageConfig &$storage, IUser $user) { |
|
| 78 | + foreach ($storage->getBackendOptions() as $option => $value) { |
|
| 79 | + $storage->setBackendOption($option, \OC_Mount_Config::setUserVars( |
|
| 80 | + $user->getUID(), $value |
|
| 81 | + )); |
|
| 82 | + } |
|
| 83 | + |
|
| 84 | + $objectStore = $storage->getBackendOption('objectstore'); |
|
| 85 | + if ($objectStore) { |
|
| 86 | + $objectClass = $objectStore['class']; |
|
| 87 | + if (!is_subclass_of($objectClass, '\OCP\Files\ObjectStore\IObjectStore')) { |
|
| 88 | + throw new \InvalidArgumentException('Invalid object store'); |
|
| 89 | + } |
|
| 90 | + $storage->setBackendOption('objectstore', new $objectClass($objectStore)); |
|
| 91 | + } |
|
| 92 | + |
|
| 93 | + $storage->getAuthMechanism()->manipulateStorageConfig($storage, $user); |
|
| 94 | + $storage->getBackend()->manipulateStorageConfig($storage, $user); |
|
| 95 | + } |
|
| 96 | + |
|
| 97 | + /** |
|
| 98 | + * Construct the storage implementation |
|
| 99 | + * |
|
| 100 | + * @param StorageConfig $storageConfig |
|
| 101 | + * @return Storage |
|
| 102 | + */ |
|
| 103 | + private function constructStorage(StorageConfig $storageConfig) { |
|
| 104 | + $class = $storageConfig->getBackend()->getStorageClass(); |
|
| 105 | + $storage = new $class($storageConfig->getBackendOptions()); |
|
| 106 | + |
|
| 107 | + // auth mechanism should fire first |
|
| 108 | + $storage = $storageConfig->getBackend()->wrapStorage($storage); |
|
| 109 | + $storage = $storageConfig->getAuthMechanism()->wrapStorage($storage); |
|
| 110 | + |
|
| 111 | + return $storage; |
|
| 112 | + } |
|
| 113 | + |
|
| 114 | + /** |
|
| 115 | + * Get all mountpoints applicable for the user |
|
| 116 | + * |
|
| 117 | + * @param \OCP\IUser $user |
|
| 118 | + * @param \OCP\Files\Storage\IStorageFactory $loader |
|
| 119 | + * @return \OCP\Files\Mount\IMountPoint[] |
|
| 120 | + */ |
|
| 121 | + public function getMountsForUser(IUser $user, IStorageFactory $loader) { |
|
| 122 | + $this->migrator->migrateUser($user); |
|
| 123 | + |
|
| 124 | + $this->userStoragesService->setUser($user); |
|
| 125 | + $this->userGlobalStoragesService->setUser($user); |
|
| 126 | + |
|
| 127 | + $storageConfigs = $this->userGlobalStoragesService->getAllStoragesForUser(); |
|
| 128 | + |
|
| 129 | + $storages = array_map(function(StorageConfig $storageConfig) use ($user) { |
|
| 130 | + try { |
|
| 131 | + $this->prepareStorageConfig($storageConfig, $user); |
|
| 132 | + return $this->constructStorage($storageConfig); |
|
| 133 | + } catch (\Exception $e) { |
|
| 134 | + // propagate exception into filesystem |
|
| 135 | + return new FailedStorage(['exception' => $e]); |
|
| 136 | + } |
|
| 137 | + }, $storageConfigs); |
|
| 138 | + |
|
| 139 | + |
|
| 140 | + \OC\Files\Cache\Storage::getGlobalCache()->loadForStorageIds(array_map(function(Storage\IStorage $storage) { |
|
| 141 | + return $storage->getId(); |
|
| 142 | + }, $storages)); |
|
| 143 | + |
|
| 144 | + $availableStorages = array_map(function (Storage\IStorage $storage, StorageConfig $storageConfig) { |
|
| 145 | + try { |
|
| 146 | + $availability = $storage->getAvailability(); |
|
| 147 | + if (!$availability['available'] && !Availability::shouldRecheck($availability)) { |
|
| 148 | + $storage = new FailedStorage([ |
|
| 149 | + 'exception' => new StorageNotAvailableException('Storage with mount id ' . $storageConfig->getId() . ' is not available') |
|
| 150 | + ]); |
|
| 151 | + } |
|
| 152 | + } catch (\Exception $e) { |
|
| 153 | + // propagate exception into filesystem |
|
| 154 | + $storage = new FailedStorage(['exception' => $e]); |
|
| 155 | + } |
|
| 156 | + return $storage; |
|
| 157 | + }, $storages, $storageConfigs); |
|
| 158 | + |
|
| 159 | + $mounts = array_map(function(StorageConfig $storageConfig, Storage\IStorage $storage) use ($user, $loader) { |
|
| 160 | + if ($storageConfig->getType() === StorageConfig::MOUNT_TYPE_PERSONAl) { |
|
| 161 | + return new PersonalMount( |
|
| 162 | + $this->userStoragesService, |
|
| 163 | + $storageConfig->getId(), |
|
| 164 | + $storage, |
|
| 165 | + '/' . $user->getUID() . '/files' . $storageConfig->getMountPoint(), |
|
| 166 | + null, |
|
| 167 | + $loader, |
|
| 168 | + $storageConfig->getMountOptions() |
|
| 169 | + ); |
|
| 170 | + } else { |
|
| 171 | + return new MountPoint( |
|
| 172 | + $storage, |
|
| 173 | + '/' . $user->getUID() . '/files' . $storageConfig->getMountPoint(), |
|
| 174 | + null, |
|
| 175 | + $loader, |
|
| 176 | + $storageConfig->getMountOptions(), |
|
| 177 | + $storageConfig->getId() |
|
| 178 | + ); |
|
| 179 | + } |
|
| 180 | + }, $storageConfigs, $availableStorages); |
|
| 181 | + |
|
| 182 | + $this->userStoragesService->resetUser(); |
|
| 183 | + $this->userGlobalStoragesService->resetUser(); |
|
| 184 | + |
|
| 185 | + return $mounts; |
|
| 186 | + } |
|
| 187 | 187 | } |
@@ -28,26 +28,26 @@ |
||
| 28 | 28 | |
| 29 | 29 | class DummyUserSession implements IUserSession { |
| 30 | 30 | |
| 31 | - /** |
|
| 32 | - * @var IUser |
|
| 33 | - */ |
|
| 34 | - private $user; |
|
| 31 | + /** |
|
| 32 | + * @var IUser |
|
| 33 | + */ |
|
| 34 | + private $user; |
|
| 35 | 35 | |
| 36 | - public function login($user, $password) { |
|
| 37 | - } |
|
| 36 | + public function login($user, $password) { |
|
| 37 | + } |
|
| 38 | 38 | |
| 39 | - public function logout() { |
|
| 40 | - } |
|
| 39 | + public function logout() { |
|
| 40 | + } |
|
| 41 | 41 | |
| 42 | - public function setUser($user) { |
|
| 43 | - $this->user = $user; |
|
| 44 | - } |
|
| 42 | + public function setUser($user) { |
|
| 43 | + $this->user = $user; |
|
| 44 | + } |
|
| 45 | 45 | |
| 46 | - public function getUser() { |
|
| 47 | - return $this->user; |
|
| 48 | - } |
|
| 46 | + public function getUser() { |
|
| 47 | + return $this->user; |
|
| 48 | + } |
|
| 49 | 49 | |
| 50 | - public function isLoggedIn() { |
|
| 51 | - return !is_null($this->user); |
|
| 52 | - } |
|
| 50 | + public function isLoggedIn() { |
|
| 51 | + return !is_null($this->user); |
|
| 52 | + } |
|
| 53 | 53 | } |
@@ -30,30 +30,30 @@ |
||
| 30 | 30 | |
| 31 | 31 | class Export extends ListCommand { |
| 32 | 32 | |
| 33 | - protected function configure() { |
|
| 34 | - $this |
|
| 35 | - ->setName('files_external:export') |
|
| 36 | - ->setDescription('Export mount configurations') |
|
| 37 | - ->addArgument( |
|
| 38 | - 'user_id', |
|
| 39 | - InputArgument::OPTIONAL, |
|
| 40 | - 'user id to export the personal mounts for, if no user is provided admin mounts will be exported' |
|
| 41 | - )->addOption( |
|
| 42 | - 'all', |
|
| 43 | - 'a', |
|
| 44 | - InputOption::VALUE_NONE, |
|
| 45 | - 'show both system wide mounts and all personal mounts' |
|
| 46 | - ); |
|
| 47 | - } |
|
| 33 | + protected function configure() { |
|
| 34 | + $this |
|
| 35 | + ->setName('files_external:export') |
|
| 36 | + ->setDescription('Export mount configurations') |
|
| 37 | + ->addArgument( |
|
| 38 | + 'user_id', |
|
| 39 | + InputArgument::OPTIONAL, |
|
| 40 | + 'user id to export the personal mounts for, if no user is provided admin mounts will be exported' |
|
| 41 | + )->addOption( |
|
| 42 | + 'all', |
|
| 43 | + 'a', |
|
| 44 | + InputOption::VALUE_NONE, |
|
| 45 | + 'show both system wide mounts and all personal mounts' |
|
| 46 | + ); |
|
| 47 | + } |
|
| 48 | 48 | |
| 49 | - protected function execute(InputInterface $input, OutputInterface $output) { |
|
| 50 | - $listCommand = new ListCommand($this->globalService, $this->userService, $this->userSession, $this->userManager); |
|
| 51 | - $listInput = new ArrayInput([], $listCommand->getDefinition()); |
|
| 52 | - $listInput->setArgument('user_id', $input->getArgument('user_id')); |
|
| 53 | - $listInput->setOption('all', $input->getOption('all')); |
|
| 54 | - $listInput->setOption('output', 'json_pretty'); |
|
| 55 | - $listInput->setOption('show-password', true); |
|
| 56 | - $listInput->setOption('full', true); |
|
| 57 | - $listCommand->execute($listInput, $output); |
|
| 58 | - } |
|
| 49 | + protected function execute(InputInterface $input, OutputInterface $output) { |
|
| 50 | + $listCommand = new ListCommand($this->globalService, $this->userService, $this->userSession, $this->userManager); |
|
| 51 | + $listInput = new ArrayInput([], $listCommand->getDefinition()); |
|
| 52 | + $listInput->setArgument('user_id', $input->getArgument('user_id')); |
|
| 53 | + $listInput->setOption('all', $input->getOption('all')); |
|
| 54 | + $listInput->setOption('output', 'json_pretty'); |
|
| 55 | + $listInput->setOption('show-password', true); |
|
| 56 | + $listInput->setOption('full', true); |
|
| 57 | + $listCommand->execute($listInput, $output); |
|
| 58 | + } |
|
| 59 | 59 | } |