Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F90984840
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
Wed, Nov 6, 16:07
Size
2 KB
Mime Type
text/x-php
Expires
Fri, Nov 8, 16:07 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
22170429
Attached To
rPH Phabricator
HarbormasterBuildTargetQuery.php
View Options
<?php
final
class
HarbormasterBuildTargetQuery
extends
PhabricatorCursorPagedPolicyAwareQuery
{
private
$ids
;
private
$phids
;
private
$buildPHIDs
;
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
needBuildSteps
(
$need_build_steps
)
{
$this
->
needBuildSteps
=
$need_build_steps
;
return
$this
;
}
protected
function
loadPage
()
{
$table
=
new
HarbormasterBuildTarget
();
$conn_r
=
$table
->
establishConnection
(
'r'
);
$data
=
queryfx_all
(
$conn_r
,
'SELECT * FROM %T %Q %Q %Q'
,
$table
->
getTableName
(),
$this
->
buildWhereClause
(
$conn_r
),
$this
->
buildOrderClause
(
$conn_r
),
$this
->
buildLimitClause
(
$conn_r
));
return
$table
->
loadAllFromArray
(
$data
);
}
private
function
buildWhereClause
(
AphrontDatabaseConnection
$conn_r
)
{
$where
=
array
();
if
(
$this
->
ids
)
{
$where
[]
=
qsprintf
(
$conn_r
,
'id IN (%Ld)'
,
$this
->
ids
);
}
if
(
$this
->
phids
)
{
$where
[]
=
qsprintf
(
$conn_r
,
'phid in (%Ls)'
,
$this
->
phids
);
}
if
(
$this
->
buildPHIDs
)
{
$where
[]
=
qsprintf
(
$conn_r
,
'buildPHID in (%Ls)'
,
$this
->
buildPHIDs
);
}
$where
[]
=
$this
->
buildPagingClause
(
$conn_r
);
return
$this
->
formatWhereClause
(
$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
(
$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