Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F112012341
HarbormasterBuildTargetQuery.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, May 6, 19:56
Size
2 KB
Mime Type
text/x-php
Expires
Thu, May 8, 19:56 (1 d, 18 h)
Engine
blob
Format
Raw Data
Handle
26011093
Attached To
rPH Phabricator
HarbormasterBuildTargetQuery.php
View Options
<?php
final
class
HarbormasterBuildTargetQuery
extends
PhabricatorCursorPagedPolicyAwareQuery
{
private
$ids
;
private
$phids
;
private
$buildPHIDs
;
private
$buildGenerations
;
private
$needBuildSteps
;
public
function
withIDs
(
array
$ids
)
{
$this
->
ids
=
$ids
;
return
$this
;
}
public
function
withPHIDs
(
array
$phids
)
{
$this
->
phids
=
$phids
;
return
$this
;
}
public
function
withBuildPHIDs
(
array
$build_phids
)
{
$this
->
buildPHIDs
=
$build_phids
;
return
$this
;
}
public
function
withBuildGenerations
(
array
$build_generations
)
{
$this
->
buildGenerations
=
$build_generations
;
return
$this
;
}
public
function
needBuildSteps
(
$need_build_steps
)
{
$this
->
needBuildSteps
=
$need_build_steps
;
return
$this
;
}
public
function
newResultObject
()
{
return
new
HarbormasterBuildTarget
();
}
protected
function
loadPage
()
{
return
$this
->
loadStandardPage
(
$this
->
newResultObject
());
}
protected
function
buildWhereClauseParts
(
AphrontDatabaseConnection
$conn
)
{
$where
=
parent
::
buildWhereClauseParts
(
$conn
);
if
(
$this
->
ids
!==
null
)
{
$where
[]
=
qsprintf
(
$conn
,
'id IN (%Ld)'
,
$this
->
ids
);
}
if
(
$this
->
phids
!==
null
)
{
$where
[]
=
qsprintf
(
$conn
,
'phid in (%Ls)'
,
$this
->
phids
);
}
if
(
$this
->
buildPHIDs
!==
null
)
{
$where
[]
=
qsprintf
(
$conn
,
'buildPHID in (%Ls)'
,
$this
->
buildPHIDs
);
}
if
(
$this
->
buildGenerations
!==
null
)
{
$where
[]
=
qsprintf
(
$conn
,
'buildGeneration in (%Ld)'
,
$this
->
buildGenerations
);
}
return
$where
;
}
protected
function
didFilterPage
(
array
$page
)
{
if
(
$this
->
needBuildSteps
)
{
$step_phids
=
array
();
foreach
(
$page
as
$target
)
{
$step_phids
[]
=
$target
->
getBuildStepPHID
();
}
$steps
=
id
(
new
HarbormasterBuildStepQuery
())
->
setViewer
(
$this
->
getViewer
())
->
setParentQuery
(
$this
)
->
withPHIDs
(
$step_phids
)
->
execute
();
$steps
=
mpull
(
$steps
,
null
,
'getPHID'
);
foreach
(
$page
as
$target
)
{
$target
->
attachBuildStep
(
idx
(
$steps
,
$target
->
getBuildStepPHID
()));
}
}
return
$page
;
}
protected
function
willFilterPage
(
array
$page
)
{
$builds
=
array
();
$build_phids
=
array_filter
(
mpull
(
$page
,
'getBuildPHID'
));
if
(
$build_phids
)
{
$builds
=
id
(
new
PhabricatorObjectQuery
())
->
setViewer
(
$this
->
getViewer
())
->
withPHIDs
(
$build_phids
)
->
setParentQuery
(
$this
)
->
execute
();
$builds
=
mpull
(
$builds
,
null
,
'getPHID'
);
}
foreach
(
$page
as
$key
=>
$build_target
)
{
$build_phid
=
$build_target
->
getBuildPHID
();
if
(
empty
(
$builds
[
$build_phid
]))
{
unset
(
$page
[
$key
]);
continue
;
}
$build_target
->
attachBuild
(
$builds
[
$build_phid
]);
}
return
$page
;
}
public
function
getQueryApplicationClass
()
{
return
'PhabricatorHarbormasterApplication'
;
}
}
Event Timeline
Log In to Comment