Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F108055685
PhabricatorConfigManagementDoneWorkflow.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
Sun, Apr 13, 17:31
Size
1 KB
Mime Type
text/x-php
Expires
Tue, Apr 15, 17:31 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
25527075
Attached To
rPH Phabricator
PhabricatorConfigManagementDoneWorkflow.php
View Options
<?php
final
class
PhabricatorConfigManagementDoneWorkflow
extends
PhabricatorConfigManagementWorkflow
{
protected
function
didConstruct
()
{
$this
->
setName
(
'done'
)
->
setExamples
(
'**done** __activity__'
)
->
setSynopsis
(
pht
(
'Mark a manual upgrade activity as complete.'
))
->
setArguments
(
array
(
array
(
'name'
=>
'force'
,
'short'
=>
'f'
,
'help'
=>
pht
(
'Mark activities complete even if there is no outstanding '
.
'need to complete them.'
),
),
array
(
'name'
=>
'activities'
,
'wildcard'
=>
true
,
),
));
}
public
function
execute
(
PhutilArgumentParser
$args
)
{
$is_force
=
$args
->
getArg
(
'force'
);
$activities
=
$args
->
getArg
(
'activities'
);
if
(!
$activities
)
{
throw
new
PhutilArgumentUsageException
(
pht
(
'Specify an activity to mark as completed.'
));
}
foreach
(
$activities
as
$type
)
{
$activity
=
id
(
new
PhabricatorConfigManualActivity
())->
loadOneWhere
(
'activityType = %s'
,
$type
);
if
(!
$activity
)
{
if
(
$is_force
)
{
echo
tsprintf
(
"%s
\n
"
,
pht
(
'Activity "%s" did not need to be marked as complete.'
,
$type
));
}
else
{
throw
new
PhutilArgumentUsageException
(
pht
(
'Activity "%s" is not currently marked as required, so there '
.
'is no need to complete it.'
,
$type
));
}
}
else
{
$activity
->
delete
();
echo
tsprintf
(
"%s
\n
"
,
pht
(
'Marked activity "%s" as completed.'
,
$type
));
}
}
echo
tsprintf
(
"%s
\n
"
,
pht
(
'Done.'
));
return
0
;
}
}
Event Timeline
Log In to Comment