Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F109673510
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
Tue, Apr 22, 22:54
Size
1 KB
Mime Type
text/x-php
Expires
Thu, Apr 24, 22:54 (2 d)
Engine
blob
Format
Raw Data
Handle
25747437
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