Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F476583
PhabricatorSearchDocumentQuery.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
PhabricatorSearchDocumentQuery.php
View Options
<?php
final
class
PhabricatorSearchDocumentQuery
extends
PhabricatorCursorPagedPolicyAwareQuery
{
private
$savedQuery
;
public
function
withSavedQuery
(
PhabricatorSavedQuery
$query
)
{
$this
->
savedQuery
=
$query
;
return
$this
;
}
protected
function
loadPage
()
{
$phids
=
$this
->
loadDocumentPHIDsWithoutPolicyChecks
();
$handles
=
id
(
new
PhabricatorHandleQuery
())
->
setViewer
(
$this
->
getViewer
())
->
withPHIDs
(
$phids
)
->
execute
();
// Retain engine order.
$handles
=
array_select_keys
(
$handles
,
$phids
);
return
$handles
;
}
protected
function
willFilterPage
(
array
$handles
)
{
// NOTE: This is used by the object selector dialog to exclude the object
// you're looking at, so that, e.g., a task can't be set as a dependency
// of itself in the UI.
// TODO: Remove this after object selection moves to ApplicationSearch.
$exclude
=
array
();
if
(
$this
->
savedQuery
)
{
$exclude_phids
=
$this
->
savedQuery
->
getParameter
(
'excludePHIDs'
,
array
());
$exclude
=
array_fuse
(
$exclude_phids
);
}
foreach
(
$handles
as
$key
=>
$handle
)
{
if
(!
$handle
->
isComplete
())
{
unset
(
$handles
[
$key
]);
continue
;
}
if
(
$handle
->
getPolicyFiltered
())
{
unset
(
$handles
[
$key
]);
continue
;
}
if
(
isset
(
$exclude
[
$handle
->
getPHID
()]))
{
unset
(
$handles
[
$key
]);
continue
;
}
}
return
$handles
;
}
public
function
loadDocumentPHIDsWithoutPolicyChecks
()
{
$query
=
id
(
clone
(
$this
->
savedQuery
))
->
setParameter
(
'offset'
,
$this
->
getOffset
())
->
setParameter
(
'limit'
,
$this
->
getRawResultLimit
());
$engine
=
PhabricatorSearchEngineSelector
::
newSelector
()->
newEngine
();
return
$engine
->
executeSearch
(
$query
);
}
public
function
getQueryApplicationClass
()
{
return
'PhabricatorSearchApplication'
;
}
protected
function
getPagingValue
(
$result
)
{
throw
new
Exception
(
pht
(
'This query does not support cursor paging; it must be offset '
.
'paged.'
));
}
protected
function
nextPage
(
array
$page
)
{
$this
->
setOffset
(
$this
->
getOffset
()
+
count
(
$page
));
return
$this
;
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Wed, May 7, 4:35 AM (2 d)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
87210
Default Alt Text
PhabricatorSearchDocumentQuery.php (2 KB)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment