Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F96550356
PhabricatorPolicyQuery.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, Dec 27, 23:41
Size
4 KB
Mime Type
text/x-php
Expires
Sun, Dec 29, 23:41 (2 d)
Engine
blob
Format
Raw Data
Handle
23204460
Attached To
rPH Phabricator
PhabricatorPolicyQuery.php
View Options
<?php
final
class
PhabricatorPolicyQuery
extends
PhabricatorQuery
{
private
$viewer
;
private
$object
;
public
function
setViewer
(
PhabricatorUser
$viewer
)
{
$this
->
viewer
=
$viewer
;
return
$this
;
}
public
function
setObject
(
PhabricatorPolicyInterface
$object
)
{
$this
->
object
=
$object
;
return
$this
;
}
public
static
function
loadPolicies
(
PhabricatorUser
$viewer
,
PhabricatorPolicyInterface
$object
)
{
$results
=
array
();
$policies
=
null
;
$global
=
self
::
getGlobalPolicies
();
$capabilities
=
$object
->
getCapabilities
();
foreach
(
$capabilities
as
$capability
)
{
$policy
=
$object
->
getPolicy
(
$capability
);
if
(!
$policy
)
{
continue
;
}
if
(
isset
(
$global
[
$policy
]))
{
$results
[
$capability
]
=
$global
[
$policy
];
continue
;
}
if
(
$policies
===
null
)
{
// This slightly overfetches data, but it shouldn't generally
// be a problem.
$policies
=
id
(
new
PhabricatorPolicyQuery
())
->
setViewer
(
$viewer
)
->
setObject
(
$object
)
->
execute
();
}
$results
[
$capability
]
=
$policies
[
$policy
];
}
return
$results
;
}
public
static
function
renderPolicyDescriptions
(
PhabricatorUser
$viewer
,
PhabricatorPolicyInterface
$object
,
$icon
=
false
)
{
$policies
=
self
::
loadPolicies
(
$viewer
,
$object
);
foreach
(
$policies
as
$capability
=>
$policy
)
{
$policies
[
$capability
]
=
$policy
->
renderDescription
(
$icon
);
}
return
$policies
;
}
public
function
execute
()
{
if
(!
$this
->
viewer
)
{
throw
new
Exception
(
'Call setViewer() before execute()!'
);
}
if
(!
$this
->
object
)
{
throw
new
Exception
(
'Call setObject() before execute()!'
);
}
$results
=
$this
->
getGlobalPolicies
();
if
(
$this
->
viewer
->
getPHID
())
{
$projects
=
id
(
new
PhabricatorProjectQuery
())
->
setViewer
(
$this
->
viewer
)
->
withMemberPHIDs
(
array
(
$this
->
viewer
->
getPHID
()))
->
execute
();
if
(
$projects
)
{
foreach
(
$projects
as
$project
)
{
$results
[]
=
id
(
new
PhabricatorPolicy
())
->
setType
(
PhabricatorPolicyType
::
TYPE_PROJECT
)
->
setPHID
(
$project
->
getPHID
())
->
setHref
(
'/project/view/'
.
$project
->
getID
().
'/'
)
->
setName
(
$project
->
getName
());
}
}
}
$results
=
mpull
(
$results
,
null
,
'getPHID'
);
$other_policies
=
array
();
$capabilities
=
$this
->
object
->
getCapabilities
();
foreach
(
$capabilities
as
$capability
)
{
$policy
=
$this
->
object
->
getPolicy
(
$capability
);
if
(!
$policy
)
{
continue
;
}
$other_policies
[
$policy
]
=
$policy
;
}
// If this install doesn't have "Public" enabled, remove it as an option
// unless the object already has a "Public" policy. In this case we retain
// the policy but enforce it as thought it was "All Users".
$show_public
=
PhabricatorEnv
::
getEnvConfig
(
'policy.allow-public'
);
if
(!
$show_public
&&
empty
(
$other_policies
[
PhabricatorPolicies
::
POLICY_PUBLIC
]))
{
unset
(
$results
[
PhabricatorPolicies
::
POLICY_PUBLIC
]);
}
$other_policies
=
array_diff_key
(
$other_policies
,
$results
);
if
(
$other_policies
)
{
$handles
=
id
(
new
PhabricatorHandleQuery
())
->
setViewer
(
$this
->
viewer
)
->
withPHIDs
(
$other_policies
)
->
execute
();
foreach
(
$other_policies
as
$phid
)
{
$results
[
$phid
]
=
PhabricatorPolicy
::
newFromPolicyAndHandle
(
$phid
,
$handles
[
$phid
]);
}
}
$results
=
msort
(
$results
,
'getSortKey'
);
return
$results
;
}
public
static
function
isGlobalPolicy
(
$policy
)
{
$globalPolicies
=
self
::
getGlobalPolicies
();
if
(
isset
(
$globalPolicies
[
$policy
]))
{
return
true
;
}
return
false
;
}
public
static
function
getGlobalPolicy
(
$policy
)
{
if
(!
self
::
isGlobalPolicy
(
$policy
))
{
throw
new
Exception
(
"Policy '{$policy}' is not a global policy!"
);
}
return
idx
(
self
::
getGlobalPolicies
(),
$policy
);
}
private
static
function
getGlobalPolicies
()
{
static
$constants
=
array
(
PhabricatorPolicies
::
POLICY_PUBLIC
,
PhabricatorPolicies
::
POLICY_USER
,
PhabricatorPolicies
::
POLICY_ADMIN
,
PhabricatorPolicies
::
POLICY_NOONE
,
);
$results
=
array
();
foreach
(
$constants
as
$constant
)
{
$results
[
$constant
]
=
id
(
new
PhabricatorPolicy
())
->
setType
(
PhabricatorPolicyType
::
TYPE_GLOBAL
)
->
setPHID
(
$constant
)
->
setName
(
self
::
getGlobalPolicyName
(
$constant
));
}
return
$results
;
}
private
static
function
getGlobalPolicyName
(
$policy
)
{
switch
(
$policy
)
{
case
PhabricatorPolicies
::
POLICY_PUBLIC
:
return
pht
(
'Public (No Login Required)'
);
case
PhabricatorPolicies
::
POLICY_USER
:
return
pht
(
'All Users'
);
case
PhabricatorPolicies
::
POLICY_ADMIN
:
return
pht
(
'Administrators'
);
case
PhabricatorPolicies
::
POLICY_NOONE
:
return
pht
(
'No One'
);
default
:
return
pht
(
'Unknown Policy'
);
}
}
}
Event Timeline
Log In to Comment