Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F121928939
ConduitAPI_diffusion_looksoon_Method.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
Mon, Jul 14, 22:00
Size
1 KB
Mime Type
text/x-php
Expires
Wed, Jul 16, 22:00 (2 d)
Engine
blob
Format
Raw Data
Handle
27384929
Attached To
rPH Phabricator
ConduitAPI_diffusion_looksoon_Method.php
View Options
<?php
final
class
ConduitAPI_diffusion_looksoon_Method
extends
ConduitAPI_diffusion_Method
{
public
function
getMethodStatus
()
{
return
self
::
METHOD_STATUS_UNSTABLE
;
}
public
function
getMethodDescription
()
{
return
pht
(
'Advises Phabricator to look for new commits in a repository as soon '
.
'as possible. This advice is most useful if you have just pushed new '
.
'commits to that repository.'
);
}
public
function
defineReturnType
()
{
return
'void'
;
}
public
function
defineParamTypes
()
{
return
array
(
'callsigns'
=>
'required list<string>'
,
'urgency'
=>
'optional string'
,
);
}
public
function
defineErrorTypes
()
{
return
array
();
}
protected
function
execute
(
ConduitAPIRequest
$request
)
{
// NOTE: The "urgency" parameter does nothing, it is just a hilarious joke
// which exemplifies the boundless clever wit of this project.
$callsigns
=
$request
->
getValue
(
'callsigns'
);
if
(!
$callsigns
)
{
return
null
;
}
$repositories
=
id
(
new
PhabricatorRepositoryQuery
())
->
setViewer
(
$request
->
getUser
())
->
withCallsigns
(
$callsigns
)
->
execute
();
foreach
(
$repositories
as
$repository
)
{
$repository
->
writeStatusMessage
(
PhabricatorRepositoryStatusMessage
::
TYPE_NEEDS_UPDATE
,
PhabricatorRepositoryStatusMessage
::
CODE_OKAY
);
}
return
null
;
}
}
Event Timeline
Log In to Comment