Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F552123
HarbormasterBuildQuery.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
5 KB
Referenced Files
None
Subscribers
None
HarbormasterBuildQuery.php
View Options
<?php
final
class
HarbormasterBuildQuery
extends
PhabricatorCursorPagedPolicyAwareQuery
{
private
$ids
;
private
$phids
;
private
$buildStatuses
;
private
$buildablePHIDs
;
private
$buildPlanPHIDs
;
private
$initiatorPHIDs
;
private
$needBuildTargets
;
private
$autobuilds
;
public
function
withIDs
(
array
$ids
)
{
$this
->
ids
=
$ids
;
return
$this
;
}
public
function
withPHIDs
(
array
$phids
)
{
$this
->
phids
=
$phids
;
return
$this
;
}
public
function
withBuildStatuses
(
array
$build_statuses
)
{
$this
->
buildStatuses
=
$build_statuses
;
return
$this
;
}
public
function
withBuildablePHIDs
(
array
$buildable_phids
)
{
$this
->
buildablePHIDs
=
$buildable_phids
;
return
$this
;
}
public
function
withBuildPlanPHIDs
(
array
$build_plan_phids
)
{
$this
->
buildPlanPHIDs
=
$build_plan_phids
;
return
$this
;
}
public
function
withInitiatorPHIDs
(
array
$initiator_phids
)
{
$this
->
initiatorPHIDs
=
$initiator_phids
;
return
$this
;
}
public
function
withAutobuilds
(
$with_autobuilds
)
{
$this
->
autobuilds
=
$with_autobuilds
;
return
$this
;
}
public
function
needBuildTargets
(
$need_targets
)
{
$this
->
needBuildTargets
=
$need_targets
;
return
$this
;
}
public
function
newResultObject
()
{
return
new
HarbormasterBuild
();
}
protected
function
willFilterPage
(
array
$page
)
{
$buildables
=
array
();
$buildable_phids
=
array_filter
(
mpull
(
$page
,
'getBuildablePHID'
));
if
(
$buildable_phids
)
{
$buildables
=
id
(
new
PhabricatorObjectQuery
())
->
setViewer
(
$this
->
getViewer
())
->
withPHIDs
(
$buildable_phids
)
->
setParentQuery
(
$this
)
->
execute
();
$buildables
=
mpull
(
$buildables
,
null
,
'getPHID'
);
}
foreach
(
$page
as
$key
=>
$build
)
{
$buildable_phid
=
$build
->
getBuildablePHID
();
if
(
empty
(
$buildables
[
$buildable_phid
]))
{
unset
(
$page
[
$key
]);
continue
;
}
$build
->
attachBuildable
(
$buildables
[
$buildable_phid
]);
}
return
$page
;
}
protected
function
didFilterPage
(
array
$page
)
{
$plans
=
array
();
$plan_phids
=
array_filter
(
mpull
(
$page
,
'getBuildPlanPHID'
));
if
(
$plan_phids
)
{
$plans
=
id
(
new
PhabricatorObjectQuery
())
->
setViewer
(
$this
->
getViewer
())
->
withPHIDs
(
$plan_phids
)
->
setParentQuery
(
$this
)
->
execute
();
$plans
=
mpull
(
$plans
,
null
,
'getPHID'
);
}
foreach
(
$page
as
$key
=>
$build
)
{
$plan_phid
=
$build
->
getBuildPlanPHID
();
$build
->
attachBuildPlan
(
idx
(
$plans
,
$plan_phid
));
}
$build_phids
=
mpull
(
$page
,
'getPHID'
);
$messages
=
id
(
new
HarbormasterBuildMessage
())->
loadAllWhere
(
'receiverPHID IN (%Ls) AND isConsumed = 0 ORDER BY id ASC'
,
$build_phids
);
$messages
=
mgroup
(
$messages
,
'getReceiverPHID'
);
foreach
(
$page
as
$build
)
{
$unprocessed_messages
=
idx
(
$messages
,
$build
->
getPHID
(),
array
());
$build
->
attachUnprocessedMessages
(
$unprocessed_messages
);
}
if
(
$this
->
needBuildTargets
)
{
$targets
=
id
(
new
HarbormasterBuildTargetQuery
())
->
setViewer
(
$this
->
getViewer
())
->
setParentQuery
(
$this
)
->
withBuildPHIDs
(
$build_phids
)
->
execute
();
// TODO: Some day, when targets have dependencies, we should toposort
// these. For now, just put them into chronological order.
$targets
=
array_reverse
(
$targets
);
$targets
=
mgroup
(
$targets
,
'getBuildPHID'
);
foreach
(
$page
as
$build
)
{
$build_targets
=
idx
(
$targets
,
$build
->
getPHID
(),
array
());
foreach
(
$build_targets
as
$phid
=>
$target
)
{
if
(
$target
->
getBuildGeneration
()
!==
$build
->
getBuildGeneration
())
{
unset
(
$build_targets
[
$phid
]);
}
}
$build
->
attachBuildTargets
(
$build_targets
);
}
}
return
$page
;
}
protected
function
buildWhereClauseParts
(
AphrontDatabaseConnection
$conn
)
{
$where
=
parent
::
buildWhereClauseParts
(
$conn
);
if
(
$this
->
ids
!==
null
)
{
$where
[]
=
qsprintf
(
$conn
,
'b.id IN (%Ld)'
,
$this
->
ids
);
}
if
(
$this
->
phids
!==
null
)
{
$where
[]
=
qsprintf
(
$conn
,
'b.phid in (%Ls)'
,
$this
->
phids
);
}
if
(
$this
->
buildStatuses
!==
null
)
{
$where
[]
=
qsprintf
(
$conn
,
'b.buildStatus in (%Ls)'
,
$this
->
buildStatuses
);
}
if
(
$this
->
buildablePHIDs
!==
null
)
{
$where
[]
=
qsprintf
(
$conn
,
'b.buildablePHID IN (%Ls)'
,
$this
->
buildablePHIDs
);
}
if
(
$this
->
buildPlanPHIDs
!==
null
)
{
$where
[]
=
qsprintf
(
$conn
,
'b.buildPlanPHID IN (%Ls)'
,
$this
->
buildPlanPHIDs
);
}
if
(
$this
->
initiatorPHIDs
!==
null
)
{
$where
[]
=
qsprintf
(
$conn
,
'b.initiatorPHID IN (%Ls)'
,
$this
->
initiatorPHIDs
);
}
if
(
$this
->
autobuilds
!==
null
)
{
if
(
$this
->
autobuilds
)
{
$where
[]
=
qsprintf
(
$conn
,
'p.planAutoKey IS NOT NULL'
);
}
else
{
$where
[]
=
qsprintf
(
$conn
,
'p.planAutoKey IS NULL'
);
}
}
return
$where
;
}
protected
function
buildJoinClauseParts
(
AphrontDatabaseConnection
$conn
)
{
$joins
=
parent
::
buildJoinClauseParts
(
$conn
);
if
(
$this
->
shouldJoinPlanTable
())
{
$joins
[]
=
qsprintf
(
$conn
,
'JOIN %T p ON b.buildPlanPHID = p.phid'
,
id
(
new
HarbormasterBuildPlan
())->
getTableName
());
}
return
$joins
;
}
private
function
shouldJoinPlanTable
()
{
if
(
$this
->
autobuilds
!==
null
)
{
return
true
;
}
return
false
;
}
public
function
getQueryApplicationClass
()
{
return
PhabricatorHarbormasterApplication
::
class
;
}
protected
function
getPrimaryTableAlias
()
{
return
'b'
;
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Mon, May 12, 4:08 PM (2 d)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
123432
Default Alt Text
HarbormasterBuildQuery.php (5 KB)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment