Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F98062216
PhabricatorProjectsBasePolicyRule.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
Thu, Jan 9, 05:28
Size
1 KB
Mime Type
text/x-php
Expires
Sat, Jan 11, 05:28 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
23491942
Attached To
rPH Phabricator
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
;
}
}
Event Timeline
Log In to Comment