Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F90477121
PhabricatorProjectsPolicyRule.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
Sat, Nov 2, 00:37
Size
1 KB
Mime Type
text/x-php
Expires
Mon, Nov 4, 00:37 (2 d)
Engine
blob
Format
Raw Data
Handle
22081882
Attached To
rPH Phabricator
PhabricatorProjectsPolicyRule.php
View Options
<?php
final
class
PhabricatorProjectsPolicyRule
extends
PhabricatorPolicyRule
{
private
$memberships
=
array
();
public
function
getRuleDescription
()
{
return
pht
(
'members of projects'
);
}
public
function
willApplyRules
(
PhabricatorUser
$viewer
,
array
$values
)
{
$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
applyRule
(
PhabricatorUser
$viewer
,
$value
)
{
foreach
(
$value
as
$project_phid
)
{
if
(
isset
(
$this
->
memberships
[
$viewer
->
getPHID
()][
$project_phid
]))
{
return
true
;
}
}
return
false
;
}
public
function
getValueControlType
()
{
return
self
::
CONTROL_TYPE_TOKENIZER
;
}
public
function
getValueControlTemplate
()
{
$projects_source
=
new
PhabricatorProjectDatasource
();
return
array
(
'markup'
=>
new
AphrontTokenizerTemplateView
(),
'uri'
=>
$projects_source
->
getDatasourceURI
(),
'placeholder'
=>
$projects_source
->
getPlaceholderText
(),
);
}
public
function
getRuleOrder
()
{
return
200
;
}
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