Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F96171989
AlmanacBindingQuery.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
Mon, Dec 23, 10:37
Size
3 KB
Mime Type
text/x-php
Expires
Wed, Dec 25, 10:37 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
23138012
Attached To
rPH Phabricator
AlmanacBindingQuery.php
View Options
<?php
final
class
AlmanacBindingQuery
extends
AlmanacQuery
{
private
$ids
;
private
$phids
;
private
$servicePHIDs
;
private
$devicePHIDs
;
private
$interfacePHIDs
;
public
function
withIDs
(
array
$ids
)
{
$this
->
ids
=
$ids
;
return
$this
;
}
public
function
withPHIDs
(
array
$phids
)
{
$this
->
phids
=
$phids
;
return
$this
;
}
public
function
withServicePHIDs
(
array
$phids
)
{
$this
->
servicePHIDs
=
$phids
;
return
$this
;
}
public
function
withDevicePHIDs
(
array
$phids
)
{
$this
->
devicePHIDs
=
$phids
;
return
$this
;
}
public
function
withInterfacePHIDs
(
array
$phids
)
{
$this
->
interfacePHIDs
=
$phids
;
return
$this
;
}
protected
function
loadPage
()
{
$table
=
new
AlmanacBinding
();
$conn_r
=
$table
->
establishConnection
(
'r'
);
$data
=
queryfx_all
(
$conn_r
,
'SELECT * FROM %T %Q %Q %Q'
,
$table
->
getTableName
(),
$this
->
buildWhereClause
(
$conn_r
),
$this
->
buildOrderClause
(
$conn_r
),
$this
->
buildLimitClause
(
$conn_r
));
return
$table
->
loadAllFromArray
(
$data
);
}
protected
function
willFilterPage
(
array
$bindings
)
{
$service_phids
=
mpull
(
$bindings
,
'getServicePHID'
);
$device_phids
=
mpull
(
$bindings
,
'getDevicePHID'
);
$interface_phids
=
mpull
(
$bindings
,
'getInterfacePHID'
);
$services
=
id
(
new
AlmanacServiceQuery
())
->
setParentQuery
(
$this
)
->
setViewer
(
$this
->
getViewer
())
->
withPHIDs
(
$service_phids
)
->
execute
();
$services
=
mpull
(
$services
,
null
,
'getPHID'
);
$devices
=
id
(
new
AlmanacDeviceQuery
())
->
setParentQuery
(
$this
)
->
setViewer
(
$this
->
getViewer
())
->
withPHIDs
(
$device_phids
)
->
execute
();
$devices
=
mpull
(
$devices
,
null
,
'getPHID'
);
$interfaces
=
id
(
new
AlmanacInterfaceQuery
())
->
setParentQuery
(
$this
)
->
setViewer
(
$this
->
getViewer
())
->
withPHIDs
(
$interface_phids
)
->
execute
();
$interfaces
=
mpull
(
$interfaces
,
null
,
'getPHID'
);
foreach
(
$bindings
as
$key
=>
$binding
)
{
$service
=
idx
(
$services
,
$binding
->
getServicePHID
());
$device
=
idx
(
$devices
,
$binding
->
getDevicePHID
());
$interface
=
idx
(
$interfaces
,
$binding
->
getInterfacePHID
());
if
(!
$service
||
!
$device
||
!
$interface
)
{
$this
->
didRejectResult
(
$binding
);
unset
(
$bindings
[
$key
]);
continue
;
}
$binding
->
attachService
(
$service
);
$binding
->
attachDevice
(
$device
);
$binding
->
attachInterface
(
$interface
);
}
return
$bindings
;
}
protected
function
buildWhereClause
(
$conn_r
)
{
$where
=
array
();
if
(
$this
->
ids
!==
null
)
{
$where
[]
=
qsprintf
(
$conn_r
,
'id IN (%Ld)'
,
$this
->
ids
);
}
if
(
$this
->
phids
!==
null
)
{
$where
[]
=
qsprintf
(
$conn_r
,
'phid IN (%Ls)'
,
$this
->
phids
);
}
if
(
$this
->
servicePHIDs
!==
null
)
{
$where
[]
=
qsprintf
(
$conn_r
,
'servicePHID IN (%Ls)'
,
$this
->
servicePHIDs
);
}
if
(
$this
->
devicePHIDs
!==
null
)
{
$where
[]
=
qsprintf
(
$conn_r
,
'devicePHID IN (%Ls)'
,
$this
->
devicePHIDs
);
}
if
(
$this
->
interfacePHIDs
!==
null
)
{
$where
[]
=
qsprintf
(
$conn_r
,
'interfacePHID IN (%Ls)'
,
$this
->
interfacePHIDs
);
}
$where
[]
=
$this
->
buildPagingClause
(
$conn_r
);
return
$this
->
formatWhereClause
(
$where
);
}
}
Event Timeline
Log In to Comment