Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F111245723
PhabricatorFeedManagementRepublishWorkflow.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
Wed, Apr 30, 09:03
Size
1 KB
Mime Type
text/x-php
Expires
Fri, May 2, 09:03 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
25822930
Attached To
rPH Phabricator
PhabricatorFeedManagementRepublishWorkflow.php
View Options
<?php
final
class
PhabricatorFeedManagementRepublishWorkflow
extends
PhabricatorFeedManagementWorkflow
{
protected
function
didConstruct
()
{
$this
->
setName
(
'republish'
)
->
setExamples
(
'**republish** __story_key__'
)
->
setSynopsis
(
pht
(
'Republish a feed event to all consumers.'
))
->
setArguments
(
array
(
array
(
'name'
=>
'key'
,
'wildcard'
=>
true
,
),
));
}
public
function
execute
(
PhutilArgumentParser
$args
)
{
$console
=
PhutilConsole
::
getConsole
();
$viewer
=
$this
->
getViewer
();
$key
=
$args
->
getArg
(
'key'
);
if
(
count
(
$key
)
<
1
)
{
throw
new
PhutilArgumentUsageException
(
pht
(
'Specify a story key to republish.'
));
}
else
if
(
count
(
$key
)
>
1
)
{
throw
new
PhutilArgumentUsageException
(
pht
(
'Specify exactly one story key to republish.'
));
}
$key
=
head
(
$key
);
$story
=
id
(
new
PhabricatorFeedQuery
())
->
setViewer
(
$viewer
)
->
withChronologicalKeys
(
array
(
$key
))
->
executeOne
();
if
(!
$story
)
{
throw
new
PhutilArgumentUsageException
(
pht
(
'No story exists with key "%s"!'
,
$key
));
}
$console
->
writeOut
(
"%s
\n
"
,
pht
(
'Republishing story...'
));
PhabricatorWorker
::
setRunAllTasksInProcess
(
true
);
PhabricatorWorker
::
scheduleTask
(
'FeedPublisherWorker'
,
array
(
'key'
=>
$key
,
));
$console
->
writeOut
(
"%s
\n
"
,
pht
(
'Done.'
));
return
0
;
}
}
Event Timeline
Log In to Comment