Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F2895595
PhabricatorPolicyManagementUnlockWorkflow.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Award Token
Flag For Later
Advanced/Developer...
View Handle
View Hovercard
Size
3 KB
Referenced Files
None
Subscribers
None
PhabricatorPolicyManagementUnlockWorkflow.php
View Options
<?php
final
class
PhabricatorPolicyManagementUnlockWorkflow
extends
PhabricatorPolicyManagementWorkflow
{
protected
function
didConstruct
(
)
{
$this
->
setName
(
'unlock'
)
->
setSynopsis
(
'Unlock an object by setting its policies to allow anyone to view '
.
'and edit it.'
)
->
setExamples
(
"**unlock** D123"
)
->
setArguments
(
array
(
array
(
'name'
=>
'objects'
,
'wildcard'
=>
true
,
)
,
)
)
;
}
public
function
execute
(
PhutilArgumentParser
$args
)
{
$console
=
PhutilConsole
::
getConsole
(
)
;
$viewer
=
PhabricatorUser
::
getOmnipotentUser
(
)
;
$obj_names
=
$args
->
getArg
(
'objects'
)
;
if
(
!
$obj_names
)
{
throw
new
PhutilArgumentUsageException
(
pht
(
"Specify the name of an object to unlock."
)
)
;
}
else
if
(
count
(
$obj_names
)
>
1
)
{
throw
new
PhutilArgumentUsageException
(
pht
(
"Specify the name of exactly one object to unlock."
)
)
;
}
$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
(
)
;
$console
->
writeOut
(
"%s\n"
,
pht
(
'Unlocking: %s'
,
$handle
->
getFullName
(
)
)
)
;
$updated
=
false
;
foreach
(
$object
->
getCapabilities
(
)
as
$capability
)
{
switch
(
$capability
)
{
case
PhabricatorPolicyCapability
::
CAN_VIEW
:
try
{
$object
->
setViewPolicy
(
PhabricatorPolicies
::
POLICY_USER
)
;
$console
->
writeOut
(
"%s\n"
,
pht
(
'Unlocked view policy.'
)
)
;
$updated
=
true
;
}
catch
(
Exception
$ex
)
{
$console
->
writeOut
(
"%s\n"
,
pht
(
'View policy is not mutable.'
)
)
;
}
break
;
case
PhabricatorPolicyCapability
::
CAN_EDIT
:
try
{
$object
->
setEditPolicy
(
PhabricatorPolicies
::
POLICY_USER
)
;
$console
->
writeOut
(
"%s\n"
,
pht
(
'Unlocked edit policy.'
)
)
;
$updated
=
true
;
}
catch
(
Exception
$ex
)
{
$console
->
writeOut
(
"%s\n"
,
pht
(
'Edit policy is not mutable.'
)
)
;
}
break
;
case
PhabricatorPolicyCapability
::
CAN_JOIN
:
try
{
$object
->
setJoinPolicy
(
PhabricatorPolicies
::
POLICY_USER
)
;
$console
->
writeOut
(
"%s\n"
,
pht
(
'Unlocked join policy.'
)
)
;
$updated
=
true
;
}
catch
(
Exception
$ex
)
{
$console
->
writeOut
(
"%s\n"
,
pht
(
'Join policy is not mutable.'
)
)
;
}
break
;
}
}
if
(
$updated
)
{
$object
->
save
(
)
;
$console
->
writeOut
(
"%s\n"
,
pht
(
'Saved object.'
)
)
;
}
else
{
$console
->
writeOut
(
"%s\n"
,
pht
(
'Object has no mutable policies. Try unlocking parent/container '
.
'object instead. For example, to gain access to a commit, unlock '
.
'the repository it belongs to.'
)
)
;
}
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Jan 19 2025, 21:42 (6 w, 2 d ago)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
1129059
Default Alt Text
PhabricatorPolicyManagementUnlockWorkflow.php (3 KB)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment