Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F96238097
DrydockBlueprintQuery.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, Dec 24, 01:21
Size
1 KB
Mime Type
text/x-php
Expires
Thu, Dec 26, 01:21 (2 d)
Engine
blob
Format
Raw Data
Handle
23146921
Attached To
rPH Phabricator
DrydockBlueprintQuery.php
View Options
<?php
final
class
DrydockBlueprintQuery
extends
DrydockQuery
{
private
$ids
;
private
$phids
;
private
$blueprintClasses
;
private
$datasourceQuery
;
public
function
withIDs
(
array
$ids
)
{
$this
->
ids
=
$ids
;
return
$this
;
}
public
function
withPHIDs
(
array
$phids
)
{
$this
->
phids
=
$phids
;
return
$this
;
}
public
function
withBlueprintClasses
(
array
$classes
)
{
$this
->
blueprintClasses
=
$classes
;
return
$this
;
}
public
function
withDatasourceQuery
(
$query
)
{
$this
->
datasourceQuery
=
$query
;
return
$this
;
}
public
function
newResultObject
()
{
return
new
DrydockBlueprint
();
}
protected
function
loadPage
()
{
return
$this
->
loadStandardPage
(
$this
->
newResultObject
());
}
protected
function
willFilterPage
(
array
$blueprints
)
{
$impls
=
DrydockBlueprintImplementation
::
getAllBlueprintImplementations
();
foreach
(
$blueprints
as
$key
=>
$blueprint
)
{
$impl
=
idx
(
$impls
,
$blueprint
->
getClassName
());
if
(!
$impl
)
{
$this
->
didRejectResult
(
$blueprint
);
unset
(
$blueprints
[
$key
]);
continue
;
}
$impl
=
clone
$impl
;
$blueprint
->
attachImplementation
(
$impl
);
}
return
$blueprints
;
}
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
->
datasourceQuery
!==
null
)
{
$where
[]
=
qsprintf
(
$conn
,
'blueprintName LIKE %>'
,
$this
->
datasourceQuery
);
}
if
(
$this
->
blueprintClasses
!==
null
)
{
$where
[]
=
qsprintf
(
$conn
,
'className IN (%Ls)'
,
$this
->
blueprintClasses
);
}
return
$where
;
}
}
Event Timeline
Log In to Comment