Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F92653907
PhabricatorPolicyManagementShowWorkflow.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
Fri, Nov 22, 10:27
Size
2 KB
Mime Type
text/x-php
Expires
Sun, Nov 24, 10:27 (1 d, 18 h)
Engine
blob
Format
Raw Data
Handle
22478578
Attached To
rPH Phabricator
PhabricatorPolicyManagementShowWorkflow.php
View Options
<?php
final
class
PhabricatorPolicyManagementShowWorkflow
extends
PhabricatorPolicyManagementWorkflow
{
protected
function
didConstruct
()
{
$this
->
setName
(
'show'
)
->
setSynopsis
(
pht
(
'Show policy information about an object.'
))
->
setExamples
(
'**show** D123'
)
->
setArguments
(
array
(
array
(
'name'
=>
'objects'
,
'wildcard'
=>
true
,
),
));
}
public
function
execute
(
PhutilArgumentParser
$args
)
{
$console
=
PhutilConsole
::
getConsole
();
$viewer
=
$this
->
getViewer
();
$obj_names
=
$args
->
getArg
(
'objects'
);
if
(!
$obj_names
)
{
throw
new
PhutilArgumentUsageException
(
pht
(
'Specify the name of an object to show policy information for.'
));
}
else
if
(
count
(
$obj_names
)
>
1
)
{
throw
new
PhutilArgumentUsageException
(
pht
(
'Specify the name of exactly one object to show policy information '
.
'for.'
));
}
$object
=
id
(
new
PhabricatorObjectQuery
())
->
setViewer
(
$viewer
)
->
withNames
(
$obj_names
)
->
executeOne
();
if
(!
$object
)
{
$name
=
head
(
$obj_names
);
throw
new
PhutilArgumentUsageException
(
pht
(
"No such object '%s'!"
,
$name
));
}
$handle
=
id
(
new
PhabricatorHandleQuery
())
->
setViewer
(
$viewer
)
->
withPHIDs
(
array
(
$object
->
getPHID
()))
->
executeOne
();
$policies
=
PhabricatorPolicyQuery
::
loadPolicies
(
$viewer
,
$object
);
$console
->
writeOut
(
"__%s__
\n\n
"
,
pht
(
'OBJECT'
));
$console
->
writeOut
(
" %s
\n
"
,
$handle
->
getFullName
());
$console
->
writeOut
(
"
\n
"
);
$console
->
writeOut
(
"__%s__
\n\n
"
,
pht
(
'CAPABILITIES'
));
foreach
(
$policies
as
$capability
=>
$policy
)
{
$console
->
writeOut
(
" **%s**
\n
"
,
$capability
);
$console
->
writeOut
(
" %s
\n
"
,
$policy
->
renderDescription
());
$console
->
writeOut
(
" %s
\n
"
,
PhabricatorPolicy
::
getPolicyExplanation
(
$viewer
,
$policy
->
getPHID
()));
$console
->
writeOut
(
"
\n
"
);
$more
=
(
array
)
$object
->
describeAutomaticCapability
(
$capability
);
if
(
$more
)
{
foreach
(
$more
as
$line
)
{
$console
->
writeOut
(
" %s
\n
"
,
$line
);
}
$console
->
writeOut
(
"
\n
"
);
}
}
}
}
Event Timeline
Log In to Comment