123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163 |
- <?php
- /**
- * SPDX-FileCopyrightText: 2019-2024 Nextcloud GmbH and Nextcloud contributors
- * SPDX-FileCopyrightText: 2016 ownCloud, Inc.
- * SPDX-License-Identifier: AGPL-3.0-only
- */
- namespace OCA\Files_External\Service;
- use OC\Files\Filesystem;
- use OCA\Files_External\Lib\StorageConfig;
- /**
- * Service class to manage global external storage
- */
- class GlobalStoragesService extends StoragesService {
- /**
- * Triggers $signal for all applicable users of the given
- * storage
- *
- * @param StorageConfig $storage storage data
- * @param string $signal signal to trigger
- */
- protected function triggerHooks(StorageConfig $storage, $signal) {
- // FIXME: Use as expression in empty once PHP 5.4 support is dropped
- $applicableUsers = $storage->getApplicableUsers();
- $applicableGroups = $storage->getApplicableGroups();
- if (empty($applicableUsers) && empty($applicableGroups)) {
- // raise for user "all"
- $this->triggerApplicableHooks(
- $signal,
- $storage->getMountPoint(),
- \OCA\Files_External\MountConfig::MOUNT_TYPE_USER,
- ['all']
- );
- return;
- }
- $this->triggerApplicableHooks(
- $signal,
- $storage->getMountPoint(),
- \OCA\Files_External\MountConfig::MOUNT_TYPE_USER,
- $applicableUsers
- );
- $this->triggerApplicableHooks(
- $signal,
- $storage->getMountPoint(),
- \OCA\Files_External\MountConfig::MOUNT_TYPE_GROUP,
- $applicableGroups
- );
- }
- /**
- * Triggers signal_create_mount or signal_delete_mount to
- * accommodate for additions/deletions in applicableUsers
- * and applicableGroups fields.
- *
- * @param StorageConfig $oldStorage old storage config
- * @param StorageConfig $newStorage new storage config
- */
- protected function triggerChangeHooks(StorageConfig $oldStorage, StorageConfig $newStorage) {
- // if mount point changed, it's like a deletion + creation
- if ($oldStorage->getMountPoint() !== $newStorage->getMountPoint()) {
- $this->triggerHooks($oldStorage, Filesystem::signal_delete_mount);
- $this->triggerHooks($newStorage, Filesystem::signal_create_mount);
- return;
- }
- $userAdditions = array_diff($newStorage->getApplicableUsers(), $oldStorage->getApplicableUsers());
- $userDeletions = array_diff($oldStorage->getApplicableUsers(), $newStorage->getApplicableUsers());
- $groupAdditions = array_diff($newStorage->getApplicableGroups(), $oldStorage->getApplicableGroups());
- $groupDeletions = array_diff($oldStorage->getApplicableGroups(), $newStorage->getApplicableGroups());
- // FIXME: Use as expression in empty once PHP 5.4 support is dropped
- // if no applicable were set, raise a signal for "all"
- $oldApplicableUsers = $oldStorage->getApplicableUsers();
- $oldApplicableGroups = $oldStorage->getApplicableGroups();
- if (empty($oldApplicableUsers) && empty($oldApplicableGroups)) {
- $this->triggerApplicableHooks(
- Filesystem::signal_delete_mount,
- $oldStorage->getMountPoint(),
- \OCA\Files_External\MountConfig::MOUNT_TYPE_USER,
- ['all']
- );
- }
- // trigger delete for removed users
- $this->triggerApplicableHooks(
- Filesystem::signal_delete_mount,
- $oldStorage->getMountPoint(),
- \OCA\Files_External\MountConfig::MOUNT_TYPE_USER,
- $userDeletions
- );
- // trigger delete for removed groups
- $this->triggerApplicableHooks(
- Filesystem::signal_delete_mount,
- $oldStorage->getMountPoint(),
- \OCA\Files_External\MountConfig::MOUNT_TYPE_GROUP,
- $groupDeletions
- );
- // and now add the new users
- $this->triggerApplicableHooks(
- Filesystem::signal_create_mount,
- $newStorage->getMountPoint(),
- \OCA\Files_External\MountConfig::MOUNT_TYPE_USER,
- $userAdditions
- );
- // and now add the new groups
- $this->triggerApplicableHooks(
- Filesystem::signal_create_mount,
- $newStorage->getMountPoint(),
- \OCA\Files_External\MountConfig::MOUNT_TYPE_GROUP,
- $groupAdditions
- );
- // FIXME: Use as expression in empty once PHP 5.4 support is dropped
- // if no applicable, raise a signal for "all"
- $newApplicableUsers = $newStorage->getApplicableUsers();
- $newApplicableGroups = $newStorage->getApplicableGroups();
- if (empty($newApplicableUsers) && empty($newApplicableGroups)) {
- $this->triggerApplicableHooks(
- Filesystem::signal_create_mount,
- $newStorage->getMountPoint(),
- \OCA\Files_External\MountConfig::MOUNT_TYPE_USER,
- ['all']
- );
- }
- }
- /**
- * Get the visibility type for this controller, used in validation
- *
- * @return int BackendService::VISIBILITY_* constants
- */
- public function getVisibilityType() {
- return BackendService::VISIBILITY_ADMIN;
- }
- protected function isApplicable(StorageConfig $config) {
- return true;
- }
- /**
- * Get all configured admin and personal mounts
- *
- * @return StorageConfig[] map of storage id to storage config
- */
- public function getStorageForAllUsers() {
- $mounts = $this->dbConfig->getAllMounts();
- $configs = array_map([$this, 'getStorageConfigFromDBMount'], $mounts);
- $configs = array_filter($configs, function ($config) {
- return $config instanceof StorageConfig;
- });
- $keys = array_map(function (StorageConfig $config) {
- return $config->getId();
- }, $configs);
- return array_combine($keys, $configs);
- }
- }
|