Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F91866837
PhabricatorLegalpadSignaturePolicyRule.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, Nov 15, 07:13
Size
1 KB
Mime Type
text/x-php
Expires
Sun, Nov 17, 07:13 (2 d)
Engine
blob
Format
Raw Data
Handle
22336106
Attached To
rPH Phabricator
PhabricatorLegalpadSignaturePolicyRule.php
View Options
<?php
final
class
PhabricatorLegalpadSignaturePolicyRule
extends
PhabricatorPolicyRule
{
private
$signatures
=
array
();
public
function
getRuleDescription
()
{
return
pht
(
'signers of legalpad documents'
);
}
public
function
willApplyRules
(
PhabricatorUser
$viewer
,
array
$values
,
array
$objects
)
{
$values
=
array_unique
(
array_filter
(
array_mergev
(
$values
)));
if
(!
$values
)
{
return
;
}
// TODO: This accepts signature of any version of the document, even an
// older version.
$documents
=
id
(
new
LegalpadDocumentQuery
())
->
setViewer
(
PhabricatorUser
::
getOmnipotentUser
())
->
withPHIDs
(
$values
)
->
withSignerPHIDs
(
array
(
$viewer
->
getPHID
()))
->
execute
();
$this
->
signatures
=
mpull
(
$documents
,
'getPHID'
,
'getPHID'
);
}
public
function
applyRule
(
PhabricatorUser
$viewer
,
$value
,
PhabricatorPolicyInterface
$object
)
{
foreach
(
$value
as
$document_phid
)
{
if
(!
isset
(
$this
->
signatures
[
$document_phid
]))
{
return
false
;
}
}
return
true
;
}
public
function
getValueControlType
()
{
return
self
::
CONTROL_TYPE_TOKENIZER
;
}
public
function
getValueControlTemplate
()
{
return
$this
->
getDatasourceTemplate
(
new
LegalpadDocumentDatasource
());
}
public
function
getRuleOrder
()
{
return
900
;
}
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