Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F100724864
FeedPublisherHTTPWorker.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, Feb 2, 05:36
Size
733 B
Mime Type
text/x-php
Expires
Tue, Feb 4, 05:36 (2 d)
Engine
blob
Format
Raw Data
Handle
24021456
Attached To
rPH Phabricator
FeedPublisherHTTPWorker.php
View Options
<?php
final
class
FeedPublisherHTTPWorker
extends
FeedPushWorker
{
protected
function
doWork
()
{
$story
=
$this
->
loadFeedStory
();
$data
=
$story
->
getStoryData
();
$uri
=
idx
(
$this
->
getTaskData
(),
'uri'
);
$post_data
=
array
(
'storyID'
=>
$data
->
getID
(),
'storyType'
=>
$data
->
getStoryType
(),
'storyData'
=>
$data
->
getStoryData
(),
'storyAuthorPHID'
=>
$data
->
getAuthorPHID
(),
'epoch'
=>
$data
->
getEpoch
(),
);
id
(
new
HTTPFuture
(
$uri
,
$post_data
))
->
setMethod
(
'POST'
)
->
setTimeout
(
30
)
->
resolvex
();
}
public
function
getWaitBeforeRetry
(
PhabricatorWorkerTask
$task
)
{
return
max
(
$task
->
getFailureCount
(),
1
)
*
60
;
}
}
Event Timeline
Log In to Comment