Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F531620
PhabricatorProjectsBasePolicyRule.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
1 KB
Referenced Files
None
Subscribers
None
PhabricatorProjectsBasePolicyRule.php
View Options
<?php
abstract
class
PhabricatorProjectsBasePolicyRule
extends
PhabricatorPolicyRule
{
private
$memberships
=
array
();
protected
function
getMemberships
(
$viewer_phid
)
{
return
idx
(
$this
->
memberships
,
$viewer_phid
,
array
());
}
public
function
willApplyRules
(
PhabricatorUser
$viewer
,
array
$values
,
array
$objects
)
{
$values
=
array_unique
(
array_filter
(
array_mergev
(
$values
)));
if
(!
$values
)
{
return
;
}
$projects
=
id
(
new
PhabricatorProjectQuery
())
->
setViewer
(
PhabricatorUser
::
getOmnipotentUser
())
->
withMemberPHIDs
(
array
(
$viewer
->
getPHID
()))
->
withPHIDs
(
$values
)
->
execute
();
foreach
(
$projects
as
$project
)
{
$this
->
memberships
[
$viewer
->
getPHID
()][
$project
->
getPHID
()]
=
true
;
}
}
public
function
getValueControlType
()
{
return
self
::
CONTROL_TYPE_TOKENIZER
;
}
public
function
getValueControlTemplate
()
{
$datasource
=
id
(
new
PhabricatorProjectDatasource
())
->
setParameters
(
array
(
'policy'
=>
1
,
));
return
$this
->
getDatasourceTemplate
(
$datasource
);
}
public
function
getValueForStorage
(
$value
)
{
PhutilTypeSpec
::
newFromString
(
'list<string>'
)->
check
(
$value
);
return
array_values
(
$value
);
}
public
function
getValueForDisplay
(
PhabricatorUser
$viewer
,
$value
)
{
$handles
=
id
(
new
PhabricatorHandleQuery
())
->
setViewer
(
$viewer
)
->
withPHIDs
(
$value
)
->
execute
();
return
mpull
(
$handles
,
'getFullName'
,
'getPHID'
);
}
public
function
ruleHasEffect
(
$value
)
{
return
(
bool
)
$value
;
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Mon, May 12, 3:57 AM (2 d)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
117774
Default Alt Text
PhabricatorProjectsBasePolicyRule.php (1 KB)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment