Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F90359333
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
Thu, Oct 31, 23:02
Size
958 B
Mime Type
text/x-php
Expires
Sat, Nov 2, 23:02 (1 d, 21 h)
Engine
blob
Format
Raw Data
Handle
22029454
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'
);
$valid_uris
=
PhabricatorEnv
::
getEnvConfig
(
'feed.http-hooks'
);
if
(!
in_array
(
$uri
,
$valid_uris
))
{
throw
new
PhabricatorWorkerPermanentFailureException
();
}
$post_data
=
array
(
'storyID'
=>
$data
->
getID
(),
'storyType'
=>
$data
->
getStoryType
(),
'storyData'
=>
$data
->
getStoryData
(),
'storyAuthorPHID'
=>
$data
->
getAuthorPHID
(),
'storyText'
=>
$story
->
renderText
(),
'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