Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F93536457
PhabricatorPolicyRuleLegalpadSignature.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 29, 13:22
Size
1 KB
Mime Type
text/x-php
Expires
Sun, Dec 1, 13:22 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
22661582
Attached To
rPH Phabricator
PhabricatorPolicyRuleLegalpadSignature.php
View Options
<?php
final
class
PhabricatorPolicyRuleLegalpadSignature
extends
PhabricatorPolicyRule
{
private
$signatures
=
array
();
public
function
getRuleDescription
()
{
return
pht
(
'signers of legalpad documents'
);
}
public
function
willApplyRules
(
PhabricatorUser
$viewer
,
array
$values
)
{
$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
)
{
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
array
(
'markup'
=>
new
AphrontTokenizerTemplateView
(),
'uri'
=>
'/typeahead/common/legalpaddocuments/'
,
'placeholder'
=>
pht
(
'Type a document title...'
),
);
}
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