Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F2992441
HarbormasterBuildPlanQuery.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Award Token
Flag For Later
Advanced/Developer...
View Handle
View Hovercard
Size
3 KB
Referenced Files
None
Subscribers
None
HarbormasterBuildPlanQuery.php
View Options
<?php
final
class
HarbormasterBuildPlanQuery
extends
PhabricatorCursorPagedPolicyAwareQuery
{
private
$ids
;
private
$phids
;
private
$statuses
;
private
$datasourceQuery
;
private
$planAutoKeys
;
private
$needBuildSteps
;
public
function
withIDs
(
array
$ids
)
{
$this
->
ids
=
$ids
;
return
$this
;
}
public
function
withPHIDs
(
array
$phids
)
{
$this
->
phids
=
$phids
;
return
$this
;
}
public
function
withStatuses
(
array
$statuses
)
{
$this
->
statuses
=
$statuses
;
return
$this
;
}
public
function
withDatasourceQuery
(
$query
)
{
$this
->
datasourceQuery
=
$query
;
return
$this
;
}
public
function
withPlanAutoKeys
(
array
$keys
)
{
$this
->
planAutoKeys
=
$keys
;
return
$this
;
}
public
function
withNameNgrams
(
$ngrams
)
{
return
$this
->
withNgramsConstraint
(
new
HarbormasterBuildPlanNameNgrams
(
)
,
$ngrams
)
;
}
public
function
needBuildSteps
(
$need
)
{
$this
->
needBuildSteps
=
$need
;
return
$this
;
}
public
function
newResultObject
(
)
{
return
new
HarbormasterBuildPlan
(
)
;
}
protected
function
didFilterPage
(
array
$page
)
{
if
(
$this
->
needBuildSteps
)
{
$plan_phids
=
mpull
(
$page
,
'getPHID'
)
;
$steps
=
id
(
new
HarbormasterBuildStepQuery
(
)
)
->
setParentQuery
(
$this
)
->
setViewer
(
$this
->
getViewer
(
)
)
->
withBuildPlanPHIDs
(
$plan_phids
)
->
execute
(
)
;
$steps
=
mgroup
(
$steps
,
'getBuildPlanPHID'
)
;
foreach
(
$page
as
$plan
)
{
$plan_steps
=
idx
(
$steps
,
$plan
->
getPHID
(
)
,
array
(
)
)
;
$plan
->
attachBuildSteps
(
$plan_steps
)
;
}
}
return
$page
;
}
protected
function
buildWhereClauseParts
(
AphrontDatabaseConnection
$conn
)
{
$where
=
parent
::
buildWhereClauseParts
(
$conn
)
;
if
(
$this
->
ids
!==
null
)
{
$where
[
]
=
qsprintf
(
$conn
,
'plan.id IN (%Ld)'
,
$this
->
ids
)
;
}
if
(
$this
->
phids
!==
null
)
{
$where
[
]
=
qsprintf
(
$conn
,
'plan.phid IN (%Ls)'
,
$this
->
phids
)
;
}
if
(
$this
->
statuses
!==
null
)
{
$where
[
]
=
qsprintf
(
$conn
,
'plan.planStatus IN (%Ls)'
,
$this
->
statuses
)
;
}
if
(
!
phutil_nonempty_string
(
$this
->
datasourceQuery
)
)
{
$where
[
]
=
qsprintf
(
$conn
,
'plan.name LIKE %>'
,
$this
->
datasourceQuery
)
;
}
if
(
$this
->
planAutoKeys
!==
null
)
{
$where
[
]
=
qsprintf
(
$conn
,
'plan.planAutoKey IN (%Ls)'
,
$this
->
planAutoKeys
)
;
}
return
$where
;
}
protected
function
getPrimaryTableAlias
(
)
{
return
'plan'
;
}
public
function
getQueryApplicationClass
(
)
{
return
PhabricatorHarbormasterApplication
::
class
;
}
public
function
getOrderableColumns
(
)
{
return
parent
::
getOrderableColumns
(
)
+
array
(
'name'
=>
array
(
'column'
=>
'name'
,
'type'
=>
'string'
,
'reverse'
=>
true
,
)
,
)
;
}
protected
function
newPagingMapFromPartialObject
(
$object
)
{
return
array
(
'id'
=>
(int)
$object
->
getID
(
)
,
'name'
=>
$object
->
getName
(
)
,
)
;
}
public
function
getBuiltinOrders
(
)
{
return
array
(
'name'
=>
array
(
'vector'
=>
array
(
'name'
,
'id'
)
,
'name'
=>
pht
(
'Name'
)
,
)
,
)
+
parent
::
getBuiltinOrders
(
)
;
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Sun, Feb 23, 10:24 (1 d, 13 h ago)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
1181255
Default Alt Text
HarbormasterBuildPlanQuery.php (3 KB)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment