Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F102651261
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, Feb 22, 21:32
Size
848 B
Mime Type
text/x-php
Expires
Mon, Feb 24, 21:32 (2 d)
Engine
blob
Format
Raw Data
Handle
24158726
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