Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F98186399
PhabricatorPolicyAwareQuery.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 10, 20:13
Size
8 KB
Mime Type
text/x-php
Expires
Sun, Jan 12, 20:13 (2 d)
Engine
blob
Format
Raw Data
Handle
23529866
Attached To
rPH Phabricator
PhabricatorPolicyAwareQuery.php
View Options
<?php
/**
* A @{class:PhabricatorQuery} which filters results according to visibility
* policies for the querying user. Broadly, this class allows you to implement
* a query that returns only objects the user is allowed to see.
*
* $results = id(new ExampleQuery())
* ->setViewer($user)
* ->withConstraint($example)
* ->execute();
*
* Normally, you should extend @{class:PhabricatorCursorPagedPolicyAwareQuery},
* not this class. @{class:PhabricatorCursorPagedPolicyAwareQuery} provides a
* more practical interface for building usable queries against most object
* types.
*
* NOTE: Although this class extends @{class:PhabricatorOffsetPagedQuery},
* offset paging with policy filtering is not efficient. All results must be
* loaded into the application and filtered here: skipping `N` rows via offset
* is an `O(N)` operation with a large constant. Prefer cursor-based paging
* with @{class:PhabricatorCursorPagedPolicyAwareQuery}, which can filter far
* more efficiently in MySQL.
*
* @task config Query Configuration
* @task exec Executing Queries
* @task policyimpl Policy Query Implementation
*/
abstract
class
PhabricatorPolicyAwareQuery
extends
PhabricatorOffsetPagedQuery
{
private
$viewer
;
private
$raisePolicyExceptions
;
private
$rawResultLimit
;
private
$capabilities
;
/* -( Query Configuration )------------------------------------------------ */
/**
* Set the viewer who is executing the query. Results will be filtered
* according to the viewer's capabilities. You must set a viewer to execute
* a policy query.
*
* @param PhabricatorUser The viewing user.
* @return this
* @task config
*/
final
public
function
setViewer
(
PhabricatorUser
$viewer
)
{
$this
->
viewer
=
$viewer
;
return
$this
;
}
/**
* Get the query's viewer.
*
* @return PhabricatorUser The viewing user.
* @task config
*/
final
public
function
getViewer
()
{
return
$this
->
viewer
;
}
/**
* @task config
*/
final
public
function
requireCapabilities
(
array
$capabilities
)
{
$this
->
capabilities
=
$capabilities
;
return
$this
;
}
/* -( Query Execution )---------------------------------------------------- */
/**
* Execute the query, expecting a single result. This method simplifies
* loading objects for detail pages or edit views.
*
* // Load one result by ID.
* $obj = id(new ExampleQuery())
* ->setViewer($user)
* ->withIDs(array($id))
* ->executeOne();
* if (!$obj) {
* return new Aphront404Response();
* }
*
* If zero results match the query, this method returns `null`.
*
* If one result matches the query, this method returns that result.
*
* If two or more results match the query, this method throws an exception.
* You should use this method only when the query constraints guarantee at
* most one match (e.g., selecting a specific ID or PHID).
*
* If one result matches the query but it is caught by the policy filter (for
* example, the user is trying to view or edit an object which exists but
* which they do not have permission to see) a policy exception is thrown.
*
* @return mixed Single result, or null.
* @task exec
*/
final
public
function
executeOne
()
{
$this
->
raisePolicyExceptions
=
true
;
try
{
$results
=
$this
->
execute
();
}
catch
(
Exception
$ex
)
{
$this
->
raisePolicyExceptions
=
false
;
throw
$ex
;
}
if
(
count
(
$results
)
>
1
)
{
throw
new
Exception
(
"Expected a single result!"
);
}
if
(!
$results
)
{
return
null
;
}
return
head
(
$results
);
}
/**
* Execute the query, loading all visible results.
*
* @return list<PhabricatorPolicyInterface> Result objects.
* @task exec
*/
final
public
function
execute
()
{
if
(!
$this
->
viewer
)
{
throw
new
Exception
(
"Call setViewer() before execute()!"
);
}
$results
=
array
();
$filter
=
new
PhabricatorPolicyFilter
();
$filter
->
setViewer
(
$this
->
viewer
);
if
(!
$this
->
capabilities
)
{
$capabilities
=
array
(
PhabricatorPolicyCapability
::
CAN_VIEW
,
);
}
else
{
$capabilities
=
$this
->
capabilities
;
}
$filter
->
requireCapabilities
(
$capabilities
);
$filter
->
raisePolicyExceptions
(
$this
->
raisePolicyExceptions
);
$offset
=
(
int
)
$this
->
getOffset
();
$limit
=
(
int
)
$this
->
getLimit
();
$count
=
0
;
if
(
$limit
)
{
$need
=
$offset
+
$limit
;
}
else
{
$need
=
0
;
}
$this
->
willExecute
();
do
{
if
(
$need
)
{
$this
->
rawResultLimit
=
min
(
$need
-
$count
,
1024
);
}
else
{
$this
->
rawResultLimit
=
0
;
}
try
{
$page
=
$this
->
loadPage
();
}
catch
(
PhabricatorEmptyQueryException
$ex
)
{
$page
=
array
();
}
$visible
=
$this
->
willFilterPage
(
$page
);
$visible
=
$filter
->
apply
(
$visible
);
foreach
(
$visible
as
$key
=>
$result
)
{
++
$count
;
// If we have an offset, we just ignore that many results and start
// storing them only once we've hit the offset. This reduces memory
// requirements for large offsets, compared to storing them all and
// slicing them away later.
if
(
$count
>
$offset
)
{
$results
[
$key
]
=
$result
;
}
if
(
$need
&&
(
$count
>=
$need
))
{
// If we have all the rows we need, break out of the paging query.
break
2
;
}
}
if
(!
$this
->
rawResultLimit
)
{
// If we don't have a load count, we loaded all the results. We do
// not need to load another page.
break
;
}
if
(
count
(
$page
)
<
$this
->
rawResultLimit
)
{
// If we have a load count but the unfiltered results contained fewer
// objects, we know this was the last page of objects; we do not need
// to load another page because we can deduce it would be empty.
break
;
}
$this
->
nextPage
(
$page
);
}
while
(
true
);
$results
=
$this
->
didLoadResults
(
$results
);
return
$results
;
}
/* -( Policy Query Implementation )---------------------------------------- */
/**
* Get the number of results @{method:loadPage} should load. If the value is
* 0, @{method:loadPage} should load all available results.
*
* @return int The number of results to load, or 0 for all results.
* @task policyimpl
*/
final
protected
function
getRawResultLimit
()
{
return
$this
->
rawResultLimit
;
}
/**
* Hook invoked before query execution. Generally, implementations should
* reset any internal cursors.
*
* @return void
* @task policyimpl
*/
protected
function
willExecute
()
{
return
;
}
/**
* Load a raw page of results. Generally, implementations should load objects
* from the database. They should attempt to return the number of results
* hinted by @{method:getRawResultLimit}.
*
* @return list<PhabricatorPolicyInterface> List of filterable policy objects.
* @task policyimpl
*/
abstract
protected
function
loadPage
();
/**
* Update internal state so that the next call to @{method:loadPage} will
* return new results. Generally, you should adjust a cursor position based
* on the provided result page.
*
* @param list<PhabricatorPolicyInterface> The current page of results.
* @return void
* @task policyimpl
*/
abstract
protected
function
nextPage
(
array
$page
);
/**
* Hook for applying a page filter prior to the privacy filter. This allows
* you to drop some items from the result set without creating problems with
* pagination or cursor updates.
*
* @param list<wild> Results from `loadPage()`.
* @return list<PhabricatorPolicyInterface> Objects for policy filtering.
* @task policyimpl
*/
protected
function
willFilterPage
(
array
$page
)
{
return
$page
;
}
/**
* Hook for applying final adjustments before results are returned. This is
* used by @{class:PhabricatorCursorPagedPolicyAwareQuery} to reverse results
* that are queried during reverse paging.
*
* @param list<PhabricatorPolicyInterface> Query results.
* @return list<PhabricatorPolicyInterface> Final results.
* @task policyimpl
*/
protected
function
didLoadResults
(
array
$results
)
{
return
$results
;
}
}
Event Timeline
Log In to Comment