@@ -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 | } |
@@ -103,7 +103,7 @@ discard block |
||
103 | 103 | try { |
104 | 104 | $mount = $this->globalService->getStorage($mountId); |
105 | 105 | } catch (NotFoundException $e) { |
106 | - $output->writeln('<error>Mount with id "' . $mountId . ' not found, check "occ files_external:list" to get available mounts</error>'); |
|
106 | + $output->writeln('<error>Mount with id "'.$mountId.' not found, check "occ files_external:list" to get available mounts</error>'); |
|
107 | 107 | return 404; |
108 | 108 | } |
109 | 109 | |
@@ -123,13 +123,13 @@ discard block |
||
123 | 123 | if ((count($addUsers) + count($removeUsers) + count($addGroups) + count($removeGroups) > 0) || $input->getOption('remove-all')) { |
124 | 124 | foreach ($addUsers as $addUser) { |
125 | 125 | if (!$this->userManager->userExists($addUser)) { |
126 | - $output->writeln('<error>User "' . $addUser . '" not found</error>'); |
|
126 | + $output->writeln('<error>User "'.$addUser.'" not found</error>'); |
|
127 | 127 | return 404; |
128 | 128 | } |
129 | 129 | } |
130 | 130 | foreach ($addGroups as $addGroup) { |
131 | 131 | if (!$this->groupManager->groupExists($addGroup)) { |
132 | - $output->writeln('<error>Group "' . $addGroup . '" not found</error>'); |
|
132 | + $output->writeln('<error>Group "'.$addGroup.'" not found</error>'); |
|
133 | 133 | return 404; |
134 | 134 | } |
135 | 135 | } |
@@ -35,122 +35,122 @@ |
||
35 | 35 | use Symfony\Component\Console\Output\OutputInterface; |
36 | 36 | |
37 | 37 | class Applicable extends Base { |
38 | - /** |
|
39 | - * @var GlobalStoragesService |
|
40 | - */ |
|
41 | - protected $globalService; |
|
38 | + /** |
|
39 | + * @var GlobalStoragesService |
|
40 | + */ |
|
41 | + protected $globalService; |
|
42 | 42 | |
43 | - /** |
|
44 | - * @var IUserManager |
|
45 | - */ |
|
46 | - private $userManager; |
|
43 | + /** |
|
44 | + * @var IUserManager |
|
45 | + */ |
|
46 | + private $userManager; |
|
47 | 47 | |
48 | - /** |
|
49 | - * @var IGroupManager |
|
50 | - */ |
|
51 | - private $groupManager; |
|
48 | + /** |
|
49 | + * @var IGroupManager |
|
50 | + */ |
|
51 | + private $groupManager; |
|
52 | 52 | |
53 | - function __construct( |
|
54 | - GlobalStoragesService $globalService, |
|
55 | - IUserManager $userManager, |
|
56 | - IGroupManager $groupManager |
|
57 | - ) { |
|
58 | - parent::__construct(); |
|
59 | - $this->globalService = $globalService; |
|
60 | - $this->userManager = $userManager; |
|
61 | - $this->groupManager = $groupManager; |
|
62 | - } |
|
53 | + function __construct( |
|
54 | + GlobalStoragesService $globalService, |
|
55 | + IUserManager $userManager, |
|
56 | + IGroupManager $groupManager |
|
57 | + ) { |
|
58 | + parent::__construct(); |
|
59 | + $this->globalService = $globalService; |
|
60 | + $this->userManager = $userManager; |
|
61 | + $this->groupManager = $groupManager; |
|
62 | + } |
|
63 | 63 | |
64 | - protected function configure() { |
|
65 | - $this |
|
66 | - ->setName('files_external:applicable') |
|
67 | - ->setDescription('Manage applicable users and groups for a mount') |
|
68 | - ->addArgument( |
|
69 | - 'mount_id', |
|
70 | - InputArgument::REQUIRED, |
|
71 | - 'The id of the mount to edit' |
|
72 | - )->addOption( |
|
73 | - 'add-user', |
|
74 | - '', |
|
75 | - InputOption::VALUE_IS_ARRAY | InputOption::VALUE_REQUIRED, |
|
76 | - 'user to add as applicable' |
|
77 | - )->addOption( |
|
78 | - 'remove-user', |
|
79 | - '', |
|
80 | - InputOption::VALUE_IS_ARRAY | InputOption::VALUE_REQUIRED, |
|
81 | - 'user to remove as applicable' |
|
82 | - )->addOption( |
|
83 | - 'add-group', |
|
84 | - '', |
|
85 | - InputOption::VALUE_IS_ARRAY | InputOption::VALUE_REQUIRED, |
|
86 | - 'group to add as applicable' |
|
87 | - )->addOption( |
|
88 | - 'remove-group', |
|
89 | - '', |
|
90 | - InputOption::VALUE_IS_ARRAY | InputOption::VALUE_REQUIRED, |
|
91 | - 'group to remove as applicable' |
|
92 | - )->addOption( |
|
93 | - 'remove-all', |
|
94 | - '', |
|
95 | - InputOption::VALUE_NONE, |
|
96 | - 'Set the mount to be globally applicable' |
|
97 | - ); |
|
98 | - parent::configure(); |
|
99 | - } |
|
64 | + protected function configure() { |
|
65 | + $this |
|
66 | + ->setName('files_external:applicable') |
|
67 | + ->setDescription('Manage applicable users and groups for a mount') |
|
68 | + ->addArgument( |
|
69 | + 'mount_id', |
|
70 | + InputArgument::REQUIRED, |
|
71 | + 'The id of the mount to edit' |
|
72 | + )->addOption( |
|
73 | + 'add-user', |
|
74 | + '', |
|
75 | + InputOption::VALUE_IS_ARRAY | InputOption::VALUE_REQUIRED, |
|
76 | + 'user to add as applicable' |
|
77 | + )->addOption( |
|
78 | + 'remove-user', |
|
79 | + '', |
|
80 | + InputOption::VALUE_IS_ARRAY | InputOption::VALUE_REQUIRED, |
|
81 | + 'user to remove as applicable' |
|
82 | + )->addOption( |
|
83 | + 'add-group', |
|
84 | + '', |
|
85 | + InputOption::VALUE_IS_ARRAY | InputOption::VALUE_REQUIRED, |
|
86 | + 'group to add as applicable' |
|
87 | + )->addOption( |
|
88 | + 'remove-group', |
|
89 | + '', |
|
90 | + InputOption::VALUE_IS_ARRAY | InputOption::VALUE_REQUIRED, |
|
91 | + 'group to remove as applicable' |
|
92 | + )->addOption( |
|
93 | + 'remove-all', |
|
94 | + '', |
|
95 | + InputOption::VALUE_NONE, |
|
96 | + 'Set the mount to be globally applicable' |
|
97 | + ); |
|
98 | + parent::configure(); |
|
99 | + } |
|
100 | 100 | |
101 | - protected function execute(InputInterface $input, OutputInterface $output) { |
|
102 | - $mountId = $input->getArgument('mount_id'); |
|
103 | - try { |
|
104 | - $mount = $this->globalService->getStorage($mountId); |
|
105 | - } catch (NotFoundException $e) { |
|
106 | - $output->writeln('<error>Mount with id "' . $mountId . ' not found, check "occ files_external:list" to get available mounts</error>'); |
|
107 | - return 404; |
|
108 | - } |
|
101 | + protected function execute(InputInterface $input, OutputInterface $output) { |
|
102 | + $mountId = $input->getArgument('mount_id'); |
|
103 | + try { |
|
104 | + $mount = $this->globalService->getStorage($mountId); |
|
105 | + } catch (NotFoundException $e) { |
|
106 | + $output->writeln('<error>Mount with id "' . $mountId . ' not found, check "occ files_external:list" to get available mounts</error>'); |
|
107 | + return 404; |
|
108 | + } |
|
109 | 109 | |
110 | - if ($mount->getType() === StorageConfig::MOUNT_TYPE_PERSONAl) { |
|
111 | - $output->writeln('<error>Can\'t change applicables on personal mounts</error>'); |
|
112 | - return 1; |
|
113 | - } |
|
110 | + if ($mount->getType() === StorageConfig::MOUNT_TYPE_PERSONAl) { |
|
111 | + $output->writeln('<error>Can\'t change applicables on personal mounts</error>'); |
|
112 | + return 1; |
|
113 | + } |
|
114 | 114 | |
115 | - $addUsers = $input->getOption('add-user'); |
|
116 | - $removeUsers = $input->getOption('remove-user'); |
|
117 | - $addGroups = $input->getOption('add-group'); |
|
118 | - $removeGroups = $input->getOption('remove-group'); |
|
115 | + $addUsers = $input->getOption('add-user'); |
|
116 | + $removeUsers = $input->getOption('remove-user'); |
|
117 | + $addGroups = $input->getOption('add-group'); |
|
118 | + $removeGroups = $input->getOption('remove-group'); |
|
119 | 119 | |
120 | - $applicableUsers = $mount->getApplicableUsers(); |
|
121 | - $applicableGroups = $mount->getApplicableGroups(); |
|
120 | + $applicableUsers = $mount->getApplicableUsers(); |
|
121 | + $applicableGroups = $mount->getApplicableGroups(); |
|
122 | 122 | |
123 | - if ((count($addUsers) + count($removeUsers) + count($addGroups) + count($removeGroups) > 0) || $input->getOption('remove-all')) { |
|
124 | - foreach ($addUsers as $addUser) { |
|
125 | - if (!$this->userManager->userExists($addUser)) { |
|
126 | - $output->writeln('<error>User "' . $addUser . '" not found</error>'); |
|
127 | - return 404; |
|
128 | - } |
|
129 | - } |
|
130 | - foreach ($addGroups as $addGroup) { |
|
131 | - if (!$this->groupManager->groupExists($addGroup)) { |
|
132 | - $output->writeln('<error>Group "' . $addGroup . '" not found</error>'); |
|
133 | - return 404; |
|
134 | - } |
|
135 | - } |
|
123 | + if ((count($addUsers) + count($removeUsers) + count($addGroups) + count($removeGroups) > 0) || $input->getOption('remove-all')) { |
|
124 | + foreach ($addUsers as $addUser) { |
|
125 | + if (!$this->userManager->userExists($addUser)) { |
|
126 | + $output->writeln('<error>User "' . $addUser . '" not found</error>'); |
|
127 | + return 404; |
|
128 | + } |
|
129 | + } |
|
130 | + foreach ($addGroups as $addGroup) { |
|
131 | + if (!$this->groupManager->groupExists($addGroup)) { |
|
132 | + $output->writeln('<error>Group "' . $addGroup . '" not found</error>'); |
|
133 | + return 404; |
|
134 | + } |
|
135 | + } |
|
136 | 136 | |
137 | - if ($input->getOption('remove-all')) { |
|
138 | - $applicableUsers = []; |
|
139 | - $applicableGroups = []; |
|
140 | - } else { |
|
141 | - $applicableUsers = array_unique(array_merge($applicableUsers, $addUsers)); |
|
142 | - $applicableUsers = array_values(array_diff($applicableUsers, $removeUsers)); |
|
143 | - $applicableGroups = array_unique(array_merge($applicableGroups, $addGroups)); |
|
144 | - $applicableGroups = array_values(array_diff($applicableGroups, $removeGroups)); |
|
145 | - } |
|
146 | - $mount->setApplicableUsers($applicableUsers); |
|
147 | - $mount->setApplicableGroups($applicableGroups); |
|
148 | - $this->globalService->updateStorage($mount); |
|
149 | - } |
|
137 | + if ($input->getOption('remove-all')) { |
|
138 | + $applicableUsers = []; |
|
139 | + $applicableGroups = []; |
|
140 | + } else { |
|
141 | + $applicableUsers = array_unique(array_merge($applicableUsers, $addUsers)); |
|
142 | + $applicableUsers = array_values(array_diff($applicableUsers, $removeUsers)); |
|
143 | + $applicableGroups = array_unique(array_merge($applicableGroups, $addGroups)); |
|
144 | + $applicableGroups = array_values(array_diff($applicableGroups, $removeGroups)); |
|
145 | + } |
|
146 | + $mount->setApplicableUsers($applicableUsers); |
|
147 | + $mount->setApplicableGroups($applicableGroups); |
|
148 | + $this->globalService->updateStorage($mount); |
|
149 | + } |
|
150 | 150 | |
151 | - $this->writeArrayInOutputFormat($input, $output, [ |
|
152 | - 'users' => $applicableUsers, |
|
153 | - 'groups' => $applicableGroups |
|
154 | - ]); |
|
155 | - } |
|
151 | + $this->writeArrayInOutputFormat($input, $output, [ |
|
152 | + 'users' => $applicableUsers, |
|
153 | + 'groups' => $applicableGroups |
|
154 | + ]); |
|
155 | + } |
|
156 | 156 | } |
@@ -68,7 +68,7 @@ |
||
68 | 68 | try { |
69 | 69 | $mount = $this->globalService->getStorage($mountId); |
70 | 70 | } catch (NotFoundException $e) { |
71 | - $output->writeln('<error>Mount with id "' . $mountId . ' not found, check "occ files_external:list" to get available mounts"</error>'); |
|
71 | + $output->writeln('<error>Mount with id "'.$mountId.' not found, check "occ files_external:list" to get available mounts"</error>'); |
|
72 | 72 | return 404; |
73 | 73 | } |
74 | 74 |
@@ -33,87 +33,87 @@ |
||
33 | 33 | use Symfony\Component\Console\Output\OutputInterface; |
34 | 34 | |
35 | 35 | class Config extends Base { |
36 | - /** |
|
37 | - * @var GlobalStoragesService |
|
38 | - */ |
|
39 | - protected $globalService; |
|
36 | + /** |
|
37 | + * @var GlobalStoragesService |
|
38 | + */ |
|
39 | + protected $globalService; |
|
40 | 40 | |
41 | - function __construct(GlobalStoragesService $globalService) { |
|
42 | - parent::__construct(); |
|
43 | - $this->globalService = $globalService; |
|
44 | - } |
|
41 | + function __construct(GlobalStoragesService $globalService) { |
|
42 | + parent::__construct(); |
|
43 | + $this->globalService = $globalService; |
|
44 | + } |
|
45 | 45 | |
46 | - protected function configure() { |
|
47 | - $this |
|
48 | - ->setName('files_external:config') |
|
49 | - ->setDescription('Manage backend configuration for a mount') |
|
50 | - ->addArgument( |
|
51 | - 'mount_id', |
|
52 | - InputArgument::REQUIRED, |
|
53 | - 'The id of the mount to edit' |
|
54 | - )->addArgument( |
|
55 | - 'key', |
|
56 | - InputArgument::REQUIRED, |
|
57 | - 'key of the config option to set/get' |
|
58 | - )->addArgument( |
|
59 | - 'value', |
|
60 | - InputArgument::OPTIONAL, |
|
61 | - 'value to set the config option to, when no value is provided the existing value will be printed' |
|
62 | - ); |
|
63 | - parent::configure(); |
|
64 | - } |
|
46 | + protected function configure() { |
|
47 | + $this |
|
48 | + ->setName('files_external:config') |
|
49 | + ->setDescription('Manage backend configuration for a mount') |
|
50 | + ->addArgument( |
|
51 | + 'mount_id', |
|
52 | + InputArgument::REQUIRED, |
|
53 | + 'The id of the mount to edit' |
|
54 | + )->addArgument( |
|
55 | + 'key', |
|
56 | + InputArgument::REQUIRED, |
|
57 | + 'key of the config option to set/get' |
|
58 | + )->addArgument( |
|
59 | + 'value', |
|
60 | + InputArgument::OPTIONAL, |
|
61 | + 'value to set the config option to, when no value is provided the existing value will be printed' |
|
62 | + ); |
|
63 | + parent::configure(); |
|
64 | + } |
|
65 | 65 | |
66 | - protected function execute(InputInterface $input, OutputInterface $output) { |
|
67 | - $mountId = $input->getArgument('mount_id'); |
|
68 | - $key = $input->getArgument('key'); |
|
69 | - try { |
|
70 | - $mount = $this->globalService->getStorage($mountId); |
|
71 | - } catch (NotFoundException $e) { |
|
72 | - $output->writeln('<error>Mount with id "' . $mountId . ' not found, check "occ files_external:list" to get available mounts"</error>'); |
|
73 | - return 404; |
|
74 | - } |
|
66 | + protected function execute(InputInterface $input, OutputInterface $output) { |
|
67 | + $mountId = $input->getArgument('mount_id'); |
|
68 | + $key = $input->getArgument('key'); |
|
69 | + try { |
|
70 | + $mount = $this->globalService->getStorage($mountId); |
|
71 | + } catch (NotFoundException $e) { |
|
72 | + $output->writeln('<error>Mount with id "' . $mountId . ' not found, check "occ files_external:list" to get available mounts"</error>'); |
|
73 | + return 404; |
|
74 | + } |
|
75 | 75 | |
76 | - $value = $input->getArgument('value'); |
|
77 | - if ($value !== null) { |
|
78 | - $this->setOption($mount, $key, $value, $output); |
|
79 | - } else { |
|
80 | - $this->getOption($mount, $key, $output); |
|
81 | - } |
|
82 | - } |
|
76 | + $value = $input->getArgument('value'); |
|
77 | + if ($value !== null) { |
|
78 | + $this->setOption($mount, $key, $value, $output); |
|
79 | + } else { |
|
80 | + $this->getOption($mount, $key, $output); |
|
81 | + } |
|
82 | + } |
|
83 | 83 | |
84 | - /** |
|
85 | - * @param StorageConfig $mount |
|
86 | - * @param string $key |
|
87 | - * @param OutputInterface $output |
|
88 | - */ |
|
89 | - protected function getOption(StorageConfig $mount, $key, OutputInterface $output) { |
|
90 | - if ($key === 'mountpoint' || $key === 'mount_point') { |
|
91 | - $value = $mount->getMountPoint(); |
|
92 | - } else { |
|
93 | - $value = $mount->getBackendOption($key); |
|
94 | - } |
|
95 | - if (!is_string($value) && json_decode(json_encode($value)) === $value) { // show bools and objects correctly |
|
96 | - $value = json_encode($value); |
|
97 | - } |
|
98 | - $output->writeln($value); |
|
99 | - } |
|
84 | + /** |
|
85 | + * @param StorageConfig $mount |
|
86 | + * @param string $key |
|
87 | + * @param OutputInterface $output |
|
88 | + */ |
|
89 | + protected function getOption(StorageConfig $mount, $key, OutputInterface $output) { |
|
90 | + if ($key === 'mountpoint' || $key === 'mount_point') { |
|
91 | + $value = $mount->getMountPoint(); |
|
92 | + } else { |
|
93 | + $value = $mount->getBackendOption($key); |
|
94 | + } |
|
95 | + if (!is_string($value) && json_decode(json_encode($value)) === $value) { // show bools and objects correctly |
|
96 | + $value = json_encode($value); |
|
97 | + } |
|
98 | + $output->writeln($value); |
|
99 | + } |
|
100 | 100 | |
101 | - /** |
|
102 | - * @param StorageConfig $mount |
|
103 | - * @param string $key |
|
104 | - * @param string $value |
|
105 | - * @param OutputInterface $output |
|
106 | - */ |
|
107 | - protected function setOption(StorageConfig $mount, $key, $value, OutputInterface $output) { |
|
108 | - $decoded = json_decode($value, true); |
|
109 | - if (!is_null($decoded) && json_encode($decoded) === $value) { |
|
110 | - $value = $decoded; |
|
111 | - } |
|
112 | - if ($key === 'mountpoint' || $key === 'mount_point') { |
|
113 | - $mount->setMountPoint($value); |
|
114 | - } else { |
|
115 | - $mount->setBackendOption($key, $value); |
|
116 | - } |
|
117 | - $this->globalService->updateStorage($mount); |
|
118 | - } |
|
101 | + /** |
|
102 | + * @param StorageConfig $mount |
|
103 | + * @param string $key |
|
104 | + * @param string $value |
|
105 | + * @param OutputInterface $output |
|
106 | + */ |
|
107 | + protected function setOption(StorageConfig $mount, $key, $value, OutputInterface $output) { |
|
108 | + $decoded = json_decode($value, true); |
|
109 | + if (!is_null($decoded) && json_encode($decoded) === $value) { |
|
110 | + $value = $decoded; |
|
111 | + } |
|
112 | + if ($key === 'mountpoint' || $key === 'mount_point') { |
|
113 | + $mount->setMountPoint($value); |
|
114 | + } else { |
|
115 | + $mount->setBackendOption($key, $value); |
|
116 | + } |
|
117 | + $this->globalService->updateStorage($mount); |
|
118 | + } |
|
119 | 119 | } |
@@ -37,108 +37,108 @@ |
||
37 | 37 | use Symfony\Component\Console\Output\OutputInterface; |
38 | 38 | |
39 | 39 | class Verify extends Base { |
40 | - /** |
|
41 | - * @var GlobalStoragesService |
|
42 | - */ |
|
43 | - protected $globalService; |
|
40 | + /** |
|
41 | + * @var GlobalStoragesService |
|
42 | + */ |
|
43 | + protected $globalService; |
|
44 | 44 | |
45 | - function __construct(GlobalStoragesService $globalService) { |
|
46 | - parent::__construct(); |
|
47 | - $this->globalService = $globalService; |
|
48 | - } |
|
45 | + function __construct(GlobalStoragesService $globalService) { |
|
46 | + parent::__construct(); |
|
47 | + $this->globalService = $globalService; |
|
48 | + } |
|
49 | 49 | |
50 | - protected function configure() { |
|
51 | - $this |
|
52 | - ->setName('files_external:verify') |
|
53 | - ->setDescription('Verify mount configuration') |
|
54 | - ->addArgument( |
|
55 | - 'mount_id', |
|
56 | - InputArgument::REQUIRED, |
|
57 | - 'The id of the mount to check' |
|
58 | - )->addOption( |
|
59 | - 'config', |
|
60 | - 'c', |
|
61 | - InputOption::VALUE_REQUIRED | InputOption::VALUE_IS_ARRAY, |
|
62 | - 'Additional config option to set before checking in key=value pairs, required for certain auth backends such as login credentails' |
|
63 | - ); |
|
64 | - parent::configure(); |
|
65 | - } |
|
50 | + protected function configure() { |
|
51 | + $this |
|
52 | + ->setName('files_external:verify') |
|
53 | + ->setDescription('Verify mount configuration') |
|
54 | + ->addArgument( |
|
55 | + 'mount_id', |
|
56 | + InputArgument::REQUIRED, |
|
57 | + 'The id of the mount to check' |
|
58 | + )->addOption( |
|
59 | + 'config', |
|
60 | + 'c', |
|
61 | + InputOption::VALUE_REQUIRED | InputOption::VALUE_IS_ARRAY, |
|
62 | + 'Additional config option to set before checking in key=value pairs, required for certain auth backends such as login credentails' |
|
63 | + ); |
|
64 | + parent::configure(); |
|
65 | + } |
|
66 | 66 | |
67 | - protected function execute(InputInterface $input, OutputInterface $output) { |
|
68 | - $mountId = $input->getArgument('mount_id'); |
|
69 | - $configInput = $input->getOption('config'); |
|
67 | + protected function execute(InputInterface $input, OutputInterface $output) { |
|
68 | + $mountId = $input->getArgument('mount_id'); |
|
69 | + $configInput = $input->getOption('config'); |
|
70 | 70 | |
71 | - try { |
|
72 | - $mount = $this->globalService->getStorage($mountId); |
|
73 | - } catch (NotFoundException $e) { |
|
74 | - $output->writeln('<error>Mount with id "' . $mountId . ' not found, check "occ files_external:list" to get available mounts"</error>'); |
|
75 | - return 404; |
|
76 | - } |
|
71 | + try { |
|
72 | + $mount = $this->globalService->getStorage($mountId); |
|
73 | + } catch (NotFoundException $e) { |
|
74 | + $output->writeln('<error>Mount with id "' . $mountId . ' not found, check "occ files_external:list" to get available mounts"</error>'); |
|
75 | + return 404; |
|
76 | + } |
|
77 | 77 | |
78 | - $this->updateStorageStatus($mount, $configInput, $output); |
|
78 | + $this->updateStorageStatus($mount, $configInput, $output); |
|
79 | 79 | |
80 | - $this->writeArrayInOutputFormat($input, $output, [ |
|
81 | - 'status' => StorageNotAvailableException::getStateCodeName($mount->getStatus()), |
|
82 | - 'code' => $mount->getStatus(), |
|
83 | - 'message' => $mount->getStatusMessage() |
|
84 | - ]); |
|
85 | - } |
|
80 | + $this->writeArrayInOutputFormat($input, $output, [ |
|
81 | + 'status' => StorageNotAvailableException::getStateCodeName($mount->getStatus()), |
|
82 | + 'code' => $mount->getStatus(), |
|
83 | + 'message' => $mount->getStatusMessage() |
|
84 | + ]); |
|
85 | + } |
|
86 | 86 | |
87 | - private function manipulateStorageConfig(StorageConfig $storage) { |
|
88 | - /** @var AuthMechanism */ |
|
89 | - $authMechanism = $storage->getAuthMechanism(); |
|
90 | - $authMechanism->manipulateStorageConfig($storage); |
|
91 | - /** @var Backend */ |
|
92 | - $backend = $storage->getBackend(); |
|
93 | - $backend->manipulateStorageConfig($storage); |
|
94 | - } |
|
87 | + private function manipulateStorageConfig(StorageConfig $storage) { |
|
88 | + /** @var AuthMechanism */ |
|
89 | + $authMechanism = $storage->getAuthMechanism(); |
|
90 | + $authMechanism->manipulateStorageConfig($storage); |
|
91 | + /** @var Backend */ |
|
92 | + $backend = $storage->getBackend(); |
|
93 | + $backend->manipulateStorageConfig($storage); |
|
94 | + } |
|
95 | 95 | |
96 | - private function updateStorageStatus(StorageConfig &$storage, $configInput, OutputInterface $output) { |
|
97 | - try { |
|
98 | - try { |
|
99 | - $this->manipulateStorageConfig($storage); |
|
100 | - } catch (InsufficientDataForMeaningfulAnswerException $e) { |
|
101 | - if (count($configInput) === 0) { // extra config options might solve the error |
|
102 | - throw $e; |
|
103 | - } |
|
104 | - } |
|
96 | + private function updateStorageStatus(StorageConfig &$storage, $configInput, OutputInterface $output) { |
|
97 | + try { |
|
98 | + try { |
|
99 | + $this->manipulateStorageConfig($storage); |
|
100 | + } catch (InsufficientDataForMeaningfulAnswerException $e) { |
|
101 | + if (count($configInput) === 0) { // extra config options might solve the error |
|
102 | + throw $e; |
|
103 | + } |
|
104 | + } |
|
105 | 105 | |
106 | - foreach ($configInput as $configOption) { |
|
107 | - if (!strpos($configOption, '=')) { |
|
108 | - $output->writeln('<error>Invalid mount configuration option "' . $configOption . '"</error>'); |
|
109 | - return; |
|
110 | - } |
|
111 | - list($key, $value) = explode('=', $configOption, 2); |
|
112 | - $storage->setBackendOption($key, $value); |
|
113 | - } |
|
106 | + foreach ($configInput as $configOption) { |
|
107 | + if (!strpos($configOption, '=')) { |
|
108 | + $output->writeln('<error>Invalid mount configuration option "' . $configOption . '"</error>'); |
|
109 | + return; |
|
110 | + } |
|
111 | + list($key, $value) = explode('=', $configOption, 2); |
|
112 | + $storage->setBackendOption($key, $value); |
|
113 | + } |
|
114 | 114 | |
115 | - /** @var Backend */ |
|
116 | - $backend = $storage->getBackend(); |
|
117 | - // update status (can be time-consuming) |
|
118 | - $storage->setStatus( |
|
119 | - \OC_Mount_Config::getBackendStatus( |
|
120 | - $backend->getStorageClass(), |
|
121 | - $storage->getBackendOptions(), |
|
122 | - false |
|
123 | - ) |
|
124 | - ); |
|
125 | - } catch (InsufficientDataForMeaningfulAnswerException $e) { |
|
126 | - $status = $e->getCode() ? $e->getCode() : StorageNotAvailableException::STATUS_INDETERMINATE; |
|
127 | - $storage->setStatus( |
|
128 | - $status, |
|
129 | - $e->getMessage() |
|
130 | - ); |
|
131 | - } catch (StorageNotAvailableException $e) { |
|
132 | - $storage->setStatus( |
|
133 | - $e->getCode(), |
|
134 | - $e->getMessage() |
|
135 | - ); |
|
136 | - } catch (\Exception $e) { |
|
137 | - // FIXME: convert storage exceptions to StorageNotAvailableException |
|
138 | - $storage->setStatus( |
|
139 | - StorageNotAvailableException::STATUS_ERROR, |
|
140 | - get_class($e) . ': ' . $e->getMessage() |
|
141 | - ); |
|
142 | - } |
|
143 | - } |
|
115 | + /** @var Backend */ |
|
116 | + $backend = $storage->getBackend(); |
|
117 | + // update status (can be time-consuming) |
|
118 | + $storage->setStatus( |
|
119 | + \OC_Mount_Config::getBackendStatus( |
|
120 | + $backend->getStorageClass(), |
|
121 | + $storage->getBackendOptions(), |
|
122 | + false |
|
123 | + ) |
|
124 | + ); |
|
125 | + } catch (InsufficientDataForMeaningfulAnswerException $e) { |
|
126 | + $status = $e->getCode() ? $e->getCode() : StorageNotAvailableException::STATUS_INDETERMINATE; |
|
127 | + $storage->setStatus( |
|
128 | + $status, |
|
129 | + $e->getMessage() |
|
130 | + ); |
|
131 | + } catch (StorageNotAvailableException $e) { |
|
132 | + $storage->setStatus( |
|
133 | + $e->getCode(), |
|
134 | + $e->getMessage() |
|
135 | + ); |
|
136 | + } catch (\Exception $e) { |
|
137 | + // FIXME: convert storage exceptions to StorageNotAvailableException |
|
138 | + $storage->setStatus( |
|
139 | + StorageNotAvailableException::STATUS_ERROR, |
|
140 | + get_class($e) . ': ' . $e->getMessage() |
|
141 | + ); |
|
142 | + } |
|
143 | + } |
|
144 | 144 | } |
@@ -71,7 +71,7 @@ discard block |
||
71 | 71 | try { |
72 | 72 | $mount = $this->globalService->getStorage($mountId); |
73 | 73 | } catch (NotFoundException $e) { |
74 | - $output->writeln('<error>Mount with id "' . $mountId . ' not found, check "occ files_external:list" to get available mounts"</error>'); |
|
74 | + $output->writeln('<error>Mount with id "'.$mountId.' not found, check "occ files_external:list" to get available mounts"</error>'); |
|
75 | 75 | return 404; |
76 | 76 | } |
77 | 77 | |
@@ -105,7 +105,7 @@ discard block |
||
105 | 105 | |
106 | 106 | foreach ($configInput as $configOption) { |
107 | 107 | if (!strpos($configOption, '=')) { |
108 | - $output->writeln('<error>Invalid mount configuration option "' . $configOption . '"</error>'); |
|
108 | + $output->writeln('<error>Invalid mount configuration option "'.$configOption.'"</error>'); |
|
109 | 109 | return; |
110 | 110 | } |
111 | 111 | list($key, $value) = explode('=', $configOption, 2); |
@@ -137,7 +137,7 @@ discard block |
||
137 | 137 | // FIXME: convert storage exceptions to StorageNotAvailableException |
138 | 138 | $storage->setStatus( |
139 | 139 | StorageNotAvailableException::STATUS_ERROR, |
140 | - get_class($e) . ': ' . $e->getMessage() |
|
140 | + get_class($e).': '.$e->getMessage() |
|
141 | 141 | ); |
142 | 142 | } |
143 | 143 | } |
@@ -28,50 +28,50 @@ |
||
28 | 28 | use Symfony\Component\Console\Output\OutputInterface; |
29 | 29 | |
30 | 30 | class Option extends Config { |
31 | - protected function configure() { |
|
32 | - $this |
|
33 | - ->setName('files_external:option') |
|
34 | - ->setDescription('Manage mount options for a mount') |
|
35 | - ->addArgument( |
|
36 | - 'mount_id', |
|
37 | - InputArgument::REQUIRED, |
|
38 | - 'The id of the mount to edit' |
|
39 | - )->addArgument( |
|
40 | - 'key', |
|
41 | - InputArgument::REQUIRED, |
|
42 | - 'key of the mount option to set/get' |
|
43 | - )->addArgument( |
|
44 | - 'value', |
|
45 | - InputArgument::OPTIONAL, |
|
46 | - 'value to set the mount option to, when no value is provided the existing value will be printed' |
|
47 | - ); |
|
48 | - } |
|
31 | + protected function configure() { |
|
32 | + $this |
|
33 | + ->setName('files_external:option') |
|
34 | + ->setDescription('Manage mount options for a mount') |
|
35 | + ->addArgument( |
|
36 | + 'mount_id', |
|
37 | + InputArgument::REQUIRED, |
|
38 | + 'The id of the mount to edit' |
|
39 | + )->addArgument( |
|
40 | + 'key', |
|
41 | + InputArgument::REQUIRED, |
|
42 | + 'key of the mount option to set/get' |
|
43 | + )->addArgument( |
|
44 | + 'value', |
|
45 | + InputArgument::OPTIONAL, |
|
46 | + 'value to set the mount option to, when no value is provided the existing value will be printed' |
|
47 | + ); |
|
48 | + } |
|
49 | 49 | |
50 | - /** |
|
51 | - * @param StorageConfig $mount |
|
52 | - * @param string $key |
|
53 | - * @param OutputInterface $output |
|
54 | - */ |
|
55 | - protected function getOption(StorageConfig $mount, $key, OutputInterface $output) { |
|
56 | - $value = $mount->getMountOption($key); |
|
57 | - if (!is_string($value)) { // show bools and objects correctly |
|
58 | - $value = json_encode($value); |
|
59 | - } |
|
60 | - $output->writeln($value); |
|
61 | - } |
|
50 | + /** |
|
51 | + * @param StorageConfig $mount |
|
52 | + * @param string $key |
|
53 | + * @param OutputInterface $output |
|
54 | + */ |
|
55 | + protected function getOption(StorageConfig $mount, $key, OutputInterface $output) { |
|
56 | + $value = $mount->getMountOption($key); |
|
57 | + if (!is_string($value)) { // show bools and objects correctly |
|
58 | + $value = json_encode($value); |
|
59 | + } |
|
60 | + $output->writeln($value); |
|
61 | + } |
|
62 | 62 | |
63 | - /** |
|
64 | - * @param StorageConfig $mount |
|
65 | - * @param string $key |
|
66 | - * @param string $value |
|
67 | - * @param OutputInterface $output |
|
68 | - */ |
|
69 | - protected function setOption(StorageConfig $mount, $key, $value, OutputInterface $output) { |
|
70 | - $decoded = json_decode($value, true); |
|
71 | - if (!is_null($decoded)) { |
|
72 | - $value = $decoded; |
|
73 | - } |
|
74 | - $mount->setMountOption($key, $value); |
|
75 | - $this->globalService->updateStorage($mount); |
|
76 | - } |
|
63 | + /** |
|
64 | + * @param StorageConfig $mount |
|
65 | + * @param string $key |
|
66 | + * @param string $value |
|
67 | + * @param OutputInterface $output |
|
68 | + */ |
|
69 | + protected function setOption(StorageConfig $mount, $key, $value, OutputInterface $output) { |
|
70 | + $decoded = json_decode($value, true); |
|
71 | + if (!is_null($decoded)) { |
|
72 | + $value = $decoded; |
|
73 | + } |
|
74 | + $mount->setMountOption($key, $value); |
|
75 | + $this->globalService->updateStorage($mount); |
|
76 | + } |
|
77 | 77 | } |
@@ -120,7 +120,7 @@ discard block |
||
120 | 120 | return 1; |
121 | 121 | } |
122 | 122 | if (!$storage instanceof INotifyStorage) { |
123 | - $output->writeln('<error>Mount of type "' . $mount->getBackend()->getText() . '" does not support active update notifications</error>'); |
|
123 | + $output->writeln('<error>Mount of type "'.$mount->getBackend()->getText().'" does not support active update notifications</error>'); |
|
124 | 124 | return 1; |
125 | 125 | } |
126 | 126 | |
@@ -129,7 +129,7 @@ discard block |
||
129 | 129 | $path = trim($input->getOption('path'), '/'); |
130 | 130 | $notifyHandler = $storage->notify($path); |
131 | 131 | $this->selfTest($storage, $notifyHandler, $verbose, $output); |
132 | - $notifyHandler->listen(function (IChange $change) use ($mount, $verbose, $output) { |
|
132 | + $notifyHandler->listen(function(IChange $change) use ($mount, $verbose, $output) { |
|
133 | 133 | if ($verbose) { |
134 | 134 | $this->logUpdate($change, $output); |
135 | 135 | } |
@@ -171,9 +171,9 @@ discard block |
||
171 | 171 | return; |
172 | 172 | } |
173 | 173 | |
174 | - $text .= ' ' . $change->getPath(); |
|
174 | + $text .= ' '.$change->getPath(); |
|
175 | 175 | if ($change instanceof IRenameChange) { |
176 | - $text .= ' to ' . $change->getTargetPath(); |
|
176 | + $text .= ' to '.$change->getTargetPath(); |
|
177 | 177 | } |
178 | 178 | |
179 | 179 | $output->writeln($text); |
@@ -41,186 +41,186 @@ |
||
41 | 41 | use Symfony\Component\Console\Output\OutputInterface; |
42 | 42 | |
43 | 43 | class Notify extends Base { |
44 | - /** @var GlobalStoragesService */ |
|
45 | - private $globalService; |
|
46 | - /** @var IDBConnection */ |
|
47 | - private $connection; |
|
48 | - /** @var \OCP\DB\QueryBuilder\IQueryBuilder */ |
|
49 | - private $updateQuery; |
|
50 | - |
|
51 | - function __construct(GlobalStoragesService $globalService, IDBConnection $connection) { |
|
52 | - parent::__construct(); |
|
53 | - $this->globalService = $globalService; |
|
54 | - $this->connection = $connection; |
|
55 | - // the query builder doesn't really like subqueries with parameters |
|
56 | - $this->updateQuery = $this->connection->prepare( |
|
57 | - 'UPDATE *PREFIX*filecache SET size = -1 |
|
44 | + /** @var GlobalStoragesService */ |
|
45 | + private $globalService; |
|
46 | + /** @var IDBConnection */ |
|
47 | + private $connection; |
|
48 | + /** @var \OCP\DB\QueryBuilder\IQueryBuilder */ |
|
49 | + private $updateQuery; |
|
50 | + |
|
51 | + function __construct(GlobalStoragesService $globalService, IDBConnection $connection) { |
|
52 | + parent::__construct(); |
|
53 | + $this->globalService = $globalService; |
|
54 | + $this->connection = $connection; |
|
55 | + // the query builder doesn't really like subqueries with parameters |
|
56 | + $this->updateQuery = $this->connection->prepare( |
|
57 | + 'UPDATE *PREFIX*filecache SET size = -1 |
|
58 | 58 | WHERE `path` = ? |
59 | 59 | AND `storage` IN (SELECT storage_id FROM *PREFIX*mounts WHERE mount_id = ?)' |
60 | - ); |
|
61 | - } |
|
62 | - |
|
63 | - protected function configure() { |
|
64 | - $this |
|
65 | - ->setName('files_external:notify') |
|
66 | - ->setDescription('Listen for active update notifications for a configured external mount') |
|
67 | - ->addArgument( |
|
68 | - 'mount_id', |
|
69 | - InputArgument::REQUIRED, |
|
70 | - 'the mount id of the mount to listen to' |
|
71 | - )->addOption( |
|
72 | - 'user', |
|
73 | - 'u', |
|
74 | - InputOption::VALUE_REQUIRED, |
|
75 | - 'The username for the remote mount (required only for some mount configuration that don\'t store credentials)' |
|
76 | - )->addOption( |
|
77 | - 'password', |
|
78 | - 'p', |
|
79 | - InputOption::VALUE_REQUIRED, |
|
80 | - 'The password for the remote mount (required only for some mount configuration that don\'t store credentials)' |
|
81 | - )->addOption( |
|
82 | - 'path', |
|
83 | - '', |
|
84 | - InputOption::VALUE_REQUIRED, |
|
85 | - 'The directory in the storage to listen for updates in', |
|
86 | - '/' |
|
87 | - ); |
|
88 | - parent::configure(); |
|
89 | - } |
|
90 | - |
|
91 | - protected function execute(InputInterface $input, OutputInterface $output) { |
|
92 | - $mount = $this->globalService->getStorage($input->getArgument('mount_id')); |
|
93 | - if (is_null($mount)) { |
|
94 | - $output->writeln('<error>Mount not found</error>'); |
|
95 | - return 1; |
|
96 | - } |
|
97 | - $noAuth = false; |
|
98 | - try { |
|
99 | - $authBackend = $mount->getAuthMechanism(); |
|
100 | - $authBackend->manipulateStorageConfig($mount); |
|
101 | - } catch (InsufficientDataForMeaningfulAnswerException $e) { |
|
102 | - $noAuth = true; |
|
103 | - } catch (StorageNotAvailableException $e) { |
|
104 | - $noAuth = true; |
|
105 | - } |
|
106 | - |
|
107 | - if ($input->getOption('user')) { |
|
108 | - $mount->setBackendOption('user', $input->getOption('user')); |
|
109 | - } else if (isset($_ENV['NOTIFY_USER'])) { |
|
110 | - $mount->setBackendOption('user', $_ENV['NOTIFY_USER']); |
|
111 | - } else if (isset($_SERVER['NOTIFY_USER'])) { |
|
112 | - $mount->setBackendOption('user', $_SERVER['NOTIFY_USER']); |
|
113 | - } |
|
114 | - if ($input->getOption('password')) { |
|
115 | - $mount->setBackendOption('password', $input->getOption('password')); |
|
116 | - } else if (isset($_ENV['NOTIFY_PASSWORD'])) { |
|
117 | - $mount->setBackendOption('password', $_ENV['NOTIFY_PASSWORD']); |
|
118 | - } else if (isset($_SERVER['NOTIFY_PASSWORD'])) { |
|
119 | - $mount->setBackendOption('password', $_SERVER['NOTIFY_PASSWORD']); |
|
120 | - } |
|
121 | - |
|
122 | - try { |
|
123 | - $storage = $this->createStorage($mount); |
|
124 | - } catch (\Exception $e) { |
|
125 | - $output->writeln('<error>Error while trying to create storage</error>'); |
|
126 | - if ($noAuth) { |
|
127 | - $output->writeln('<error>Username and/or password required</error>'); |
|
128 | - } |
|
129 | - return 1; |
|
130 | - } |
|
131 | - if (!$storage instanceof INotifyStorage) { |
|
132 | - $output->writeln('<error>Mount of type "' . $mount->getBackend()->getText() . '" does not support active update notifications</error>'); |
|
133 | - return 1; |
|
134 | - } |
|
135 | - |
|
136 | - $verbose = $input->getOption('verbose'); |
|
137 | - |
|
138 | - $path = trim($input->getOption('path'), '/'); |
|
139 | - $notifyHandler = $storage->notify($path); |
|
140 | - $this->selfTest($storage, $notifyHandler, $verbose, $output); |
|
141 | - $notifyHandler->listen(function (IChange $change) use ($mount, $verbose, $output) { |
|
142 | - if ($verbose) { |
|
143 | - $this->logUpdate($change, $output); |
|
144 | - } |
|
145 | - if ($change instanceof IRenameChange) { |
|
146 | - $this->markParentAsOutdated($mount->getId(), $change->getTargetPath()); |
|
147 | - } |
|
148 | - $this->markParentAsOutdated($mount->getId(), $change->getPath()); |
|
149 | - }); |
|
150 | - } |
|
151 | - |
|
152 | - private function createStorage(StorageConfig $mount) { |
|
153 | - $class = $mount->getBackend()->getStorageClass(); |
|
154 | - return new $class($mount->getBackendOptions()); |
|
155 | - } |
|
156 | - |
|
157 | - private function markParentAsOutdated($mountId, $path) { |
|
158 | - $parent = dirname($path); |
|
159 | - if ($parent === '.') { |
|
160 | - $parent = ''; |
|
161 | - } |
|
162 | - $this->updateQuery->execute([$parent, $mountId]); |
|
163 | - } |
|
164 | - |
|
165 | - private function logUpdate(IChange $change, OutputInterface $output) { |
|
166 | - switch ($change->getType()) { |
|
167 | - case INotifyStorage::NOTIFY_ADDED: |
|
168 | - $text = 'added'; |
|
169 | - break; |
|
170 | - case INotifyStorage::NOTIFY_MODIFIED: |
|
171 | - $text = 'modified'; |
|
172 | - break; |
|
173 | - case INotifyStorage::NOTIFY_REMOVED: |
|
174 | - $text = 'removed'; |
|
175 | - break; |
|
176 | - case INotifyStorage::NOTIFY_RENAMED: |
|
177 | - $text = 'renamed'; |
|
178 | - break; |
|
179 | - default: |
|
180 | - return; |
|
181 | - } |
|
182 | - |
|
183 | - $text .= ' ' . $change->getPath(); |
|
184 | - if ($change instanceof IRenameChange) { |
|
185 | - $text .= ' to ' . $change->getTargetPath(); |
|
186 | - } |
|
187 | - |
|
188 | - $output->writeln($text); |
|
189 | - } |
|
190 | - |
|
191 | - private function selfTest(IStorage $storage, INotifyHandler $notifyHandler, $verbose, OutputInterface $output) { |
|
192 | - usleep(100 * 1000); //give time for the notify to start |
|
193 | - $storage->file_put_contents('/.nc_test_file.txt', 'test content'); |
|
194 | - $storage->mkdir('/.nc_test_folder'); |
|
195 | - $storage->file_put_contents('/.nc_test_folder/subfile.txt', 'test content'); |
|
196 | - |
|
197 | - usleep(100 * 1000); //time for all changes to be processed |
|
198 | - $changes = $notifyHandler->getChanges(); |
|
199 | - |
|
200 | - $storage->unlink('/.nc_test_file.txt'); |
|
201 | - $storage->unlink('/.nc_test_folder/subfile.txt'); |
|
202 | - $storage->rmdir('/.nc_test_folder'); |
|
203 | - |
|
204 | - usleep(100 * 1000); //time for all changes to be processed |
|
205 | - $notifyHandler->getChanges(); // flush |
|
206 | - |
|
207 | - $foundRootChange = false; |
|
208 | - $foundSubfolderChange = false; |
|
209 | - |
|
210 | - foreach ($changes as $change) { |
|
211 | - if ($change->getPath() === '/.nc_test_file.txt' || $change->getPath() === '.nc_test_file.txt') { |
|
212 | - $foundRootChange = true; |
|
213 | - } else if ($change->getPath() === '/.nc_test_folder/subfile.txt' || $change->getPath() === '.nc_test_folder/subfile.txt') { |
|
214 | - $foundSubfolderChange = true; |
|
215 | - } |
|
216 | - } |
|
217 | - |
|
218 | - if ($foundRootChange && $foundSubfolderChange && $verbose) { |
|
219 | - $output->writeln('<info>Self-test successful</info>'); |
|
220 | - } else if ($foundRootChange && !$foundSubfolderChange) { |
|
221 | - $output->writeln('<error>Error while running self-test, change is subfolder not detected</error>'); |
|
222 | - } else if (!$foundRootChange) { |
|
223 | - $output->writeln('<error>Error while running self-test, no changes detected</error>'); |
|
224 | - } |
|
225 | - } |
|
60 | + ); |
|
61 | + } |
|
62 | + |
|
63 | + protected function configure() { |
|
64 | + $this |
|
65 | + ->setName('files_external:notify') |
|
66 | + ->setDescription('Listen for active update notifications for a configured external mount') |
|
67 | + ->addArgument( |
|
68 | + 'mount_id', |
|
69 | + InputArgument::REQUIRED, |
|
70 | + 'the mount id of the mount to listen to' |
|
71 | + )->addOption( |
|
72 | + 'user', |
|
73 | + 'u', |
|
74 | + InputOption::VALUE_REQUIRED, |
|
75 | + 'The username for the remote mount (required only for some mount configuration that don\'t store credentials)' |
|
76 | + )->addOption( |
|
77 | + 'password', |
|
78 | + 'p', |
|
79 | + InputOption::VALUE_REQUIRED, |
|
80 | + 'The password for the remote mount (required only for some mount configuration that don\'t store credentials)' |
|
81 | + )->addOption( |
|
82 | + 'path', |
|
83 | + '', |
|
84 | + InputOption::VALUE_REQUIRED, |
|
85 | + 'The directory in the storage to listen for updates in', |
|
86 | + '/' |
|
87 | + ); |
|
88 | + parent::configure(); |
|
89 | + } |
|
90 | + |
|
91 | + protected function execute(InputInterface $input, OutputInterface $output) { |
|
92 | + $mount = $this->globalService->getStorage($input->getArgument('mount_id')); |
|
93 | + if (is_null($mount)) { |
|
94 | + $output->writeln('<error>Mount not found</error>'); |
|
95 | + return 1; |
|
96 | + } |
|
97 | + $noAuth = false; |
|
98 | + try { |
|
99 | + $authBackend = $mount->getAuthMechanism(); |
|
100 | + $authBackend->manipulateStorageConfig($mount); |
|
101 | + } catch (InsufficientDataForMeaningfulAnswerException $e) { |
|
102 | + $noAuth = true; |
|
103 | + } catch (StorageNotAvailableException $e) { |
|
104 | + $noAuth = true; |
|
105 | + } |
|
106 | + |
|
107 | + if ($input->getOption('user')) { |
|
108 | + $mount->setBackendOption('user', $input->getOption('user')); |
|
109 | + } else if (isset($_ENV['NOTIFY_USER'])) { |
|
110 | + $mount->setBackendOption('user', $_ENV['NOTIFY_USER']); |
|
111 | + } else if (isset($_SERVER['NOTIFY_USER'])) { |
|
112 | + $mount->setBackendOption('user', $_SERVER['NOTIFY_USER']); |
|
113 | + } |
|
114 | + if ($input->getOption('password')) { |
|
115 | + $mount->setBackendOption('password', $input->getOption('password')); |
|
116 | + } else if (isset($_ENV['NOTIFY_PASSWORD'])) { |
|
117 | + $mount->setBackendOption('password', $_ENV['NOTIFY_PASSWORD']); |
|
118 | + } else if (isset($_SERVER['NOTIFY_PASSWORD'])) { |
|
119 | + $mount->setBackendOption('password', $_SERVER['NOTIFY_PASSWORD']); |
|
120 | + } |
|
121 | + |
|
122 | + try { |
|
123 | + $storage = $this->createStorage($mount); |
|
124 | + } catch (\Exception $e) { |
|
125 | + $output->writeln('<error>Error while trying to create storage</error>'); |
|
126 | + if ($noAuth) { |
|
127 | + $output->writeln('<error>Username and/or password required</error>'); |
|
128 | + } |
|
129 | + return 1; |
|
130 | + } |
|
131 | + if (!$storage instanceof INotifyStorage) { |
|
132 | + $output->writeln('<error>Mount of type "' . $mount->getBackend()->getText() . '" does not support active update notifications</error>'); |
|
133 | + return 1; |
|
134 | + } |
|
135 | + |
|
136 | + $verbose = $input->getOption('verbose'); |
|
137 | + |
|
138 | + $path = trim($input->getOption('path'), '/'); |
|
139 | + $notifyHandler = $storage->notify($path); |
|
140 | + $this->selfTest($storage, $notifyHandler, $verbose, $output); |
|
141 | + $notifyHandler->listen(function (IChange $change) use ($mount, $verbose, $output) { |
|
142 | + if ($verbose) { |
|
143 | + $this->logUpdate($change, $output); |
|
144 | + } |
|
145 | + if ($change instanceof IRenameChange) { |
|
146 | + $this->markParentAsOutdated($mount->getId(), $change->getTargetPath()); |
|
147 | + } |
|
148 | + $this->markParentAsOutdated($mount->getId(), $change->getPath()); |
|
149 | + }); |
|
150 | + } |
|
151 | + |
|
152 | + private function createStorage(StorageConfig $mount) { |
|
153 | + $class = $mount->getBackend()->getStorageClass(); |
|
154 | + return new $class($mount->getBackendOptions()); |
|
155 | + } |
|
156 | + |
|
157 | + private function markParentAsOutdated($mountId, $path) { |
|
158 | + $parent = dirname($path); |
|
159 | + if ($parent === '.') { |
|
160 | + $parent = ''; |
|
161 | + } |
|
162 | + $this->updateQuery->execute([$parent, $mountId]); |
|
163 | + } |
|
164 | + |
|
165 | + private function logUpdate(IChange $change, OutputInterface $output) { |
|
166 | + switch ($change->getType()) { |
|
167 | + case INotifyStorage::NOTIFY_ADDED: |
|
168 | + $text = 'added'; |
|
169 | + break; |
|
170 | + case INotifyStorage::NOTIFY_MODIFIED: |
|
171 | + $text = 'modified'; |
|
172 | + break; |
|
173 | + case INotifyStorage::NOTIFY_REMOVED: |
|
174 | + $text = 'removed'; |
|
175 | + break; |
|
176 | + case INotifyStorage::NOTIFY_RENAMED: |
|
177 | + $text = 'renamed'; |
|
178 | + break; |
|
179 | + default: |
|
180 | + return; |
|
181 | + } |
|
182 | + |
|
183 | + $text .= ' ' . $change->getPath(); |
|
184 | + if ($change instanceof IRenameChange) { |
|
185 | + $text .= ' to ' . $change->getTargetPath(); |
|
186 | + } |
|
187 | + |
|
188 | + $output->writeln($text); |
|
189 | + } |
|
190 | + |
|
191 | + private function selfTest(IStorage $storage, INotifyHandler $notifyHandler, $verbose, OutputInterface $output) { |
|
192 | + usleep(100 * 1000); //give time for the notify to start |
|
193 | + $storage->file_put_contents('/.nc_test_file.txt', 'test content'); |
|
194 | + $storage->mkdir('/.nc_test_folder'); |
|
195 | + $storage->file_put_contents('/.nc_test_folder/subfile.txt', 'test content'); |
|
196 | + |
|
197 | + usleep(100 * 1000); //time for all changes to be processed |
|
198 | + $changes = $notifyHandler->getChanges(); |
|
199 | + |
|
200 | + $storage->unlink('/.nc_test_file.txt'); |
|
201 | + $storage->unlink('/.nc_test_folder/subfile.txt'); |
|
202 | + $storage->rmdir('/.nc_test_folder'); |
|
203 | + |
|
204 | + usleep(100 * 1000); //time for all changes to be processed |
|
205 | + $notifyHandler->getChanges(); // flush |
|
206 | + |
|
207 | + $foundRootChange = false; |
|
208 | + $foundSubfolderChange = false; |
|
209 | + |
|
210 | + foreach ($changes as $change) { |
|
211 | + if ($change->getPath() === '/.nc_test_file.txt' || $change->getPath() === '.nc_test_file.txt') { |
|
212 | + $foundRootChange = true; |
|
213 | + } else if ($change->getPath() === '/.nc_test_folder/subfile.txt' || $change->getPath() === '.nc_test_folder/subfile.txt') { |
|
214 | + $foundSubfolderChange = true; |
|
215 | + } |
|
216 | + } |
|
217 | + |
|
218 | + if ($foundRootChange && $foundSubfolderChange && $verbose) { |
|
219 | + $output->writeln('<info>Self-test successful</info>'); |
|
220 | + } else if ($foundRootChange && !$foundSubfolderChange) { |
|
221 | + $output->writeln('<error>Error while running self-test, change is subfolder not detected</error>'); |
|
222 | + } else if (!$foundRootChange) { |
|
223 | + $output->writeln('<error>Error while running self-test, no changes detected</error>'); |
|
224 | + } |
|
225 | + } |
|
226 | 226 | } |
@@ -32,91 +32,91 @@ |
||
32 | 32 | use Symfony\Component\Console\Output\OutputInterface; |
33 | 33 | |
34 | 34 | class Backends extends Base { |
35 | - /** @var BackendService */ |
|
36 | - private $backendService; |
|
35 | + /** @var BackendService */ |
|
36 | + private $backendService; |
|
37 | 37 | |
38 | - function __construct(BackendService $backendService |
|
39 | - ) { |
|
40 | - parent::__construct(); |
|
38 | + function __construct(BackendService $backendService |
|
39 | + ) { |
|
40 | + parent::__construct(); |
|
41 | 41 | |
42 | - $this->backendService = $backendService; |
|
43 | - } |
|
42 | + $this->backendService = $backendService; |
|
43 | + } |
|
44 | 44 | |
45 | - protected function configure() { |
|
46 | - $this |
|
47 | - ->setName('files_external:backends') |
|
48 | - ->setDescription('Show available authentication and storage backends') |
|
49 | - ->addArgument( |
|
50 | - 'type', |
|
51 | - InputArgument::OPTIONAL, |
|
52 | - 'only show backends of a certain type. Possible values are "authentication" or "storage"' |
|
53 | - )->addArgument( |
|
54 | - 'backend', |
|
55 | - InputArgument::OPTIONAL, |
|
56 | - 'only show information of a specific backend' |
|
57 | - ); |
|
58 | - parent::configure(); |
|
59 | - } |
|
45 | + protected function configure() { |
|
46 | + $this |
|
47 | + ->setName('files_external:backends') |
|
48 | + ->setDescription('Show available authentication and storage backends') |
|
49 | + ->addArgument( |
|
50 | + 'type', |
|
51 | + InputArgument::OPTIONAL, |
|
52 | + 'only show backends of a certain type. Possible values are "authentication" or "storage"' |
|
53 | + )->addArgument( |
|
54 | + 'backend', |
|
55 | + InputArgument::OPTIONAL, |
|
56 | + 'only show information of a specific backend' |
|
57 | + ); |
|
58 | + parent::configure(); |
|
59 | + } |
|
60 | 60 | |
61 | - protected function execute(InputInterface $input, OutputInterface $output) { |
|
62 | - $authBackends = $this->backendService->getAuthMechanisms(); |
|
63 | - $storageBackends = $this->backendService->getBackends(); |
|
61 | + protected function execute(InputInterface $input, OutputInterface $output) { |
|
62 | + $authBackends = $this->backendService->getAuthMechanisms(); |
|
63 | + $storageBackends = $this->backendService->getBackends(); |
|
64 | 64 | |
65 | - $data = [ |
|
66 | - 'authentication' => array_map([$this, 'serializeAuthBackend'], $authBackends), |
|
67 | - 'storage' => array_map([$this, 'serializeAuthBackend'], $storageBackends) |
|
68 | - ]; |
|
65 | + $data = [ |
|
66 | + 'authentication' => array_map([$this, 'serializeAuthBackend'], $authBackends), |
|
67 | + 'storage' => array_map([$this, 'serializeAuthBackend'], $storageBackends) |
|
68 | + ]; |
|
69 | 69 | |
70 | - $type = $input->getArgument('type'); |
|
71 | - $backend = $input->getArgument('backend'); |
|
72 | - if ($type) { |
|
73 | - if (!isset($data[$type])) { |
|
74 | - $output->writeln('<error>Invalid type "' . $type . '". Possible values are "authentication" or "storage"</error>'); |
|
75 | - return 1; |
|
76 | - } |
|
77 | - $data = $data[$type]; |
|
70 | + $type = $input->getArgument('type'); |
|
71 | + $backend = $input->getArgument('backend'); |
|
72 | + if ($type) { |
|
73 | + if (!isset($data[$type])) { |
|
74 | + $output->writeln('<error>Invalid type "' . $type . '". Possible values are "authentication" or "storage"</error>'); |
|
75 | + return 1; |
|
76 | + } |
|
77 | + $data = $data[$type]; |
|
78 | 78 | |
79 | - if ($backend) { |
|
80 | - if (!isset($data[$backend])) { |
|
81 | - $output->writeln('<error>Unknown backend "' . $backend . '" of type "' . $type . '"</error>'); |
|
82 | - return 1; |
|
83 | - } |
|
84 | - $data = $data[$backend]; |
|
85 | - } |
|
86 | - } |
|
79 | + if ($backend) { |
|
80 | + if (!isset($data[$backend])) { |
|
81 | + $output->writeln('<error>Unknown backend "' . $backend . '" of type "' . $type . '"</error>'); |
|
82 | + return 1; |
|
83 | + } |
|
84 | + $data = $data[$backend]; |
|
85 | + } |
|
86 | + } |
|
87 | 87 | |
88 | - $this->writeArrayInOutputFormat($input, $output, $data); |
|
89 | - } |
|
88 | + $this->writeArrayInOutputFormat($input, $output, $data); |
|
89 | + } |
|
90 | 90 | |
91 | - private function serializeAuthBackend(\JsonSerializable $backend) { |
|
92 | - $data = $backend->jsonSerialize(); |
|
93 | - $result = [ |
|
94 | - 'name' => $data['name'], |
|
95 | - 'identifier' => $data['identifier'], |
|
96 | - 'configuration' => $this->formatConfiguration($data['configuration']) |
|
97 | - ]; |
|
98 | - if ($backend instanceof Backend) { |
|
99 | - $result['storage_class'] = $backend->getStorageClass(); |
|
100 | - $authBackends = $this->backendService->getAuthMechanismsByScheme(array_keys($backend->getAuthSchemes())); |
|
101 | - $result['supported_authentication_backends'] = array_keys($authBackends); |
|
102 | - $authConfig = array_map(function (AuthMechanism $auth) { |
|
103 | - return $this->serializeAuthBackend($auth)['configuration']; |
|
104 | - }, $authBackends); |
|
105 | - $result['authentication_configuration'] = array_combine(array_keys($authBackends), $authConfig); |
|
106 | - } |
|
107 | - return $result; |
|
108 | - } |
|
91 | + private function serializeAuthBackend(\JsonSerializable $backend) { |
|
92 | + $data = $backend->jsonSerialize(); |
|
93 | + $result = [ |
|
94 | + 'name' => $data['name'], |
|
95 | + 'identifier' => $data['identifier'], |
|
96 | + 'configuration' => $this->formatConfiguration($data['configuration']) |
|
97 | + ]; |
|
98 | + if ($backend instanceof Backend) { |
|
99 | + $result['storage_class'] = $backend->getStorageClass(); |
|
100 | + $authBackends = $this->backendService->getAuthMechanismsByScheme(array_keys($backend->getAuthSchemes())); |
|
101 | + $result['supported_authentication_backends'] = array_keys($authBackends); |
|
102 | + $authConfig = array_map(function (AuthMechanism $auth) { |
|
103 | + return $this->serializeAuthBackend($auth)['configuration']; |
|
104 | + }, $authBackends); |
|
105 | + $result['authentication_configuration'] = array_combine(array_keys($authBackends), $authConfig); |
|
106 | + } |
|
107 | + return $result; |
|
108 | + } |
|
109 | 109 | |
110 | - /** |
|
111 | - * @param DefinitionParameter[] $parameters |
|
112 | - * @return string[] |
|
113 | - */ |
|
114 | - private function formatConfiguration(array $parameters) { |
|
115 | - $configuration = array_filter($parameters, function (DefinitionParameter $parameter) { |
|
116 | - return $parameter->getType() !== DefinitionParameter::VALUE_HIDDEN; |
|
117 | - }); |
|
118 | - return array_map(function (DefinitionParameter $parameter) { |
|
119 | - return $parameter->getTypeName(); |
|
120 | - }, $configuration); |
|
121 | - } |
|
110 | + /** |
|
111 | + * @param DefinitionParameter[] $parameters |
|
112 | + * @return string[] |
|
113 | + */ |
|
114 | + private function formatConfiguration(array $parameters) { |
|
115 | + $configuration = array_filter($parameters, function (DefinitionParameter $parameter) { |
|
116 | + return $parameter->getType() !== DefinitionParameter::VALUE_HIDDEN; |
|
117 | + }); |
|
118 | + return array_map(function (DefinitionParameter $parameter) { |
|
119 | + return $parameter->getTypeName(); |
|
120 | + }, $configuration); |
|
121 | + } |
|
122 | 122 | } |
@@ -71,14 +71,14 @@ discard block |
||
71 | 71 | $backend = $input->getArgument('backend'); |
72 | 72 | if ($type) { |
73 | 73 | if (!isset($data[$type])) { |
74 | - $output->writeln('<error>Invalid type "' . $type . '". Possible values are "authentication" or "storage"</error>'); |
|
74 | + $output->writeln('<error>Invalid type "'.$type.'". Possible values are "authentication" or "storage"</error>'); |
|
75 | 75 | return 1; |
76 | 76 | } |
77 | 77 | $data = $data[$type]; |
78 | 78 | |
79 | 79 | if ($backend) { |
80 | 80 | if (!isset($data[$backend])) { |
81 | - $output->writeln('<error>Unknown backend "' . $backend . '" of type "' . $type . '"</error>'); |
|
81 | + $output->writeln('<error>Unknown backend "'.$backend.'" of type "'.$type.'"</error>'); |
|
82 | 82 | return 1; |
83 | 83 | } |
84 | 84 | $data = $data[$backend]; |
@@ -99,7 +99,7 @@ discard block |
||
99 | 99 | $result['storage_class'] = $backend->getStorageClass(); |
100 | 100 | $authBackends = $this->backendService->getAuthMechanismsByScheme(array_keys($backend->getAuthSchemes())); |
101 | 101 | $result['supported_authentication_backends'] = array_keys($authBackends); |
102 | - $authConfig = array_map(function (AuthMechanism $auth) { |
|
102 | + $authConfig = array_map(function(AuthMechanism $auth) { |
|
103 | 103 | return $this->serializeAuthBackend($auth)['configuration']; |
104 | 104 | }, $authBackends); |
105 | 105 | $result['authentication_configuration'] = array_combine(array_keys($authBackends), $authConfig); |
@@ -112,10 +112,10 @@ discard block |
||
112 | 112 | * @return string[] |
113 | 113 | */ |
114 | 114 | private function formatConfiguration(array $parameters) { |
115 | - $configuration = array_filter($parameters, function (DefinitionParameter $parameter) { |
|
115 | + $configuration = array_filter($parameters, function(DefinitionParameter $parameter) { |
|
116 | 116 | return $parameter->getType() !== DefinitionParameter::VALUE_HIDDEN; |
117 | 117 | }); |
118 | - return array_map(function (DefinitionParameter $parameter) { |
|
118 | + return array_map(function(DefinitionParameter $parameter) { |
|
119 | 119 | return $parameter->getTypeName(); |
120 | 120 | }, $configuration); |
121 | 121 | } |
@@ -28,55 +28,55 @@ |
||
28 | 28 | use OCP\Settings\IIconSection; |
29 | 29 | |
30 | 30 | class Section implements IIconSection { |
31 | - /** @var IL10N */ |
|
32 | - private $l; |
|
33 | - /** @var IURLGenerator */ |
|
34 | - private $url; |
|
31 | + /** @var IL10N */ |
|
32 | + private $l; |
|
33 | + /** @var IURLGenerator */ |
|
34 | + private $url; |
|
35 | 35 | |
36 | - /** |
|
37 | - * @param IURLGenerator $url |
|
38 | - * @param IL10N $l |
|
39 | - */ |
|
40 | - public function __construct(IURLGenerator $url, IL10N $l) { |
|
41 | - $this->url = $url; |
|
42 | - $this->l = $l; |
|
43 | - } |
|
36 | + /** |
|
37 | + * @param IURLGenerator $url |
|
38 | + * @param IL10N $l |
|
39 | + */ |
|
40 | + public function __construct(IURLGenerator $url, IL10N $l) { |
|
41 | + $this->url = $url; |
|
42 | + $this->l = $l; |
|
43 | + } |
|
44 | 44 | |
45 | - /** |
|
46 | - * returns the ID of the section. It is supposed to be a lower case string, |
|
47 | - * e.g. 'ldap' |
|
48 | - * |
|
49 | - * @returns string |
|
50 | - */ |
|
51 | - public function getID() { |
|
52 | - return 'externalstorages'; |
|
53 | - } |
|
45 | + /** |
|
46 | + * returns the ID of the section. It is supposed to be a lower case string, |
|
47 | + * e.g. 'ldap' |
|
48 | + * |
|
49 | + * @returns string |
|
50 | + */ |
|
51 | + public function getID() { |
|
52 | + return 'externalstorages'; |
|
53 | + } |
|
54 | 54 | |
55 | - /** |
|
56 | - * returns the translated name as it should be displayed, e.g. 'LDAP / AD |
|
57 | - * integration'. Use the L10N service to translate it. |
|
58 | - * |
|
59 | - * @return string |
|
60 | - */ |
|
61 | - public function getName() { |
|
62 | - return $this->l->t('External storages'); |
|
63 | - } |
|
55 | + /** |
|
56 | + * returns the translated name as it should be displayed, e.g. 'LDAP / AD |
|
57 | + * integration'. Use the L10N service to translate it. |
|
58 | + * |
|
59 | + * @return string |
|
60 | + */ |
|
61 | + public function getName() { |
|
62 | + return $this->l->t('External storages'); |
|
63 | + } |
|
64 | 64 | |
65 | - /** |
|
66 | - * @return int whether the form should be rather on the top or bottom of |
|
67 | - * the settings navigation. The sections are arranged in ascending order of |
|
68 | - * the priority values. It is required to return a value between 0 and 99. |
|
69 | - * |
|
70 | - * E.g.: 70 |
|
71 | - */ |
|
72 | - public function getPriority() { |
|
73 | - return 10; |
|
74 | - } |
|
65 | + /** |
|
66 | + * @return int whether the form should be rather on the top or bottom of |
|
67 | + * the settings navigation. The sections are arranged in ascending order of |
|
68 | + * the priority values. It is required to return a value between 0 and 99. |
|
69 | + * |
|
70 | + * E.g.: 70 |
|
71 | + */ |
|
72 | + public function getPriority() { |
|
73 | + return 10; |
|
74 | + } |
|
75 | 75 | |
76 | - /** |
|
77 | - * {@inheritdoc} |
|
78 | - */ |
|
79 | - public function getIcon() { |
|
80 | - return $this->url->imagePath('files_external', 'app-dark.svg'); |
|
81 | - } |
|
76 | + /** |
|
77 | + * {@inheritdoc} |
|
78 | + */ |
|
79 | + public function getIcon() { |
|
80 | + return $this->url->imagePath('files_external', 'app-dark.svg'); |
|
81 | + } |
|
82 | 82 | } |
@@ -32,65 +32,65 @@ |
||
32 | 32 | |
33 | 33 | class Admin implements ISettings { |
34 | 34 | |
35 | - /** @var IManager */ |
|
36 | - private $encryptionManager; |
|
35 | + /** @var IManager */ |
|
36 | + private $encryptionManager; |
|
37 | 37 | |
38 | - /** @var GlobalStoragesService */ |
|
39 | - private $globalStoragesService; |
|
38 | + /** @var GlobalStoragesService */ |
|
39 | + private $globalStoragesService; |
|
40 | 40 | |
41 | - /** @var BackendService */ |
|
42 | - private $backendService; |
|
41 | + /** @var BackendService */ |
|
42 | + private $backendService; |
|
43 | 43 | |
44 | - /** @var GlobalAuth */ |
|
45 | - private $globalAuth; |
|
44 | + /** @var GlobalAuth */ |
|
45 | + private $globalAuth; |
|
46 | 46 | |
47 | - public function __construct( |
|
48 | - IManager $encryptionManager, |
|
49 | - GlobalStoragesService $globalStoragesService, |
|
50 | - BackendService $backendService, |
|
51 | - GlobalAuth $globalAuth |
|
52 | - ) { |
|
53 | - $this->encryptionManager = $encryptionManager; |
|
54 | - $this->globalStoragesService = $globalStoragesService; |
|
55 | - $this->backendService = $backendService; |
|
56 | - $this->globalAuth = $globalAuth; |
|
57 | - } |
|
47 | + public function __construct( |
|
48 | + IManager $encryptionManager, |
|
49 | + GlobalStoragesService $globalStoragesService, |
|
50 | + BackendService $backendService, |
|
51 | + GlobalAuth $globalAuth |
|
52 | + ) { |
|
53 | + $this->encryptionManager = $encryptionManager; |
|
54 | + $this->globalStoragesService = $globalStoragesService; |
|
55 | + $this->backendService = $backendService; |
|
56 | + $this->globalAuth = $globalAuth; |
|
57 | + } |
|
58 | 58 | |
59 | - /** |
|
60 | - * @return TemplateResponse |
|
61 | - */ |
|
62 | - public function getForm() { |
|
63 | - $parameters = [ |
|
64 | - 'encryptionEnabled' => $this->encryptionManager->isEnabled(), |
|
65 | - 'visibilityType' => BackendService::VISIBILITY_ADMIN, |
|
66 | - 'storages' => $this->globalStoragesService->getStorages(), |
|
67 | - 'backends' => $this->backendService->getAvailableBackends(), |
|
68 | - 'authMechanisms' => $this->backendService->getAuthMechanisms(), |
|
69 | - 'dependencies' => \OC_Mount_Config::dependencyMessage($this->backendService->getBackends()), |
|
70 | - 'allowUserMounting' => $this->backendService->isUserMountingAllowed(), |
|
71 | - 'globalCredentials' => $this->globalAuth->getAuth(''), |
|
72 | - 'globalCredentialsUid' => '', |
|
73 | - ]; |
|
59 | + /** |
|
60 | + * @return TemplateResponse |
|
61 | + */ |
|
62 | + public function getForm() { |
|
63 | + $parameters = [ |
|
64 | + 'encryptionEnabled' => $this->encryptionManager->isEnabled(), |
|
65 | + 'visibilityType' => BackendService::VISIBILITY_ADMIN, |
|
66 | + 'storages' => $this->globalStoragesService->getStorages(), |
|
67 | + 'backends' => $this->backendService->getAvailableBackends(), |
|
68 | + 'authMechanisms' => $this->backendService->getAuthMechanisms(), |
|
69 | + 'dependencies' => \OC_Mount_Config::dependencyMessage($this->backendService->getBackends()), |
|
70 | + 'allowUserMounting' => $this->backendService->isUserMountingAllowed(), |
|
71 | + 'globalCredentials' => $this->globalAuth->getAuth(''), |
|
72 | + 'globalCredentialsUid' => '', |
|
73 | + ]; |
|
74 | 74 | |
75 | - return new TemplateResponse('files_external', 'settings', $parameters, ''); |
|
76 | - } |
|
75 | + return new TemplateResponse('files_external', 'settings', $parameters, ''); |
|
76 | + } |
|
77 | 77 | |
78 | - /** |
|
79 | - * @return string the section ID, e.g. 'sharing' |
|
80 | - */ |
|
81 | - public function getSection() { |
|
82 | - return 'externalstorages'; |
|
83 | - } |
|
78 | + /** |
|
79 | + * @return string the section ID, e.g. 'sharing' |
|
80 | + */ |
|
81 | + public function getSection() { |
|
82 | + return 'externalstorages'; |
|
83 | + } |
|
84 | 84 | |
85 | - /** |
|
86 | - * @return int whether the form should be rather on the top or bottom of |
|
87 | - * the admin section. The forms are arranged in ascending order of the |
|
88 | - * priority values. It is required to return a value between 0 and 100. |
|
89 | - * |
|
90 | - * E.g.: 70 |
|
91 | - */ |
|
92 | - public function getPriority() { |
|
93 | - return 40; |
|
94 | - } |
|
85 | + /** |
|
86 | + * @return int whether the form should be rather on the top or bottom of |
|
87 | + * the admin section. The forms are arranged in ascending order of the |
|
88 | + * priority values. It is required to return a value between 0 and 100. |
|
89 | + * |
|
90 | + * E.g.: 70 |
|
91 | + */ |
|
92 | + public function getPriority() { |
|
93 | + return 40; |
|
94 | + } |
|
95 | 95 | |
96 | 96 | } |