Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F116108065
HarbormasterBuildUnitMessageQuery.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, Jun 4, 23:10
Size
1 KB
Mime Type
text/x-php
Expires
Fri, Jun 6, 23:10 (2 d)
Engine
blob
Format
Raw Data
Handle
26560686
Attached To
rPH Phabricator
HarbormasterBuildUnitMessageQuery.php
View Options
<?php
final
class
HarbormasterBuildUnitMessageQuery
extends
PhabricatorCursorPagedPolicyAwareQuery
{
private
$ids
;
private
$phids
;
private
$targetPHIDs
;
public
function
withIDs
(
array
$ids
)
{
$this
->
ids
=
$ids
;
return
$this
;
}
public
function
withPHIDs
(
array
$phids
)
{
$this
->
phids
=
$phids
;
return
$this
;
}
public
function
withBuildTargetPHIDs
(
array
$target_phids
)
{
$this
->
targetPHIDs
=
$target_phids
;
return
$this
;
}
public
function
newResultObject
()
{
return
new
HarbormasterBuildUnitMessage
();
}
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
->
targetPHIDs
!==
null
)
{
$where
[]
=
qsprintf
(
$conn
,
'buildTargetPHID in (%Ls)'
,
$this
->
targetPHIDs
);
}
return
$where
;
}
protected
function
didFilterPage
(
array
$messages
)
{
$indexes
=
array
();
foreach
(
$messages
as
$message
)
{
$index
=
$message
->
getNameIndex
();
if
(
strlen
(
$index
))
{
$indexes
[
$index
]
=
$index
;
}
}
if
(
$indexes
)
{
$map
=
HarbormasterString
::
newIndexMap
(
$indexes
);
foreach
(
$messages
as
$message
)
{
$index
=
$message
->
getNameIndex
();
if
(!
strlen
(
$index
))
{
continue
;
}
$name
=
idx
(
$map
,
$index
);
if
(
$name
===
null
)
{
$name
=
pht
(
'Unknown Unit Message ("%s")'
,
$index
);
}
$message
->
setName
(
$name
);
}
}
return
$messages
;
}
public
function
getQueryApplicationClass
()
{
return
'PhabricatorHarbormasterApplication'
;
}
}
Event Timeline
Log In to Comment