Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F121794313
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, Jul 13, 23:17
Size
734 B
Mime Type
text/x-php
Expires
Tue, Jul 15, 23:17 (2 d)
Engine
blob
Format
Raw Data
Handle
27350565
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
HTTPSFuture
(
$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