Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F99427093
DrydockLogQuery.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
Fri, Jan 24, 11:34
Size
1 KB
Mime Type
text/x-php
Expires
Sun, Jan 26, 11:34 (2 d)
Engine
blob
Format
Raw Data
Handle
23798216
Attached To
rPH Phabricator
DrydockLogQuery.php
View Options
<?php
final
class
DrydockLogQuery
extends
PhabricatorCursorPagedPolicyAwareQuery
{
private
$resourceIDs
;
private
$leaseIDs
;
public
function
withResourceIDs
(
array
$ids
)
{
$this
->
resourceIDs
=
$ids
;
return
$this
;
}
public
function
withLeaseIDs
(
array
$ids
)
{
$this
->
leaseIDs
=
$ids
;
return
$this
;
}
public
function
loadPage
()
{
$table
=
new
DrydockLog
();
$conn_r
=
$table
->
establishConnection
(
'r'
);
$data
=
queryfx_all
(
$conn_r
,
'SELECT log.* FROM %T log %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
$logs
)
{
$resource_ids
=
mpull
(
$logs
,
'getResourceID'
);
$resources
=
id
(
new
DrydockResourceQuery
())
->
setParentQuery
(
$this
)
->
setViewer
(
$this
->
getViewer
())
->
withIDs
(
$resource_ids
)
->
execute
();
foreach
(
$logs
as
$key
=>
$log
)
{
$resource
=
idx
(
$resources
,
$log
->
getResourceID
());
$log
->
attachResource
(
$resource
);
}
return
$logs
;
}
private
function
buildWhereClause
(
AphrontDatabaseConnection
$conn_r
)
{
$where
=
array
();
if
(
$this
->
resourceIDs
)
{
$where
[]
=
qsprintf
(
$conn_r
,
'resourceID IN (%Ld)'
,
$this
->
resourceIDs
);
}
if
(
$this
->
leaseIDs
)
{
$where
[]
=
qsprintf
(
$conn_r
,
'leaseID IN (%Ld)'
,
$this
->
leaseIDs
);
}
$where
[]
=
$this
->
buildPagingClause
(
$conn_r
);
return
$this
->
formatWhereClause
(
$where
);
}
public
function
getQueryApplicationClass
()
{
return
'PhabricatorApplicationDrydock'
;
}
}
Event Timeline
Log In to Comment