-
Notifications
You must be signed in to change notification settings - Fork 82
Expand file tree
/
Copy pathConfigSet.php
More file actions
76 lines (64 loc) · 1.86 KB
/
ConfigSet.php
File metadata and controls
76 lines (64 loc) · 1.86 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
<?php
declare(strict_types=1);
/**
* SPDX-FileCopyrightText: 2021 Nextcloud GmbH and Nextcloud contributors
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
namespace OCA\User_SAML\Command;
use OC\Core\Command\Base;
use OCA\User_SAML\SAMLSettings;
use OCP\DB\Exception;
use Symfony\Component\Console\Input\InputArgument;
use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Input\InputOption;
use Symfony\Component\Console\Output\OutputInterface;
class ConfigSet extends Base {
public function __construct(
private SAMLSettings $samlSettings,
) {
parent::__construct();
}
protected function configure(): void {
$this->setName('saml:config:set');
$this->addArgument(
'providerId',
InputArgument::REQUIRED,
'ProviderID of the SAML config to edit'
);
foreach (SAMLSettings::IDP_CONFIG_KEYS as $key) {
$this->addOption(
$key,
null,
InputOption::VALUE_REQUIRED,
);
}
parent::configure();
}
protected function execute(InputInterface $input, OutputInterface $output): int {
$pId = (int)$input->getArgument('providerId');
if ((string)$pId !== $input->getArgument('providerId')) {
// Make sure we don't delete provider with id 0 by error
$output->writeln('<error>providerId argument needs to be an number. Got: ' . $pId . '</error>');
return 1;
}
try {
$settings = $this->samlSettings->get($pId);
} catch (Exception $e) {
$output->writeln('<error>Provider with id: ' . $pId . ' does not exist.</error>');
return 1;
}
foreach ($input->getOptions() as $key => $value) {
if (!in_array($key, SAMLSettings::IDP_CONFIG_KEYS) || $value === null) {
continue;
}
if ($value === '') {
unset($settings[$key]);
continue;
}
$settings[$key] = $value;
}
$this->samlSettings->set($pId, $settings);
$output->writeln('The provider\'s config was updated.');
return 0;
}
}