Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F98212816
DiffusionPathQuery.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
Sat, Jan 11, 02:54
Size
848 B
Mime Type
text/x-php
Expires
Mon, Jan 13, 02:54 (2 d)
Engine
blob
Format
Raw Data
Handle
23509629
Attached To
rPH Phabricator
DiffusionPathQuery.php
View Options
<?php
final
class
DiffusionPathQuery
extends
Phobject
{
private
$pathIDs
;
public
function
withPathIDs
(
array
$path_ids
)
{
$this
->
pathIDs
=
$path_ids
;
return
$this
;
}
public
function
execute
()
{
$conn_r
=
id
(
new
PhabricatorRepository
())->
establishConnection
(
'r'
);
$where
=
$this
->
buildWhereClause
(
$conn_r
);
$results
=
queryfx_all
(
$conn_r
,
'SELECT * FROM %T %Q'
,
PhabricatorRepository
::
TABLE_PATH
,
$where
);
return
ipull
(
$results
,
null
,
'id'
);
}
protected
function
buildWhereClause
(
AphrontDatabaseConnection
$conn_r
)
{
$where
=
array
();
if
(
$this
->
pathIDs
)
{
$where
[]
=
qsprintf
(
$conn_r
,
'id IN (%Ld)'
,
$this
->
pathIDs
);
}
if
(
$where
)
{
return
'WHERE ('
.
implode
(
') AND ('
,
$where
).
')'
;
}
else
{
return
''
;
}
}
}
Event Timeline
Log In to Comment