Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F101221613
PhabricatorConfigManagementGetWorkflow.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Thu, Feb 6, 23:10
Size
1 KB
Mime Type
text/x-php
Expires
Sat, Feb 8, 23:10 (2 d)
Engine
blob
Format
Raw Data
Handle
24115194
Attached To
rPH Phabricator
PhabricatorConfigManagementGetWorkflow.php
View Options
<?php
final
class
PhabricatorConfigManagementGetWorkflow
extends
PhabricatorConfigManagementWorkflow
{
protected
function
didConstruct
()
{
$this
->
setName
(
'get'
)
->
setExamples
(
'**get** __key__'
)
->
setSynopsis
(
'Get a local configuration value.'
)
->
setArguments
(
array
(
array
(
'name'
=>
'args'
,
'wildcard'
=>
true
,
),
));
}
public
function
execute
(
PhutilArgumentParser
$args
)
{
$console
=
PhutilConsole
::
getConsole
();
$argv
=
$args
->
getArg
(
'args'
);
if
(
count
(
$argv
)
==
0
)
{
throw
new
PhutilArgumentUsageException
(
"Specify a configuration key to get."
);
}
$key
=
$argv
[
0
];
if
(
count
(
$argv
)
>
1
)
{
throw
new
PhutilArgumentUsageException
(
"Too many arguments: expected one key."
);
}
$options
=
PhabricatorApplicationConfigOptions
::
loadAllOptions
();
if
(
empty
(
$options
[
$key
]))
{
throw
new
PhutilArgumentUsageException
(
"No such configuration key '{$key}'! Use `config list` to list all "
.
"keys."
);
}
$config
=
new
PhabricatorConfigLocalSource
();
$values
=
$config
->
getKeys
(
array
(
$key
));
$result
=
array
();
foreach
(
$values
as
$key
=>
$value
)
{
$result
[]
=
array
(
'key'
=>
$key
,
'source'
=>
'local'
,
'value'
=>
$value
,
);
}
$result
=
array
(
'config'
=>
$result
,
);
$json
=
new
PhutilJSON
();
$console
->
writeOut
(
$json
->
encodeFormatted
(
$result
));
}
}
Event Timeline
Log In to Comment