Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F2363146
DrydockLeaseQuery.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
2 KB
Referenced Files
None
Subscribers
None
DrydockLeaseQuery.php
View Options
<?php
final
class
DrydockLeaseQuery
extends
PhabricatorCursorPagedPolicyAwareQuery
{
private
$ids
;
private
$phids
;
private
$resourceIDs
;
private
$statuses
;
public
function
withIDs
(
array
$ids
)
{
$this
->
ids
=
$ids
;
return
$this
;
}
public
function
withPHIDs
(
array
$phids
)
{
$this
->
phids
=
$phids
;
return
$this
;
}
public
function
withResourceIDs
(
array
$ids
)
{
$this
->
resourceIDs
=
$ids
;
return
$this
;
}
public
function
withStatuses
(
array
$statuses
)
{
$this
->
statuses
=
$statuses
;
return
$this
;
}
public
function
loadPage
()
{
$table
=
new
DrydockLease
();
$conn_r
=
$table
->
establishConnection
(
'r'
);
$data
=
queryfx_all
(
$conn_r
,
'SELECT lease.* FROM %T lease %Q %Q %Q'
,
$table
->
getTableName
(),
$this
->
buildWhereClause
(
$conn_r
),
$this
->
buildOrderClause
(
$conn_r
),
$this
->
buildLimitClause
(
$conn_r
));
return
$table
->
loadAllFromArray
(
$data
);
}
public
function
willFilterPage
(
array
$leases
)
{
$resource_ids
=
array_filter
(
mpull
(
$leases
,
'getResourceID'
));
if
(
$resource_ids
)
{
$resources
=
id
(
new
DrydockResourceQuery
())
->
setParentQuery
(
$this
)
->
setViewer
(
$this
->
getViewer
())
->
withIDs
(
$resource_ids
)
->
execute
();
}
else
{
$resources
=
array
();
}
foreach
(
$leases
as
$key
=>
$lease
)
{
$resource
=
null
;
if
(
$lease
->
getResourceID
())
{
$resource
=
idx
(
$resources
,
$lease
->
getResourceID
());
if
(!
$resource
)
{
unset
(
$leases
[
$key
]);
continue
;
}
}
$lease
->
attachResource
(
$resource
);
}
return
$leases
;
}
private
function
buildWhereClause
(
AphrontDatabaseConnection
$conn_r
)
{
$where
=
array
();
if
(
$this
->
resourceIDs
)
{
$where
[]
=
qsprintf
(
$conn_r
,
'resourceID IN (%Ld)'
,
$this
->
resourceIDs
);
}
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
->
statuses
)
{
$where
[]
=
qsprintf
(
$conn_r
,
'status IN (%Ld)'
,
$this
->
statuses
);
}
$where
[]
=
$this
->
buildPagingClause
(
$conn_r
);
return
$this
->
formatWhereClause
(
$where
);
}
public
function
getQueryApplicationClass
()
{
return
'PhabricatorApplicationDrydock'
;
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Tue, Sep 16, 4:54 PM (2 d)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
447756
Default Alt Text
DrydockLeaseQuery.php (2 KB)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment