@@ -38,139 +38,139 @@ |
||
| 38 | 38 | |
| 39 | 39 | class DecryptAll extends Command { |
| 40 | 40 | |
| 41 | - /** @var IManager */ |
|
| 42 | - protected $encryptionManager; |
|
| 43 | - |
|
| 44 | - /** @var IAppManager */ |
|
| 45 | - protected $appManager; |
|
| 46 | - |
|
| 47 | - /** @var IConfig */ |
|
| 48 | - protected $config; |
|
| 49 | - |
|
| 50 | - /** @var QuestionHelper */ |
|
| 51 | - protected $questionHelper; |
|
| 52 | - |
|
| 53 | - /** @var bool */ |
|
| 54 | - protected $wasTrashbinEnabled; |
|
| 55 | - |
|
| 56 | - /** @var bool */ |
|
| 57 | - protected $wasMaintenanceModeEnabled; |
|
| 58 | - |
|
| 59 | - /** @var \OC\Encryption\DecryptAll */ |
|
| 60 | - protected $decryptAll; |
|
| 61 | - |
|
| 62 | - /** |
|
| 63 | - * @param IManager $encryptionManager |
|
| 64 | - * @param IAppManager $appManager |
|
| 65 | - * @param IConfig $config |
|
| 66 | - * @param \OC\Encryption\DecryptAll $decryptAll |
|
| 67 | - * @param QuestionHelper $questionHelper |
|
| 68 | - */ |
|
| 69 | - public function __construct( |
|
| 70 | - IManager $encryptionManager, |
|
| 71 | - IAppManager $appManager, |
|
| 72 | - IConfig $config, |
|
| 73 | - \OC\Encryption\DecryptAll $decryptAll, |
|
| 74 | - QuestionHelper $questionHelper |
|
| 75 | - ) { |
|
| 76 | - parent::__construct(); |
|
| 77 | - |
|
| 78 | - $this->appManager = $appManager; |
|
| 79 | - $this->encryptionManager = $encryptionManager; |
|
| 80 | - $this->config = $config; |
|
| 81 | - $this->decryptAll = $decryptAll; |
|
| 82 | - $this->questionHelper = $questionHelper; |
|
| 83 | - } |
|
| 84 | - |
|
| 85 | - /** |
|
| 86 | - * Set maintenance mode and disable the trashbin app |
|
| 87 | - */ |
|
| 88 | - protected function forceMaintenanceAndTrashbin() { |
|
| 89 | - $this->wasTrashbinEnabled = $this->appManager->isEnabledForUser('files_trashbin'); |
|
| 90 | - $this->wasMaintenanceModeEnabled = $this->config->getSystemValue('maintenance', false); |
|
| 91 | - $this->config->setSystemValue('maintenance', true); |
|
| 92 | - $this->appManager->disableApp('files_trashbin'); |
|
| 93 | - } |
|
| 94 | - |
|
| 95 | - /** |
|
| 96 | - * Reset the maintenance mode and re-enable the trashbin app |
|
| 97 | - */ |
|
| 98 | - protected function resetMaintenanceAndTrashbin() { |
|
| 99 | - $this->config->setSystemValue('maintenance', $this->wasMaintenanceModeEnabled); |
|
| 100 | - if ($this->wasTrashbinEnabled) { |
|
| 101 | - $this->appManager->enableApp('files_trashbin'); |
|
| 102 | - } |
|
| 103 | - } |
|
| 104 | - |
|
| 105 | - protected function configure() { |
|
| 106 | - parent::configure(); |
|
| 107 | - |
|
| 108 | - $this->setName('encryption:decrypt-all'); |
|
| 109 | - $this->setDescription('Disable server-side encryption and decrypt all files'); |
|
| 110 | - $this->setHelp( |
|
| 111 | - 'This will disable server-side encryption and decrypt all files for ' |
|
| 112 | - . 'all users if it is supported by your encryption module. ' |
|
| 113 | - . 'Please make sure that no user access his files during this process!' |
|
| 114 | - ); |
|
| 115 | - $this->addArgument( |
|
| 116 | - 'user', |
|
| 117 | - InputArgument::OPTIONAL, |
|
| 118 | - 'user for which you want to decrypt all files (optional)', |
|
| 119 | - '' |
|
| 120 | - ); |
|
| 121 | - } |
|
| 122 | - |
|
| 123 | - protected function execute(InputInterface $input, OutputInterface $output) { |
|
| 124 | - |
|
| 125 | - try { |
|
| 126 | - if ($this->encryptionManager->isEnabled() === true) { |
|
| 127 | - $output->write('Disable server side encryption... '); |
|
| 128 | - $this->config->setAppValue('core', 'encryption_enabled', 'no'); |
|
| 129 | - $output->writeln('done.'); |
|
| 130 | - } else { |
|
| 131 | - $output->writeln('Server side encryption not enabled. Nothing to do.'); |
|
| 132 | - return; |
|
| 133 | - } |
|
| 134 | - |
|
| 135 | - $uid = $input->getArgument('user'); |
|
| 136 | - if ($uid === '') { |
|
| 137 | - $message = 'your Nextcloud'; |
|
| 138 | - } else { |
|
| 139 | - $message = "$uid's account"; |
|
| 140 | - } |
|
| 141 | - |
|
| 142 | - $output->writeln("\n"); |
|
| 143 | - $output->writeln("You are about to start to decrypt all files stored in $message."); |
|
| 144 | - $output->writeln('It will depend on the encryption module and your setup if this is possible.'); |
|
| 145 | - $output->writeln('Depending on the number and size of your files this can take some time'); |
|
| 146 | - $output->writeln('Please make sure that no user access his files during this process!'); |
|
| 147 | - $output->writeln(''); |
|
| 148 | - $question = new ConfirmationQuestion('Do you really want to continue? (y/n) ', false); |
|
| 149 | - if ($this->questionHelper->ask($input, $output, $question)) { |
|
| 150 | - $this->forceMaintenanceAndTrashbin(); |
|
| 151 | - $user = $input->getArgument('user'); |
|
| 152 | - $result = $this->decryptAll->decryptAll($input, $output, $user); |
|
| 153 | - if ($result === false) { |
|
| 154 | - $output->writeln(' aborted.'); |
|
| 155 | - $output->writeln('Server side encryption remains enabled'); |
|
| 156 | - $this->config->setAppValue('core', 'encryption_enabled', 'yes'); |
|
| 157 | - } else if ($uid !== '') { |
|
| 158 | - $output->writeln('Server side encryption remains enabled'); |
|
| 159 | - $this->config->setAppValue('core', 'encryption_enabled', 'yes'); |
|
| 160 | - } |
|
| 161 | - $this->resetMaintenanceAndTrashbin(); |
|
| 162 | - } else { |
|
| 163 | - $output->write('Enable server side encryption... '); |
|
| 164 | - $this->config->setAppValue('core', 'encryption_enabled', 'yes'); |
|
| 165 | - $output->writeln('done.'); |
|
| 166 | - $output->writeln('aborted'); |
|
| 167 | - } |
|
| 168 | - } catch (\Exception $e) { |
|
| 169 | - // enable server side encryption again if something went wrong |
|
| 170 | - $this->config->setAppValue('core', 'encryption_enabled', 'yes'); |
|
| 171 | - $this->resetMaintenanceAndTrashbin(); |
|
| 172 | - throw $e; |
|
| 173 | - } |
|
| 174 | - |
|
| 175 | - } |
|
| 41 | + /** @var IManager */ |
|
| 42 | + protected $encryptionManager; |
|
| 43 | + |
|
| 44 | + /** @var IAppManager */ |
|
| 45 | + protected $appManager; |
|
| 46 | + |
|
| 47 | + /** @var IConfig */ |
|
| 48 | + protected $config; |
|
| 49 | + |
|
| 50 | + /** @var QuestionHelper */ |
|
| 51 | + protected $questionHelper; |
|
| 52 | + |
|
| 53 | + /** @var bool */ |
|
| 54 | + protected $wasTrashbinEnabled; |
|
| 55 | + |
|
| 56 | + /** @var bool */ |
|
| 57 | + protected $wasMaintenanceModeEnabled; |
|
| 58 | + |
|
| 59 | + /** @var \OC\Encryption\DecryptAll */ |
|
| 60 | + protected $decryptAll; |
|
| 61 | + |
|
| 62 | + /** |
|
| 63 | + * @param IManager $encryptionManager |
|
| 64 | + * @param IAppManager $appManager |
|
| 65 | + * @param IConfig $config |
|
| 66 | + * @param \OC\Encryption\DecryptAll $decryptAll |
|
| 67 | + * @param QuestionHelper $questionHelper |
|
| 68 | + */ |
|
| 69 | + public function __construct( |
|
| 70 | + IManager $encryptionManager, |
|
| 71 | + IAppManager $appManager, |
|
| 72 | + IConfig $config, |
|
| 73 | + \OC\Encryption\DecryptAll $decryptAll, |
|
| 74 | + QuestionHelper $questionHelper |
|
| 75 | + ) { |
|
| 76 | + parent::__construct(); |
|
| 77 | + |
|
| 78 | + $this->appManager = $appManager; |
|
| 79 | + $this->encryptionManager = $encryptionManager; |
|
| 80 | + $this->config = $config; |
|
| 81 | + $this->decryptAll = $decryptAll; |
|
| 82 | + $this->questionHelper = $questionHelper; |
|
| 83 | + } |
|
| 84 | + |
|
| 85 | + /** |
|
| 86 | + * Set maintenance mode and disable the trashbin app |
|
| 87 | + */ |
|
| 88 | + protected function forceMaintenanceAndTrashbin() { |
|
| 89 | + $this->wasTrashbinEnabled = $this->appManager->isEnabledForUser('files_trashbin'); |
|
| 90 | + $this->wasMaintenanceModeEnabled = $this->config->getSystemValue('maintenance', false); |
|
| 91 | + $this->config->setSystemValue('maintenance', true); |
|
| 92 | + $this->appManager->disableApp('files_trashbin'); |
|
| 93 | + } |
|
| 94 | + |
|
| 95 | + /** |
|
| 96 | + * Reset the maintenance mode and re-enable the trashbin app |
|
| 97 | + */ |
|
| 98 | + protected function resetMaintenanceAndTrashbin() { |
|
| 99 | + $this->config->setSystemValue('maintenance', $this->wasMaintenanceModeEnabled); |
|
| 100 | + if ($this->wasTrashbinEnabled) { |
|
| 101 | + $this->appManager->enableApp('files_trashbin'); |
|
| 102 | + } |
|
| 103 | + } |
|
| 104 | + |
|
| 105 | + protected function configure() { |
|
| 106 | + parent::configure(); |
|
| 107 | + |
|
| 108 | + $this->setName('encryption:decrypt-all'); |
|
| 109 | + $this->setDescription('Disable server-side encryption and decrypt all files'); |
|
| 110 | + $this->setHelp( |
|
| 111 | + 'This will disable server-side encryption and decrypt all files for ' |
|
| 112 | + . 'all users if it is supported by your encryption module. ' |
|
| 113 | + . 'Please make sure that no user access his files during this process!' |
|
| 114 | + ); |
|
| 115 | + $this->addArgument( |
|
| 116 | + 'user', |
|
| 117 | + InputArgument::OPTIONAL, |
|
| 118 | + 'user for which you want to decrypt all files (optional)', |
|
| 119 | + '' |
|
| 120 | + ); |
|
| 121 | + } |
|
| 122 | + |
|
| 123 | + protected function execute(InputInterface $input, OutputInterface $output) { |
|
| 124 | + |
|
| 125 | + try { |
|
| 126 | + if ($this->encryptionManager->isEnabled() === true) { |
|
| 127 | + $output->write('Disable server side encryption... '); |
|
| 128 | + $this->config->setAppValue('core', 'encryption_enabled', 'no'); |
|
| 129 | + $output->writeln('done.'); |
|
| 130 | + } else { |
|
| 131 | + $output->writeln('Server side encryption not enabled. Nothing to do.'); |
|
| 132 | + return; |
|
| 133 | + } |
|
| 134 | + |
|
| 135 | + $uid = $input->getArgument('user'); |
|
| 136 | + if ($uid === '') { |
|
| 137 | + $message = 'your Nextcloud'; |
|
| 138 | + } else { |
|
| 139 | + $message = "$uid's account"; |
|
| 140 | + } |
|
| 141 | + |
|
| 142 | + $output->writeln("\n"); |
|
| 143 | + $output->writeln("You are about to start to decrypt all files stored in $message."); |
|
| 144 | + $output->writeln('It will depend on the encryption module and your setup if this is possible.'); |
|
| 145 | + $output->writeln('Depending on the number and size of your files this can take some time'); |
|
| 146 | + $output->writeln('Please make sure that no user access his files during this process!'); |
|
| 147 | + $output->writeln(''); |
|
| 148 | + $question = new ConfirmationQuestion('Do you really want to continue? (y/n) ', false); |
|
| 149 | + if ($this->questionHelper->ask($input, $output, $question)) { |
|
| 150 | + $this->forceMaintenanceAndTrashbin(); |
|
| 151 | + $user = $input->getArgument('user'); |
|
| 152 | + $result = $this->decryptAll->decryptAll($input, $output, $user); |
|
| 153 | + if ($result === false) { |
|
| 154 | + $output->writeln(' aborted.'); |
|
| 155 | + $output->writeln('Server side encryption remains enabled'); |
|
| 156 | + $this->config->setAppValue('core', 'encryption_enabled', 'yes'); |
|
| 157 | + } else if ($uid !== '') { |
|
| 158 | + $output->writeln('Server side encryption remains enabled'); |
|
| 159 | + $this->config->setAppValue('core', 'encryption_enabled', 'yes'); |
|
| 160 | + } |
|
| 161 | + $this->resetMaintenanceAndTrashbin(); |
|
| 162 | + } else { |
|
| 163 | + $output->write('Enable server side encryption... '); |
|
| 164 | + $this->config->setAppValue('core', 'encryption_enabled', 'yes'); |
|
| 165 | + $output->writeln('done.'); |
|
| 166 | + $output->writeln('aborted'); |
|
| 167 | + } |
|
| 168 | + } catch (\Exception $e) { |
|
| 169 | + // enable server side encryption again if something went wrong |
|
| 170 | + $this->config->setAppValue('core', 'encryption_enabled', 'yes'); |
|
| 171 | + $this->resetMaintenanceAndTrashbin(); |
|
| 172 | + throw $e; |
|
| 173 | + } |
|
| 174 | + |
|
| 175 | + } |
|
| 176 | 176 | } |
@@ -54,7 +54,7 @@ discard block |
||
| 54 | 54 | ], |
| 55 | 55 | ]; |
| 56 | 56 | |
| 57 | - if($this->appManager->isEnabledForUser('files_sharing')) { |
|
| 57 | + if ($this->appManager->isEnabledForUser('files_sharing')) { |
|
| 58 | 58 | $services['SHARING'] = [ |
| 59 | 59 | 'version' => 1, |
| 60 | 60 | 'endpoints' => [ |
@@ -85,7 +85,7 @@ discard block |
||
| 85 | 85 | } |
| 86 | 86 | } |
| 87 | 87 | |
| 88 | - if($this->appManager->isEnabledForUser('activity')) { |
|
| 88 | + if ($this->appManager->isEnabledForUser('activity')) { |
|
| 89 | 89 | $services['ACTIVITY'] = [ |
| 90 | 90 | 'version' => 1, |
| 91 | 91 | 'endpoints' => [ |
@@ -94,7 +94,7 @@ discard block |
||
| 94 | 94 | ]; |
| 95 | 95 | } |
| 96 | 96 | |
| 97 | - if($this->appManager->isEnabledForUser('provisioning_api')) { |
|
| 97 | + if ($this->appManager->isEnabledForUser('provisioning_api')) { |
|
| 98 | 98 | $services['PROVISIONING'] = [ |
| 99 | 99 | 'version' => 1, |
| 100 | 100 | 'endpoints' => [ |
@@ -24,92 +24,92 @@ |
||
| 24 | 24 | namespace OC\OCS; |
| 25 | 25 | |
| 26 | 26 | class Provider extends \OCP\AppFramework\Controller { |
| 27 | - /** @var \OCP\App\IAppManager */ |
|
| 28 | - private $appManager; |
|
| 27 | + /** @var \OCP\App\IAppManager */ |
|
| 28 | + private $appManager; |
|
| 29 | 29 | |
| 30 | - /** |
|
| 31 | - * @param string $appName |
|
| 32 | - * @param \OCP\IRequest $request |
|
| 33 | - * @param \OCP\App\IAppManager $appManager |
|
| 34 | - */ |
|
| 35 | - public function __construct($appName, |
|
| 36 | - \OCP\IRequest $request, |
|
| 37 | - \OCP\App\IAppManager $appManager) { |
|
| 38 | - parent::__construct($appName, $request); |
|
| 39 | - $this->appManager = $appManager; |
|
| 40 | - } |
|
| 30 | + /** |
|
| 31 | + * @param string $appName |
|
| 32 | + * @param \OCP\IRequest $request |
|
| 33 | + * @param \OCP\App\IAppManager $appManager |
|
| 34 | + */ |
|
| 35 | + public function __construct($appName, |
|
| 36 | + \OCP\IRequest $request, |
|
| 37 | + \OCP\App\IAppManager $appManager) { |
|
| 38 | + parent::__construct($appName, $request); |
|
| 39 | + $this->appManager = $appManager; |
|
| 40 | + } |
|
| 41 | 41 | |
| 42 | - /** |
|
| 43 | - * @return \OCP\AppFramework\Http\JSONResponse |
|
| 44 | - */ |
|
| 45 | - public function buildProviderList() { |
|
| 46 | - $services = [ |
|
| 47 | - 'PRIVATE_DATA' => [ |
|
| 48 | - 'version' => 1, |
|
| 49 | - 'endpoints' => [ |
|
| 50 | - 'store' => '/ocs/v2.php/privatedata/setattribute', |
|
| 51 | - 'read' => '/ocs/v2.php/privatedata/getattribute', |
|
| 52 | - 'delete' => '/ocs/v2.php/privatedata/deleteattribute', |
|
| 53 | - ], |
|
| 54 | - ], |
|
| 55 | - ]; |
|
| 42 | + /** |
|
| 43 | + * @return \OCP\AppFramework\Http\JSONResponse |
|
| 44 | + */ |
|
| 45 | + public function buildProviderList() { |
|
| 46 | + $services = [ |
|
| 47 | + 'PRIVATE_DATA' => [ |
|
| 48 | + 'version' => 1, |
|
| 49 | + 'endpoints' => [ |
|
| 50 | + 'store' => '/ocs/v2.php/privatedata/setattribute', |
|
| 51 | + 'read' => '/ocs/v2.php/privatedata/getattribute', |
|
| 52 | + 'delete' => '/ocs/v2.php/privatedata/deleteattribute', |
|
| 53 | + ], |
|
| 54 | + ], |
|
| 55 | + ]; |
|
| 56 | 56 | |
| 57 | - if($this->appManager->isEnabledForUser('files_sharing')) { |
|
| 58 | - $services['SHARING'] = [ |
|
| 59 | - 'version' => 1, |
|
| 60 | - 'endpoints' => [ |
|
| 61 | - 'share' => '/ocs/v2.php/apps/files_sharing/api/v1/shares', |
|
| 62 | - ], |
|
| 63 | - ]; |
|
| 64 | - $services['FEDERATED_SHARING'] = [ |
|
| 65 | - 'version' => 1, |
|
| 66 | - 'endpoints' => [ |
|
| 67 | - 'share' => '/ocs/v2.php/cloud/shares', |
|
| 68 | - 'webdav' => '/public.php/webdav/', |
|
| 69 | - ], |
|
| 70 | - ]; |
|
| 71 | - } |
|
| 57 | + if($this->appManager->isEnabledForUser('files_sharing')) { |
|
| 58 | + $services['SHARING'] = [ |
|
| 59 | + 'version' => 1, |
|
| 60 | + 'endpoints' => [ |
|
| 61 | + 'share' => '/ocs/v2.php/apps/files_sharing/api/v1/shares', |
|
| 62 | + ], |
|
| 63 | + ]; |
|
| 64 | + $services['FEDERATED_SHARING'] = [ |
|
| 65 | + 'version' => 1, |
|
| 66 | + 'endpoints' => [ |
|
| 67 | + 'share' => '/ocs/v2.php/cloud/shares', |
|
| 68 | + 'webdav' => '/public.php/webdav/', |
|
| 69 | + ], |
|
| 70 | + ]; |
|
| 71 | + } |
|
| 72 | 72 | |
| 73 | - if ($this->appManager->isEnabledForUser('federation')) { |
|
| 74 | - if (isset($services['FEDERATED_SHARING'])) { |
|
| 75 | - $services['FEDERATED_SHARING']['endpoints']['shared-secret'] = '/ocs/v2.php/cloud/shared-secret'; |
|
| 76 | - $services['FEDERATED_SHARING']['endpoints']['system-address-book'] = '/remote.php/dav/addressbooks/system/system/system'; |
|
| 77 | - $services['FEDERATED_SHARING']['endpoints']['carddav-user'] = 'system'; |
|
| 78 | - } else { |
|
| 79 | - $services['FEDERATED_SHARING'] = [ |
|
| 80 | - 'version' => 1, |
|
| 81 | - 'endpoints' => [ |
|
| 82 | - 'shared-secret' => '/ocs/v2.php/cloud/shared-secret', |
|
| 83 | - 'system-address-book' => '/remote.php/dav/addressbooks/system/system/system', |
|
| 84 | - 'carddav-user' => 'system' |
|
| 85 | - ], |
|
| 86 | - ]; |
|
| 87 | - } |
|
| 88 | - } |
|
| 73 | + if ($this->appManager->isEnabledForUser('federation')) { |
|
| 74 | + if (isset($services['FEDERATED_SHARING'])) { |
|
| 75 | + $services['FEDERATED_SHARING']['endpoints']['shared-secret'] = '/ocs/v2.php/cloud/shared-secret'; |
|
| 76 | + $services['FEDERATED_SHARING']['endpoints']['system-address-book'] = '/remote.php/dav/addressbooks/system/system/system'; |
|
| 77 | + $services['FEDERATED_SHARING']['endpoints']['carddav-user'] = 'system'; |
|
| 78 | + } else { |
|
| 79 | + $services['FEDERATED_SHARING'] = [ |
|
| 80 | + 'version' => 1, |
|
| 81 | + 'endpoints' => [ |
|
| 82 | + 'shared-secret' => '/ocs/v2.php/cloud/shared-secret', |
|
| 83 | + 'system-address-book' => '/remote.php/dav/addressbooks/system/system/system', |
|
| 84 | + 'carddav-user' => 'system' |
|
| 85 | + ], |
|
| 86 | + ]; |
|
| 87 | + } |
|
| 88 | + } |
|
| 89 | 89 | |
| 90 | - if($this->appManager->isEnabledForUser('activity')) { |
|
| 91 | - $services['ACTIVITY'] = [ |
|
| 92 | - 'version' => 1, |
|
| 93 | - 'endpoints' => [ |
|
| 94 | - 'list' => '/ocs/v2.php/cloud/activity', |
|
| 95 | - ], |
|
| 96 | - ]; |
|
| 97 | - } |
|
| 90 | + if($this->appManager->isEnabledForUser('activity')) { |
|
| 91 | + $services['ACTIVITY'] = [ |
|
| 92 | + 'version' => 1, |
|
| 93 | + 'endpoints' => [ |
|
| 94 | + 'list' => '/ocs/v2.php/cloud/activity', |
|
| 95 | + ], |
|
| 96 | + ]; |
|
| 97 | + } |
|
| 98 | 98 | |
| 99 | - if($this->appManager->isEnabledForUser('provisioning_api')) { |
|
| 100 | - $services['PROVISIONING'] = [ |
|
| 101 | - 'version' => 1, |
|
| 102 | - 'endpoints' => [ |
|
| 103 | - 'user' => '/ocs/v2.php/cloud/users', |
|
| 104 | - 'groups' => '/ocs/v2.php/cloud/groups', |
|
| 105 | - 'apps' => '/ocs/v2.php/cloud/apps', |
|
| 106 | - ], |
|
| 107 | - ]; |
|
| 108 | - } |
|
| 99 | + if($this->appManager->isEnabledForUser('provisioning_api')) { |
|
| 100 | + $services['PROVISIONING'] = [ |
|
| 101 | + 'version' => 1, |
|
| 102 | + 'endpoints' => [ |
|
| 103 | + 'user' => '/ocs/v2.php/cloud/users', |
|
| 104 | + 'groups' => '/ocs/v2.php/cloud/groups', |
|
| 105 | + 'apps' => '/ocs/v2.php/cloud/apps', |
|
| 106 | + ], |
|
| 107 | + ]; |
|
| 108 | + } |
|
| 109 | 109 | |
| 110 | - return new \OCP\AppFramework\Http\JSONResponse([ |
|
| 111 | - 'version' => 2, |
|
| 112 | - 'services' => $services, |
|
| 113 | - ]); |
|
| 114 | - } |
|
| 110 | + return new \OCP\AppFramework\Http\JSONResponse([ |
|
| 111 | + 'version' => 2, |
|
| 112 | + 'services' => $services, |
|
| 113 | + ]); |
|
| 114 | + } |
|
| 115 | 115 | } |
@@ -30,172 +30,172 @@ |
||
| 30 | 30 | |
| 31 | 31 | class GroupPrincipalBackend implements BackendInterface { |
| 32 | 32 | |
| 33 | - const PRINCIPAL_PREFIX = 'principals/groups'; |
|
| 34 | - |
|
| 35 | - /** @var IGroupManager */ |
|
| 36 | - private $groupManager; |
|
| 37 | - |
|
| 38 | - /** |
|
| 39 | - * @param IGroupManager $IGroupManager |
|
| 40 | - */ |
|
| 41 | - public function __construct(IGroupManager $IGroupManager) { |
|
| 42 | - $this->groupManager = $IGroupManager; |
|
| 43 | - } |
|
| 44 | - |
|
| 45 | - /** |
|
| 46 | - * Returns a list of principals based on a prefix. |
|
| 47 | - * |
|
| 48 | - * This prefix will often contain something like 'principals'. You are only |
|
| 49 | - * expected to return principals that are in this base path. |
|
| 50 | - * |
|
| 51 | - * You are expected to return at least a 'uri' for every user, you can |
|
| 52 | - * return any additional properties if you wish so. Common properties are: |
|
| 53 | - * {DAV:}displayname |
|
| 54 | - * |
|
| 55 | - * @param string $prefixPath |
|
| 56 | - * @return string[] |
|
| 57 | - */ |
|
| 58 | - public function getPrincipalsByPrefix($prefixPath) { |
|
| 59 | - $principals = []; |
|
| 60 | - |
|
| 61 | - if ($prefixPath === self::PRINCIPAL_PREFIX) { |
|
| 62 | - foreach($this->groupManager->search('') as $user) { |
|
| 63 | - $principals[] = $this->groupToPrincipal($user); |
|
| 64 | - } |
|
| 65 | - } |
|
| 66 | - |
|
| 67 | - return $principals; |
|
| 68 | - } |
|
| 69 | - |
|
| 70 | - /** |
|
| 71 | - * Returns a specific principal, specified by it's path. |
|
| 72 | - * The returned structure should be the exact same as from |
|
| 73 | - * getPrincipalsByPrefix. |
|
| 74 | - * |
|
| 75 | - * @param string $path |
|
| 76 | - * @return array |
|
| 77 | - */ |
|
| 78 | - public function getPrincipalByPath($path) { |
|
| 79 | - $elements = explode('/', $path, 3); |
|
| 80 | - if ($elements[0] !== 'principals') { |
|
| 81 | - return null; |
|
| 82 | - } |
|
| 83 | - if ($elements[1] !== 'groups') { |
|
| 84 | - return null; |
|
| 85 | - } |
|
| 86 | - $name = urldecode($elements[2]); |
|
| 87 | - $group = $this->groupManager->get($name); |
|
| 88 | - |
|
| 89 | - if (!is_null($group)) { |
|
| 90 | - return $this->groupToPrincipal($group); |
|
| 91 | - } |
|
| 92 | - |
|
| 93 | - return null; |
|
| 94 | - } |
|
| 95 | - |
|
| 96 | - /** |
|
| 97 | - * Returns the list of members for a group-principal |
|
| 98 | - * |
|
| 99 | - * @param string $principal |
|
| 100 | - * @return string[] |
|
| 101 | - * @throws Exception |
|
| 102 | - */ |
|
| 103 | - public function getGroupMemberSet($principal) { |
|
| 104 | - $elements = explode('/', $principal); |
|
| 105 | - if ($elements[0] !== 'principals') { |
|
| 106 | - return []; |
|
| 107 | - } |
|
| 108 | - if ($elements[1] !== 'groups') { |
|
| 109 | - return []; |
|
| 110 | - } |
|
| 111 | - $name = $elements[2]; |
|
| 112 | - $group = $this->groupManager->get($name); |
|
| 113 | - |
|
| 114 | - if (is_null($group)) { |
|
| 115 | - return []; |
|
| 116 | - } |
|
| 117 | - |
|
| 118 | - return array_map(function($user) { |
|
| 119 | - return $this->userToPrincipal($user); |
|
| 120 | - }, $group->getUsers()); |
|
| 121 | - } |
|
| 122 | - |
|
| 123 | - /** |
|
| 124 | - * Returns the list of groups a principal is a member of |
|
| 125 | - * |
|
| 126 | - * @param string $principal |
|
| 127 | - * @return array |
|
| 128 | - * @throws Exception |
|
| 129 | - */ |
|
| 130 | - public function getGroupMembership($principal) { |
|
| 131 | - return []; |
|
| 132 | - } |
|
| 133 | - |
|
| 134 | - /** |
|
| 135 | - * Updates the list of group members for a group principal. |
|
| 136 | - * |
|
| 137 | - * The principals should be passed as a list of uri's. |
|
| 138 | - * |
|
| 139 | - * @param string $principal |
|
| 140 | - * @param string[] $members |
|
| 141 | - * @throws Exception |
|
| 142 | - */ |
|
| 143 | - public function setGroupMemberSet($principal, array $members) { |
|
| 144 | - throw new Exception('Setting members of the group is not supported yet'); |
|
| 145 | - } |
|
| 146 | - |
|
| 147 | - /** |
|
| 148 | - * @param string $path |
|
| 149 | - * @param PropPatch $propPatch |
|
| 150 | - * @return int |
|
| 151 | - */ |
|
| 152 | - function updatePrincipal($path, PropPatch $propPatch) { |
|
| 153 | - return 0; |
|
| 154 | - } |
|
| 155 | - |
|
| 156 | - /** |
|
| 157 | - * @param string $prefixPath |
|
| 158 | - * @param array $searchProperties |
|
| 159 | - * @param string $test |
|
| 160 | - * @return array |
|
| 161 | - */ |
|
| 162 | - function searchPrincipals($prefixPath, array $searchProperties, $test = 'allof') { |
|
| 163 | - return []; |
|
| 164 | - } |
|
| 165 | - |
|
| 166 | - /** |
|
| 167 | - * @param string $uri |
|
| 168 | - * @param string $principalPrefix |
|
| 169 | - * @return string |
|
| 170 | - */ |
|
| 171 | - function findByUri($uri, $principalPrefix) { |
|
| 172 | - return ''; |
|
| 173 | - } |
|
| 174 | - |
|
| 175 | - /** |
|
| 176 | - * @param IGroup $group |
|
| 177 | - * @return array |
|
| 178 | - */ |
|
| 179 | - protected function groupToPrincipal($group) { |
|
| 180 | - $groupId = $group->getGID(); |
|
| 181 | - $principal = [ |
|
| 182 | - 'uri' => 'principals/groups/' . urlencode($groupId), |
|
| 183 | - '{DAV:}displayname' => $groupId, |
|
| 184 | - ]; |
|
| 185 | - |
|
| 186 | - return $principal; |
|
| 187 | - } |
|
| 188 | - |
|
| 189 | - /** |
|
| 190 | - * @param IUser $user |
|
| 191 | - * @return array |
|
| 192 | - */ |
|
| 193 | - protected function userToPrincipal($user) { |
|
| 194 | - $principal = [ |
|
| 195 | - 'uri' => 'principals/users/' . $user->getUID(), |
|
| 196 | - '{DAV:}displayname' => $user->getDisplayName(), |
|
| 197 | - ]; |
|
| 198 | - |
|
| 199 | - return $principal; |
|
| 200 | - } |
|
| 33 | + const PRINCIPAL_PREFIX = 'principals/groups'; |
|
| 34 | + |
|
| 35 | + /** @var IGroupManager */ |
|
| 36 | + private $groupManager; |
|
| 37 | + |
|
| 38 | + /** |
|
| 39 | + * @param IGroupManager $IGroupManager |
|
| 40 | + */ |
|
| 41 | + public function __construct(IGroupManager $IGroupManager) { |
|
| 42 | + $this->groupManager = $IGroupManager; |
|
| 43 | + } |
|
| 44 | + |
|
| 45 | + /** |
|
| 46 | + * Returns a list of principals based on a prefix. |
|
| 47 | + * |
|
| 48 | + * This prefix will often contain something like 'principals'. You are only |
|
| 49 | + * expected to return principals that are in this base path. |
|
| 50 | + * |
|
| 51 | + * You are expected to return at least a 'uri' for every user, you can |
|
| 52 | + * return any additional properties if you wish so. Common properties are: |
|
| 53 | + * {DAV:}displayname |
|
| 54 | + * |
|
| 55 | + * @param string $prefixPath |
|
| 56 | + * @return string[] |
|
| 57 | + */ |
|
| 58 | + public function getPrincipalsByPrefix($prefixPath) { |
|
| 59 | + $principals = []; |
|
| 60 | + |
|
| 61 | + if ($prefixPath === self::PRINCIPAL_PREFIX) { |
|
| 62 | + foreach($this->groupManager->search('') as $user) { |
|
| 63 | + $principals[] = $this->groupToPrincipal($user); |
|
| 64 | + } |
|
| 65 | + } |
|
| 66 | + |
|
| 67 | + return $principals; |
|
| 68 | + } |
|
| 69 | + |
|
| 70 | + /** |
|
| 71 | + * Returns a specific principal, specified by it's path. |
|
| 72 | + * The returned structure should be the exact same as from |
|
| 73 | + * getPrincipalsByPrefix. |
|
| 74 | + * |
|
| 75 | + * @param string $path |
|
| 76 | + * @return array |
|
| 77 | + */ |
|
| 78 | + public function getPrincipalByPath($path) { |
|
| 79 | + $elements = explode('/', $path, 3); |
|
| 80 | + if ($elements[0] !== 'principals') { |
|
| 81 | + return null; |
|
| 82 | + } |
|
| 83 | + if ($elements[1] !== 'groups') { |
|
| 84 | + return null; |
|
| 85 | + } |
|
| 86 | + $name = urldecode($elements[2]); |
|
| 87 | + $group = $this->groupManager->get($name); |
|
| 88 | + |
|
| 89 | + if (!is_null($group)) { |
|
| 90 | + return $this->groupToPrincipal($group); |
|
| 91 | + } |
|
| 92 | + |
|
| 93 | + return null; |
|
| 94 | + } |
|
| 95 | + |
|
| 96 | + /** |
|
| 97 | + * Returns the list of members for a group-principal |
|
| 98 | + * |
|
| 99 | + * @param string $principal |
|
| 100 | + * @return string[] |
|
| 101 | + * @throws Exception |
|
| 102 | + */ |
|
| 103 | + public function getGroupMemberSet($principal) { |
|
| 104 | + $elements = explode('/', $principal); |
|
| 105 | + if ($elements[0] !== 'principals') { |
|
| 106 | + return []; |
|
| 107 | + } |
|
| 108 | + if ($elements[1] !== 'groups') { |
|
| 109 | + return []; |
|
| 110 | + } |
|
| 111 | + $name = $elements[2]; |
|
| 112 | + $group = $this->groupManager->get($name); |
|
| 113 | + |
|
| 114 | + if (is_null($group)) { |
|
| 115 | + return []; |
|
| 116 | + } |
|
| 117 | + |
|
| 118 | + return array_map(function($user) { |
|
| 119 | + return $this->userToPrincipal($user); |
|
| 120 | + }, $group->getUsers()); |
|
| 121 | + } |
|
| 122 | + |
|
| 123 | + /** |
|
| 124 | + * Returns the list of groups a principal is a member of |
|
| 125 | + * |
|
| 126 | + * @param string $principal |
|
| 127 | + * @return array |
|
| 128 | + * @throws Exception |
|
| 129 | + */ |
|
| 130 | + public function getGroupMembership($principal) { |
|
| 131 | + return []; |
|
| 132 | + } |
|
| 133 | + |
|
| 134 | + /** |
|
| 135 | + * Updates the list of group members for a group principal. |
|
| 136 | + * |
|
| 137 | + * The principals should be passed as a list of uri's. |
|
| 138 | + * |
|
| 139 | + * @param string $principal |
|
| 140 | + * @param string[] $members |
|
| 141 | + * @throws Exception |
|
| 142 | + */ |
|
| 143 | + public function setGroupMemberSet($principal, array $members) { |
|
| 144 | + throw new Exception('Setting members of the group is not supported yet'); |
|
| 145 | + } |
|
| 146 | + |
|
| 147 | + /** |
|
| 148 | + * @param string $path |
|
| 149 | + * @param PropPatch $propPatch |
|
| 150 | + * @return int |
|
| 151 | + */ |
|
| 152 | + function updatePrincipal($path, PropPatch $propPatch) { |
|
| 153 | + return 0; |
|
| 154 | + } |
|
| 155 | + |
|
| 156 | + /** |
|
| 157 | + * @param string $prefixPath |
|
| 158 | + * @param array $searchProperties |
|
| 159 | + * @param string $test |
|
| 160 | + * @return array |
|
| 161 | + */ |
|
| 162 | + function searchPrincipals($prefixPath, array $searchProperties, $test = 'allof') { |
|
| 163 | + return []; |
|
| 164 | + } |
|
| 165 | + |
|
| 166 | + /** |
|
| 167 | + * @param string $uri |
|
| 168 | + * @param string $principalPrefix |
|
| 169 | + * @return string |
|
| 170 | + */ |
|
| 171 | + function findByUri($uri, $principalPrefix) { |
|
| 172 | + return ''; |
|
| 173 | + } |
|
| 174 | + |
|
| 175 | + /** |
|
| 176 | + * @param IGroup $group |
|
| 177 | + * @return array |
|
| 178 | + */ |
|
| 179 | + protected function groupToPrincipal($group) { |
|
| 180 | + $groupId = $group->getGID(); |
|
| 181 | + $principal = [ |
|
| 182 | + 'uri' => 'principals/groups/' . urlencode($groupId), |
|
| 183 | + '{DAV:}displayname' => $groupId, |
|
| 184 | + ]; |
|
| 185 | + |
|
| 186 | + return $principal; |
|
| 187 | + } |
|
| 188 | + |
|
| 189 | + /** |
|
| 190 | + * @param IUser $user |
|
| 191 | + * @return array |
|
| 192 | + */ |
|
| 193 | + protected function userToPrincipal($user) { |
|
| 194 | + $principal = [ |
|
| 195 | + 'uri' => 'principals/users/' . $user->getUID(), |
|
| 196 | + '{DAV:}displayname' => $user->getDisplayName(), |
|
| 197 | + ]; |
|
| 198 | + |
|
| 199 | + return $principal; |
|
| 200 | + } |
|
| 201 | 201 | } |
@@ -59,7 +59,7 @@ discard block |
||
| 59 | 59 | $principals = []; |
| 60 | 60 | |
| 61 | 61 | if ($prefixPath === self::PRINCIPAL_PREFIX) { |
| 62 | - foreach($this->groupManager->search('') as $user) { |
|
| 62 | + foreach ($this->groupManager->search('') as $user) { |
|
| 63 | 63 | $principals[] = $this->groupToPrincipal($user); |
| 64 | 64 | } |
| 65 | 65 | } |
@@ -76,7 +76,7 @@ discard block |
||
| 76 | 76 | * @return array |
| 77 | 77 | */ |
| 78 | 78 | public function getPrincipalByPath($path) { |
| 79 | - $elements = explode('/', $path, 3); |
|
| 79 | + $elements = explode('/', $path, 3); |
|
| 80 | 80 | if ($elements[0] !== 'principals') { |
| 81 | 81 | return null; |
| 82 | 82 | } |
@@ -179,7 +179,7 @@ discard block |
||
| 179 | 179 | protected function groupToPrincipal($group) { |
| 180 | 180 | $groupId = $group->getGID(); |
| 181 | 181 | $principal = [ |
| 182 | - 'uri' => 'principals/groups/' . urlencode($groupId), |
|
| 182 | + 'uri' => 'principals/groups/'.urlencode($groupId), |
|
| 183 | 183 | '{DAV:}displayname' => $groupId, |
| 184 | 184 | ]; |
| 185 | 185 | |
@@ -192,7 +192,7 @@ discard block |
||
| 192 | 192 | */ |
| 193 | 193 | protected function userToPrincipal($user) { |
| 194 | 194 | $principal = [ |
| 195 | - 'uri' => 'principals/users/' . $user->getUID(), |
|
| 195 | + 'uri' => 'principals/users/'.$user->getUID(), |
|
| 196 | 196 | '{DAV:}displayname' => $user->getDisplayName(), |
| 197 | 197 | ]; |
| 198 | 198 | |
@@ -14,7 +14,7 @@ |
||
| 14 | 14 | <div class="warning"> |
| 15 | 15 | <h2 class="two-factor-header"><?php p($provider->getDisplayName()); ?></h2> |
| 16 | 16 | <?php if ($error): ?> |
| 17 | - <?php if($error_message): ?> |
|
| 17 | + <?php if ($error_message): ?> |
|
| 18 | 18 | <p><strong><?php p($error_message); ?></strong></p> |
| 19 | 19 | <?php else: ?> |
| 20 | 20 | <p><strong><?php p($l->t('Error while validating your second factor')); ?></strong></p> |
@@ -16,8 +16,11 @@ |
||
| 16 | 16 | <?php if ($error): ?> |
| 17 | 17 | <?php if($error_message): ?> |
| 18 | 18 | <p><strong><?php p($error_message); ?></strong></p> |
| 19 | - <?php else: ?> |
|
| 20 | - <p><strong><?php p($l->t('Error while validating your second factor')); ?></strong></p> |
|
| 19 | + <?php else { |
|
| 20 | + : ?> |
|
| 21 | + <p><strong><?php p($l->t('Error while validating your second factor')); |
|
| 22 | +} |
|
| 23 | +?></strong></p> |
|
| 21 | 24 | <?php endif; ?> |
| 22 | 25 | <?php endif; ?> |
| 23 | 26 | <?php print_unescaped($template); ?> |
@@ -25,11 +25,11 @@ |
||
| 25 | 25 | <a class="button" href="<?php print_unescaped($_['logout_url']); ?>"><?php p($l->t('Cancel log in')) ?></a> |
| 26 | 26 | <?php if (!is_null($_['backupProvider'])): ?> |
| 27 | 27 | <a class="button" href="<?php p(\OC::$server->getURLGenerator()->linkToRoute('core.TwoFactorChallenge.showChallenge', |
| 28 | - [ |
|
| 29 | - 'challengeProviderId' => $_['backupProvider']->getId(), |
|
| 30 | - 'redirect_url' => $_['redirect_url'], |
|
| 31 | - ] |
|
| 32 | - )) ?>"><?php p($l->t('Use backup code')) ?></a> |
|
| 28 | + [ |
|
| 29 | + 'challengeProviderId' => $_['backupProvider']->getId(), |
|
| 30 | + 'redirect_url' => $_['redirect_url'], |
|
| 31 | + ] |
|
| 32 | + )) ?>"><?php p($l->t('Use backup code')) ?></a> |
|
| 33 | 33 | <?php endif; ?> |
| 34 | 34 | </p> |
| 35 | 35 | </div> |
@@ -23,56 +23,56 @@ |
||
| 23 | 23 | |
| 24 | 24 | class Application extends \OCP\AppFramework\App { |
| 25 | 25 | |
| 26 | - public function __construct() { |
|
| 27 | - parent::__construct('workflowengine'); |
|
| 26 | + public function __construct() { |
|
| 27 | + parent::__construct('workflowengine'); |
|
| 28 | 28 | |
| 29 | - $this->getContainer()->registerAlias('FlowOperationsController', 'OCA\WorkflowEngine\Controller\FlowOperations'); |
|
| 30 | - $this->getContainer()->registerAlias('RequestTimeController', 'OCA\WorkflowEngine\Controller\RequestTime'); |
|
| 31 | - } |
|
| 29 | + $this->getContainer()->registerAlias('FlowOperationsController', 'OCA\WorkflowEngine\Controller\FlowOperations'); |
|
| 30 | + $this->getContainer()->registerAlias('RequestTimeController', 'OCA\WorkflowEngine\Controller\RequestTime'); |
|
| 31 | + } |
|
| 32 | 32 | |
| 33 | - /** |
|
| 34 | - * Register all hooks and listeners |
|
| 35 | - */ |
|
| 36 | - public function registerHooksAndListeners() { |
|
| 37 | - $dispatcher = $this->getContainer()->getServer()->getEventDispatcher(); |
|
| 38 | - $dispatcher->addListener( |
|
| 39 | - 'OCP\WorkflowEngine::loadAdditionalSettingScripts', |
|
| 40 | - function() { |
|
| 41 | - if (!function_exists('style')) { |
|
| 42 | - // This is hacky, but we need to load the template class |
|
| 43 | - class_exists('OCP\Template', true); |
|
| 44 | - } |
|
| 33 | + /** |
|
| 34 | + * Register all hooks and listeners |
|
| 35 | + */ |
|
| 36 | + public function registerHooksAndListeners() { |
|
| 37 | + $dispatcher = $this->getContainer()->getServer()->getEventDispatcher(); |
|
| 38 | + $dispatcher->addListener( |
|
| 39 | + 'OCP\WorkflowEngine::loadAdditionalSettingScripts', |
|
| 40 | + function() { |
|
| 41 | + if (!function_exists('style')) { |
|
| 42 | + // This is hacky, but we need to load the template class |
|
| 43 | + class_exists('OCP\Template', true); |
|
| 44 | + } |
|
| 45 | 45 | |
| 46 | - style('workflowengine', [ |
|
| 47 | - 'admin', |
|
| 48 | - ]); |
|
| 46 | + style('workflowengine', [ |
|
| 47 | + 'admin', |
|
| 48 | + ]); |
|
| 49 | 49 | |
| 50 | - script('core', [ |
|
| 51 | - 'files/fileinfo', |
|
| 52 | - 'files/client', |
|
| 53 | - 'oc-backbone-webdav', |
|
| 54 | - 'systemtags/systemtags', |
|
| 55 | - 'systemtags/systemtagmodel', |
|
| 56 | - 'systemtags/systemtagscollection', |
|
| 57 | - ]); |
|
| 50 | + script('core', [ |
|
| 51 | + 'files/fileinfo', |
|
| 52 | + 'files/client', |
|
| 53 | + 'oc-backbone-webdav', |
|
| 54 | + 'systemtags/systemtags', |
|
| 55 | + 'systemtags/systemtagmodel', |
|
| 56 | + 'systemtags/systemtagscollection', |
|
| 57 | + ]); |
|
| 58 | 58 | |
| 59 | - vendor_script('jsTimezoneDetect/jstz'); |
|
| 59 | + vendor_script('jsTimezoneDetect/jstz'); |
|
| 60 | 60 | |
| 61 | - script('workflowengine', [ |
|
| 62 | - 'admin', |
|
| 61 | + script('workflowengine', [ |
|
| 62 | + 'admin', |
|
| 63 | 63 | |
| 64 | - // Check plugins |
|
| 65 | - 'filemimetypeplugin', |
|
| 66 | - 'filesizeplugin', |
|
| 67 | - 'filesystemtagsplugin', |
|
| 68 | - 'requestremoteaddressplugin', |
|
| 69 | - 'requesttimeplugin', |
|
| 70 | - 'requesturlplugin', |
|
| 71 | - 'requestuseragentplugin', |
|
| 72 | - 'usergroupmembershipplugin', |
|
| 73 | - ]); |
|
| 74 | - }, |
|
| 75 | - -100 |
|
| 76 | - ); |
|
| 77 | - } |
|
| 64 | + // Check plugins |
|
| 65 | + 'filemimetypeplugin', |
|
| 66 | + 'filesizeplugin', |
|
| 67 | + 'filesystemtagsplugin', |
|
| 68 | + 'requestremoteaddressplugin', |
|
| 69 | + 'requesttimeplugin', |
|
| 70 | + 'requesturlplugin', |
|
| 71 | + 'requestuseragentplugin', |
|
| 72 | + 'usergroupmembershipplugin', |
|
| 73 | + ]); |
|
| 74 | + }, |
|
| 75 | + -100 |
|
| 76 | + ); |
|
| 77 | + } |
|
| 78 | 78 | } |
@@ -88,7 +88,7 @@ |
||
| 88 | 88 | if (strpos($path, '/webdav/') === 0) { |
| 89 | 89 | $path = substr($path, strlen('/webdav')); |
| 90 | 90 | } |
| 91 | - $path = $this->path . $path; |
|
| 91 | + $path = $this->path.$path; |
|
| 92 | 92 | $this->mimeType[$this->storage->getId()][$path] = $this->mimeTypeDetector->detectPath($path); |
| 93 | 93 | return $this->mimeType[$this->storage->getId()][$path]; |
| 94 | 94 | } |
@@ -29,159 +29,159 @@ |
||
| 29 | 29 | |
| 30 | 30 | class FileMimeType extends AbstractStringCheck { |
| 31 | 31 | |
| 32 | - /** @var array */ |
|
| 33 | - protected $mimeType; |
|
| 34 | - |
|
| 35 | - /** @var IRequest */ |
|
| 36 | - protected $request; |
|
| 37 | - |
|
| 38 | - /** @var IMimeTypeDetector */ |
|
| 39 | - protected $mimeTypeDetector; |
|
| 40 | - |
|
| 41 | - /** @var IStorage */ |
|
| 42 | - protected $storage; |
|
| 43 | - |
|
| 44 | - /** @var string */ |
|
| 45 | - protected $path; |
|
| 46 | - |
|
| 47 | - /** |
|
| 48 | - * @param IL10N $l |
|
| 49 | - * @param IRequest $request |
|
| 50 | - * @param IMimeTypeDetector $mimeTypeDetector |
|
| 51 | - */ |
|
| 52 | - public function __construct(IL10N $l, IRequest $request, IMimeTypeDetector $mimeTypeDetector) { |
|
| 53 | - parent::__construct($l); |
|
| 54 | - $this->request = $request; |
|
| 55 | - $this->mimeTypeDetector = $mimeTypeDetector; |
|
| 56 | - } |
|
| 57 | - |
|
| 58 | - /** |
|
| 59 | - * @param IStorage $storage |
|
| 60 | - * @param string $path |
|
| 61 | - */ |
|
| 62 | - public function setFileInfo(IStorage $storage, $path) { |
|
| 63 | - $this->storage = $storage; |
|
| 64 | - $this->path = $path; |
|
| 65 | - if (!isset($this->mimeType[$this->storage->getId()][$this->path]) |
|
| 66 | - || $this->mimeType[$this->storage->getId()][$this->path] === '') { |
|
| 67 | - $this->mimeType[$this->storage->getId()][$this->path] = null; |
|
| 68 | - } |
|
| 69 | - } |
|
| 70 | - |
|
| 71 | - /** |
|
| 72 | - * @return string |
|
| 73 | - */ |
|
| 74 | - protected function getActualValue() { |
|
| 75 | - if ($this->mimeType[$this->storage->getId()][$this->path] !== null) { |
|
| 76 | - return $this->mimeType[$this->storage->getId()][$this->path]; |
|
| 77 | - } |
|
| 78 | - |
|
| 79 | - if ($this->isWebDAVRequest()) { |
|
| 80 | - // Creating a folder |
|
| 81 | - if ($this->request->getMethod() === 'MKCOL') { |
|
| 82 | - $this->mimeType[$this->storage->getId()][$this->path] = 'httpd/unix-directory'; |
|
| 83 | - return $this->mimeType[$this->storage->getId()][$this->path]; |
|
| 84 | - } |
|
| 85 | - |
|
| 86 | - if ($this->request->getMethod() === 'PUT') { |
|
| 87 | - $path = $this->request->getPathInfo(); |
|
| 88 | - $this->mimeType[$this->storage->getId()][$this->path] = $this->mimeTypeDetector->detectPath($path); |
|
| 89 | - return $this->mimeType[$this->storage->getId()][$this->path]; |
|
| 90 | - } |
|
| 91 | - } else if ($this->isPublicWebDAVRequest()) { |
|
| 92 | - if ($this->request->getMethod() === 'PUT') { |
|
| 93 | - $path = $this->request->getPathInfo(); |
|
| 94 | - if (strpos($path, '/webdav/') === 0) { |
|
| 95 | - $path = substr($path, strlen('/webdav')); |
|
| 96 | - } |
|
| 97 | - $path = $this->path . $path; |
|
| 98 | - $this->mimeType[$this->storage->getId()][$path] = $this->mimeTypeDetector->detectPath($path); |
|
| 99 | - return $this->mimeType[$this->storage->getId()][$path]; |
|
| 100 | - } |
|
| 101 | - } |
|
| 102 | - |
|
| 103 | - if (in_array($this->request->getMethod(), ['POST', 'PUT'])) { |
|
| 104 | - $files = $this->request->getUploadedFile('files'); |
|
| 105 | - if (isset($files['type'][0])) { |
|
| 106 | - $mimeType = $files['type'][0]; |
|
| 107 | - if ($this->mimeType === 'application/octet-stream') { |
|
| 108 | - // Maybe not... |
|
| 109 | - $mimeTypeTest = $this->mimeTypeDetector->detectPath($files['name'][0]); |
|
| 110 | - if ($mimeTypeTest !== 'application/octet-stream' && $mimeTypeTest !== false) { |
|
| 111 | - $mimeType = $mimeTypeTest; |
|
| 112 | - } else { |
|
| 113 | - $mimeTypeTest = $this->mimeTypeDetector->detect($files['tmp_name'][0]); |
|
| 114 | - if ($mimeTypeTest !== 'application/octet-stream' && $mimeTypeTest !== false) { |
|
| 115 | - $mimeType = $mimeTypeTest; |
|
| 116 | - } |
|
| 117 | - } |
|
| 118 | - } |
|
| 119 | - $this->mimeType[$this->storage->getId()][$this->path] = $mimeType; |
|
| 120 | - return $mimeType; |
|
| 121 | - } |
|
| 122 | - } |
|
| 123 | - |
|
| 124 | - $this->mimeType[$this->storage->getId()][$this->path] = $this->storage->getMimeType($this->path); |
|
| 125 | - if ($this->mimeType[$this->storage->getId()][$this->path] === 'application/octet-stream') { |
|
| 126 | - $this->mimeType[$this->storage->getId()][$this->path] = $this->detectMimetypeFromPath(); |
|
| 127 | - } |
|
| 128 | - |
|
| 129 | - return $this->mimeType[$this->storage->getId()][$this->path]; |
|
| 130 | - } |
|
| 131 | - |
|
| 132 | - /** |
|
| 133 | - * @return string |
|
| 134 | - */ |
|
| 135 | - protected function detectMimetypeFromPath() { |
|
| 136 | - $mimeType = $this->mimeTypeDetector->detectPath($this->path); |
|
| 137 | - if ($mimeType !== 'application/octet-stream' && $mimeType !== false) { |
|
| 138 | - return $mimeType; |
|
| 139 | - } |
|
| 140 | - |
|
| 141 | - if ($this->storage->instanceOfStorage('\OC\Files\Storage\Local') |
|
| 142 | - || $this->storage->instanceOfStorage('\OC\Files\Storage\Home') |
|
| 143 | - || $this->storage->instanceOfStorage('\OC\Files\ObjectStore\HomeObjectStoreStorage')) { |
|
| 144 | - $localFile = $this->storage->getLocalFile($this->path); |
|
| 145 | - if ($localFile !== false) { |
|
| 146 | - $mimeType = $this->mimeTypeDetector->detect($localFile); |
|
| 147 | - if ($mimeType !== false) { |
|
| 148 | - return $mimeType; |
|
| 149 | - } |
|
| 150 | - } |
|
| 151 | - |
|
| 152 | - return 'application/octet-stream'; |
|
| 153 | - } else { |
|
| 154 | - $handle = $this->storage->fopen($this->path, 'r'); |
|
| 155 | - $data = fread($handle, 8024); |
|
| 156 | - fclose($handle); |
|
| 157 | - $mimeType = $this->mimeTypeDetector->detectString($data); |
|
| 158 | - if ($mimeType !== false) { |
|
| 159 | - return $mimeType; |
|
| 160 | - } |
|
| 161 | - |
|
| 162 | - return 'application/octet-stream'; |
|
| 163 | - } |
|
| 164 | - } |
|
| 165 | - |
|
| 166 | - /** |
|
| 167 | - * @return bool |
|
| 168 | - */ |
|
| 169 | - protected function isWebDAVRequest() { |
|
| 170 | - return substr($this->request->getScriptName(), 0 - strlen('/remote.php')) === '/remote.php' && ( |
|
| 171 | - $this->request->getPathInfo() === '/webdav' || |
|
| 172 | - strpos($this->request->getPathInfo(), '/webdav/') === 0 || |
|
| 173 | - $this->request->getPathInfo() === '/dav/files' || |
|
| 174 | - strpos($this->request->getPathInfo(), '/dav/files/') === 0 |
|
| 175 | - ); |
|
| 176 | - } |
|
| 177 | - |
|
| 178 | - /** |
|
| 179 | - * @return bool |
|
| 180 | - */ |
|
| 181 | - protected function isPublicWebDAVRequest() { |
|
| 182 | - return substr($this->request->getScriptName(), 0 - strlen('/public.php')) === '/public.php' && ( |
|
| 183 | - $this->request->getPathInfo() === '/webdav' || |
|
| 184 | - strpos($this->request->getPathInfo(), '/webdav/') === 0 |
|
| 185 | - ); |
|
| 186 | - } |
|
| 32 | + /** @var array */ |
|
| 33 | + protected $mimeType; |
|
| 34 | + |
|
| 35 | + /** @var IRequest */ |
|
| 36 | + protected $request; |
|
| 37 | + |
|
| 38 | + /** @var IMimeTypeDetector */ |
|
| 39 | + protected $mimeTypeDetector; |
|
| 40 | + |
|
| 41 | + /** @var IStorage */ |
|
| 42 | + protected $storage; |
|
| 43 | + |
|
| 44 | + /** @var string */ |
|
| 45 | + protected $path; |
|
| 46 | + |
|
| 47 | + /** |
|
| 48 | + * @param IL10N $l |
|
| 49 | + * @param IRequest $request |
|
| 50 | + * @param IMimeTypeDetector $mimeTypeDetector |
|
| 51 | + */ |
|
| 52 | + public function __construct(IL10N $l, IRequest $request, IMimeTypeDetector $mimeTypeDetector) { |
|
| 53 | + parent::__construct($l); |
|
| 54 | + $this->request = $request; |
|
| 55 | + $this->mimeTypeDetector = $mimeTypeDetector; |
|
| 56 | + } |
|
| 57 | + |
|
| 58 | + /** |
|
| 59 | + * @param IStorage $storage |
|
| 60 | + * @param string $path |
|
| 61 | + */ |
|
| 62 | + public function setFileInfo(IStorage $storage, $path) { |
|
| 63 | + $this->storage = $storage; |
|
| 64 | + $this->path = $path; |
|
| 65 | + if (!isset($this->mimeType[$this->storage->getId()][$this->path]) |
|
| 66 | + || $this->mimeType[$this->storage->getId()][$this->path] === '') { |
|
| 67 | + $this->mimeType[$this->storage->getId()][$this->path] = null; |
|
| 68 | + } |
|
| 69 | + } |
|
| 70 | + |
|
| 71 | + /** |
|
| 72 | + * @return string |
|
| 73 | + */ |
|
| 74 | + protected function getActualValue() { |
|
| 75 | + if ($this->mimeType[$this->storage->getId()][$this->path] !== null) { |
|
| 76 | + return $this->mimeType[$this->storage->getId()][$this->path]; |
|
| 77 | + } |
|
| 78 | + |
|
| 79 | + if ($this->isWebDAVRequest()) { |
|
| 80 | + // Creating a folder |
|
| 81 | + if ($this->request->getMethod() === 'MKCOL') { |
|
| 82 | + $this->mimeType[$this->storage->getId()][$this->path] = 'httpd/unix-directory'; |
|
| 83 | + return $this->mimeType[$this->storage->getId()][$this->path]; |
|
| 84 | + } |
|
| 85 | + |
|
| 86 | + if ($this->request->getMethod() === 'PUT') { |
|
| 87 | + $path = $this->request->getPathInfo(); |
|
| 88 | + $this->mimeType[$this->storage->getId()][$this->path] = $this->mimeTypeDetector->detectPath($path); |
|
| 89 | + return $this->mimeType[$this->storage->getId()][$this->path]; |
|
| 90 | + } |
|
| 91 | + } else if ($this->isPublicWebDAVRequest()) { |
|
| 92 | + if ($this->request->getMethod() === 'PUT') { |
|
| 93 | + $path = $this->request->getPathInfo(); |
|
| 94 | + if (strpos($path, '/webdav/') === 0) { |
|
| 95 | + $path = substr($path, strlen('/webdav')); |
|
| 96 | + } |
|
| 97 | + $path = $this->path . $path; |
|
| 98 | + $this->mimeType[$this->storage->getId()][$path] = $this->mimeTypeDetector->detectPath($path); |
|
| 99 | + return $this->mimeType[$this->storage->getId()][$path]; |
|
| 100 | + } |
|
| 101 | + } |
|
| 102 | + |
|
| 103 | + if (in_array($this->request->getMethod(), ['POST', 'PUT'])) { |
|
| 104 | + $files = $this->request->getUploadedFile('files'); |
|
| 105 | + if (isset($files['type'][0])) { |
|
| 106 | + $mimeType = $files['type'][0]; |
|
| 107 | + if ($this->mimeType === 'application/octet-stream') { |
|
| 108 | + // Maybe not... |
|
| 109 | + $mimeTypeTest = $this->mimeTypeDetector->detectPath($files['name'][0]); |
|
| 110 | + if ($mimeTypeTest !== 'application/octet-stream' && $mimeTypeTest !== false) { |
|
| 111 | + $mimeType = $mimeTypeTest; |
|
| 112 | + } else { |
|
| 113 | + $mimeTypeTest = $this->mimeTypeDetector->detect($files['tmp_name'][0]); |
|
| 114 | + if ($mimeTypeTest !== 'application/octet-stream' && $mimeTypeTest !== false) { |
|
| 115 | + $mimeType = $mimeTypeTest; |
|
| 116 | + } |
|
| 117 | + } |
|
| 118 | + } |
|
| 119 | + $this->mimeType[$this->storage->getId()][$this->path] = $mimeType; |
|
| 120 | + return $mimeType; |
|
| 121 | + } |
|
| 122 | + } |
|
| 123 | + |
|
| 124 | + $this->mimeType[$this->storage->getId()][$this->path] = $this->storage->getMimeType($this->path); |
|
| 125 | + if ($this->mimeType[$this->storage->getId()][$this->path] === 'application/octet-stream') { |
|
| 126 | + $this->mimeType[$this->storage->getId()][$this->path] = $this->detectMimetypeFromPath(); |
|
| 127 | + } |
|
| 128 | + |
|
| 129 | + return $this->mimeType[$this->storage->getId()][$this->path]; |
|
| 130 | + } |
|
| 131 | + |
|
| 132 | + /** |
|
| 133 | + * @return string |
|
| 134 | + */ |
|
| 135 | + protected function detectMimetypeFromPath() { |
|
| 136 | + $mimeType = $this->mimeTypeDetector->detectPath($this->path); |
|
| 137 | + if ($mimeType !== 'application/octet-stream' && $mimeType !== false) { |
|
| 138 | + return $mimeType; |
|
| 139 | + } |
|
| 140 | + |
|
| 141 | + if ($this->storage->instanceOfStorage('\OC\Files\Storage\Local') |
|
| 142 | + || $this->storage->instanceOfStorage('\OC\Files\Storage\Home') |
|
| 143 | + || $this->storage->instanceOfStorage('\OC\Files\ObjectStore\HomeObjectStoreStorage')) { |
|
| 144 | + $localFile = $this->storage->getLocalFile($this->path); |
|
| 145 | + if ($localFile !== false) { |
|
| 146 | + $mimeType = $this->mimeTypeDetector->detect($localFile); |
|
| 147 | + if ($mimeType !== false) { |
|
| 148 | + return $mimeType; |
|
| 149 | + } |
|
| 150 | + } |
|
| 151 | + |
|
| 152 | + return 'application/octet-stream'; |
|
| 153 | + } else { |
|
| 154 | + $handle = $this->storage->fopen($this->path, 'r'); |
|
| 155 | + $data = fread($handle, 8024); |
|
| 156 | + fclose($handle); |
|
| 157 | + $mimeType = $this->mimeTypeDetector->detectString($data); |
|
| 158 | + if ($mimeType !== false) { |
|
| 159 | + return $mimeType; |
|
| 160 | + } |
|
| 161 | + |
|
| 162 | + return 'application/octet-stream'; |
|
| 163 | + } |
|
| 164 | + } |
|
| 165 | + |
|
| 166 | + /** |
|
| 167 | + * @return bool |
|
| 168 | + */ |
|
| 169 | + protected function isWebDAVRequest() { |
|
| 170 | + return substr($this->request->getScriptName(), 0 - strlen('/remote.php')) === '/remote.php' && ( |
|
| 171 | + $this->request->getPathInfo() === '/webdav' || |
|
| 172 | + strpos($this->request->getPathInfo(), '/webdav/') === 0 || |
|
| 173 | + $this->request->getPathInfo() === '/dav/files' || |
|
| 174 | + strpos($this->request->getPathInfo(), '/dav/files/') === 0 |
|
| 175 | + ); |
|
| 176 | + } |
|
| 177 | + |
|
| 178 | + /** |
|
| 179 | + * @return bool |
|
| 180 | + */ |
|
| 181 | + protected function isPublicWebDAVRequest() { |
|
| 182 | + return substr($this->request->getScriptName(), 0 - strlen('/public.php')) === '/public.php' && ( |
|
| 183 | + $this->request->getPathInfo() === '/webdav' || |
|
| 184 | + strpos($this->request->getPathInfo(), '/webdav/') === 0 |
|
| 185 | + ); |
|
| 186 | + } |
|
| 187 | 187 | } |
@@ -27,41 +27,41 @@ |
||
| 27 | 27 | * @since 12.0.0 |
| 28 | 28 | */ |
| 29 | 29 | interface ISearchQuery { |
| 30 | - /** |
|
| 31 | - * @return ISearchOperator |
|
| 32 | - * @since 12.0.0 |
|
| 33 | - */ |
|
| 34 | - public function getSearchOperation(); |
|
| 30 | + /** |
|
| 31 | + * @return ISearchOperator |
|
| 32 | + * @since 12.0.0 |
|
| 33 | + */ |
|
| 34 | + public function getSearchOperation(); |
|
| 35 | 35 | |
| 36 | - /** |
|
| 37 | - * Get the maximum number of results to return |
|
| 38 | - * |
|
| 39 | - * @return integer |
|
| 40 | - * @since 12.0.0 |
|
| 41 | - */ |
|
| 42 | - public function getLimit(); |
|
| 36 | + /** |
|
| 37 | + * Get the maximum number of results to return |
|
| 38 | + * |
|
| 39 | + * @return integer |
|
| 40 | + * @since 12.0.0 |
|
| 41 | + */ |
|
| 42 | + public function getLimit(); |
|
| 43 | 43 | |
| 44 | - /** |
|
| 45 | - * Get the offset for returned results |
|
| 46 | - * |
|
| 47 | - * @return integer |
|
| 48 | - * @since 12.0.0 |
|
| 49 | - */ |
|
| 50 | - public function getOffset(); |
|
| 44 | + /** |
|
| 45 | + * Get the offset for returned results |
|
| 46 | + * |
|
| 47 | + * @return integer |
|
| 48 | + * @since 12.0.0 |
|
| 49 | + */ |
|
| 50 | + public function getOffset(); |
|
| 51 | 51 | |
| 52 | - /** |
|
| 53 | - * The fields and directions to order by |
|
| 54 | - * |
|
| 55 | - * @return ISearchOrder[] |
|
| 56 | - * @since 12.0.0 |
|
| 57 | - */ |
|
| 58 | - public function getOrder(); |
|
| 52 | + /** |
|
| 53 | + * The fields and directions to order by |
|
| 54 | + * |
|
| 55 | + * @return ISearchOrder[] |
|
| 56 | + * @since 12.0.0 |
|
| 57 | + */ |
|
| 58 | + public function getOrder(); |
|
| 59 | 59 | |
| 60 | - /** |
|
| 61 | - * The user that issued the search |
|
| 62 | - * |
|
| 63 | - * @return IUser |
|
| 64 | - * @since 12.0.0 |
|
| 65 | - */ |
|
| 66 | - public function getUser(); |
|
| 60 | + /** |
|
| 61 | + * The user that issued the search |
|
| 62 | + * |
|
| 63 | + * @return IUser |
|
| 64 | + * @since 12.0.0 |
|
| 65 | + */ |
|
| 66 | + public function getUser(); |
|
| 67 | 67 | } |
@@ -27,66 +27,66 @@ |
||
| 27 | 27 | use OCP\IUser; |
| 28 | 28 | |
| 29 | 29 | class SearchQuery implements ISearchQuery { |
| 30 | - /** @var ISearchOperator */ |
|
| 31 | - private $searchOperation; |
|
| 32 | - /** @var integer */ |
|
| 33 | - private $limit; |
|
| 34 | - /** @var integer */ |
|
| 35 | - private $offset; |
|
| 36 | - /** @var ISearchOrder[] */ |
|
| 37 | - private $order; |
|
| 38 | - /** @var IUser */ |
|
| 39 | - private $user; |
|
| 30 | + /** @var ISearchOperator */ |
|
| 31 | + private $searchOperation; |
|
| 32 | + /** @var integer */ |
|
| 33 | + private $limit; |
|
| 34 | + /** @var integer */ |
|
| 35 | + private $offset; |
|
| 36 | + /** @var ISearchOrder[] */ |
|
| 37 | + private $order; |
|
| 38 | + /** @var IUser */ |
|
| 39 | + private $user; |
|
| 40 | 40 | |
| 41 | - /** |
|
| 42 | - * SearchQuery constructor. |
|
| 43 | - * |
|
| 44 | - * @param ISearchOperator $searchOperation |
|
| 45 | - * @param int $limit |
|
| 46 | - * @param int $offset |
|
| 47 | - * @param array $order |
|
| 48 | - * @param IUser $user |
|
| 49 | - */ |
|
| 50 | - public function __construct(ISearchOperator $searchOperation, $limit, $offset, array $order, IUser $user) { |
|
| 51 | - $this->searchOperation = $searchOperation; |
|
| 52 | - $this->limit = $limit; |
|
| 53 | - $this->offset = $offset; |
|
| 54 | - $this->order = $order; |
|
| 55 | - $this->user = $user; |
|
| 56 | - } |
|
| 41 | + /** |
|
| 42 | + * SearchQuery constructor. |
|
| 43 | + * |
|
| 44 | + * @param ISearchOperator $searchOperation |
|
| 45 | + * @param int $limit |
|
| 46 | + * @param int $offset |
|
| 47 | + * @param array $order |
|
| 48 | + * @param IUser $user |
|
| 49 | + */ |
|
| 50 | + public function __construct(ISearchOperator $searchOperation, $limit, $offset, array $order, IUser $user) { |
|
| 51 | + $this->searchOperation = $searchOperation; |
|
| 52 | + $this->limit = $limit; |
|
| 53 | + $this->offset = $offset; |
|
| 54 | + $this->order = $order; |
|
| 55 | + $this->user = $user; |
|
| 56 | + } |
|
| 57 | 57 | |
| 58 | - /** |
|
| 59 | - * @return ISearchOperator |
|
| 60 | - */ |
|
| 61 | - public function getSearchOperation() { |
|
| 62 | - return $this->searchOperation; |
|
| 63 | - } |
|
| 58 | + /** |
|
| 59 | + * @return ISearchOperator |
|
| 60 | + */ |
|
| 61 | + public function getSearchOperation() { |
|
| 62 | + return $this->searchOperation; |
|
| 63 | + } |
|
| 64 | 64 | |
| 65 | - /** |
|
| 66 | - * @return int |
|
| 67 | - */ |
|
| 68 | - public function getLimit() { |
|
| 69 | - return $this->limit; |
|
| 70 | - } |
|
| 65 | + /** |
|
| 66 | + * @return int |
|
| 67 | + */ |
|
| 68 | + public function getLimit() { |
|
| 69 | + return $this->limit; |
|
| 70 | + } |
|
| 71 | 71 | |
| 72 | - /** |
|
| 73 | - * @return int |
|
| 74 | - */ |
|
| 75 | - public function getOffset() { |
|
| 76 | - return $this->offset; |
|
| 77 | - } |
|
| 72 | + /** |
|
| 73 | + * @return int |
|
| 74 | + */ |
|
| 75 | + public function getOffset() { |
|
| 76 | + return $this->offset; |
|
| 77 | + } |
|
| 78 | 78 | |
| 79 | - /** |
|
| 80 | - * @return ISearchOrder[] |
|
| 81 | - */ |
|
| 82 | - public function getOrder() { |
|
| 83 | - return $this->order; |
|
| 84 | - } |
|
| 79 | + /** |
|
| 80 | + * @return ISearchOrder[] |
|
| 81 | + */ |
|
| 82 | + public function getOrder() { |
|
| 83 | + return $this->order; |
|
| 84 | + } |
|
| 85 | 85 | |
| 86 | - /** |
|
| 87 | - * @return IUser |
|
| 88 | - */ |
|
| 89 | - public function getUser() { |
|
| 90 | - return $this->user; |
|
| 91 | - } |
|
| 86 | + /** |
|
| 87 | + * @return IUser |
|
| 88 | + */ |
|
| 89 | + public function getUser() { |
|
| 90 | + return $this->user; |
|
| 91 | + } |
|
| 92 | 92 | } |
@@ -32,17 +32,17 @@ |
||
| 32 | 32 | */ |
| 33 | 33 | interface IDiscoveryService { |
| 34 | 34 | |
| 35 | - /** |
|
| 36 | - * Discover OCS end-points |
|
| 37 | - * |
|
| 38 | - * If no valid discovery data is found the defaults are returned |
|
| 39 | - * |
|
| 40 | - * @since 12.0.0 |
|
| 41 | - * |
|
| 42 | - * @param string $remote |
|
| 43 | - * @param string $service the service you want to discover |
|
| 44 | - * @return array |
|
| 45 | - */ |
|
| 46 | - public function discover($remote, $service); |
|
| 35 | + /** |
|
| 36 | + * Discover OCS end-points |
|
| 37 | + * |
|
| 38 | + * If no valid discovery data is found the defaults are returned |
|
| 39 | + * |
|
| 40 | + * @since 12.0.0 |
|
| 41 | + * |
|
| 42 | + * @param string $remote |
|
| 43 | + * @param string $service the service you want to discover |
|
| 44 | + * @return array |
|
| 45 | + */ |
|
| 46 | + public function discover($remote, $service); |
|
| 47 | 47 | |
| 48 | 48 | } |