Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Sanitize output of command oauth2:list-clients #315

Merged
merged 2 commits into from
Oct 26, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 6 additions & 7 deletions lib/Commands/ListClients.php
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ public function __construct(ClientMapper $clientMapper) {
protected function configure() {
parent::configure();
$this
->setName('oauth2:list')
->setName('oauth2:list-clients')
->setDescription('Lists OAuth2 clients');
}

Expand All @@ -58,13 +58,12 @@ protected function execute(InputInterface $input, OutputInterface $output) {
/** @var \OCA\OAuth2\Db\Client $client */
foreach ($clients as $client) {
$clientsOutput[$client->getName()] = [
'id' => $client->getId(),
'name' => $client->getName(),
'redirectUri' => $client->getRedirectUri(),
'identifier' => $client->getIdentifier(),
'secret' => $client->getSecret(),
'subdomainsAllowed' => $client->getAllowSubdomains() === true ? 'yes' : 'no',
'trusted' => $client->getTrusted() === true ? 'yes' : 'no',
'redirect-url' => $client->getRedirectUri(),
'client-id' => $client->getIdentifier(),
'client-secret' => $client->getSecret(),
'allow-sub-domains' => $client->getAllowSubdomains(),
'trusted' => $client->getTrusted(),
];
}
parent::writeArrayInOutputFormat($input, $output, $clientsOutput, self::DEFAULT_OUTPUT_PREFIX, true);
Expand Down