Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F92989897
LegalpadDocumentSignatureSearchEngine.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
Mon, Nov 25, 10:11
Size
8 KB
Mime Type
text/x-php
Expires
Wed, Nov 27, 10:11 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
22553548
Attached To
rPH Phabricator
LegalpadDocumentSignatureSearchEngine.php
View Options
<?php
final
class
LegalpadDocumentSignatureSearchEngine
extends
PhabricatorApplicationSearchEngine
{
private
$document
;
public
function
getResultTypeDescription
()
{
return
pht
(
'Legalpad Signatures'
);
}
public
function
getApplicationClassName
()
{
return
'PhabricatorLegalpadApplication'
;
}
public
function
setDocument
(
LegalpadDocument
$document
)
{
$this
->
document
=
$document
;
return
$this
;
}
public
function
buildSavedQueryFromRequest
(
AphrontRequest
$request
)
{
$saved
=
new
PhabricatorSavedQuery
();
$saved
->
setParameter
(
'signerPHIDs'
,
$this
->
readUsersFromRequest
(
$request
,
'signers'
));
$saved
->
setParameter
(
'documentPHIDs'
,
$this
->
readPHIDsFromRequest
(
$request
,
'documents'
,
array
(
PhabricatorLegalpadDocumentPHIDType
::
TYPECONST
,
)));
$saved
->
setParameter
(
'nameContains'
,
$request
->
getStr
(
'nameContains'
));
$saved
->
setParameter
(
'emailContains'
,
$request
->
getStr
(
'emailContains'
));
return
$saved
;
}
public
function
buildQueryFromSavedQuery
(
PhabricatorSavedQuery
$saved
)
{
$query
=
id
(
new
LegalpadDocumentSignatureQuery
());
$signer_phids
=
$saved
->
getParameter
(
'signerPHIDs'
,
array
());
if
(
$signer_phids
)
{
$query
->
withSignerPHIDs
(
$signer_phids
);
}
if
(
$this
->
document
)
{
$query
->
withDocumentPHIDs
(
array
(
$this
->
document
->
getPHID
()));
}
else
{
$document_phids
=
$saved
->
getParameter
(
'documentPHIDs'
,
array
());
if
(
$document_phids
)
{
$query
->
withDocumentPHIDs
(
$document_phids
);
}
}
$name_contains
=
$saved
->
getParameter
(
'nameContains'
);
if
(
strlen
(
$name_contains
))
{
$query
->
withNameContains
(
$name_contains
);
}
$email_contains
=
$saved
->
getParameter
(
'emailContains'
);
if
(
strlen
(
$email_contains
))
{
$query
->
withEmailContains
(
$email_contains
);
}
return
$query
;
}
public
function
buildSearchForm
(
AphrontFormView
$form
,
PhabricatorSavedQuery
$saved_query
)
{
$document_phids
=
$saved_query
->
getParameter
(
'documentPHIDs'
,
array
());
$signer_phids
=
$saved_query
->
getParameter
(
'signerPHIDs'
,
array
());
$phids
=
array_merge
(
$document_phids
,
$signer_phids
);
$handles
=
id
(
new
PhabricatorHandleQuery
())
->
setViewer
(
$this
->
requireViewer
())
->
withPHIDs
(
$phids
)
->
execute
();
if
(!
$this
->
document
)
{
$form
->
appendChild
(
id
(
new
AphrontFormTokenizerControl
())
->
setDatasource
(
new
LegalpadDocumentDatasource
())
->
setName
(
'documents'
)
->
setLabel
(
pht
(
'Documents'
))
->
setValue
(
array_select_keys
(
$handles
,
$document_phids
)));
}
$name_contains
=
$saved_query
->
getParameter
(
'nameContains'
,
''
);
$email_contains
=
$saved_query
->
getParameter
(
'emailContains'
,
''
);
$form
->
appendChild
(
id
(
new
AphrontFormTokenizerControl
())
->
setDatasource
(
new
PhabricatorPeopleDatasource
())
->
setName
(
'signers'
)
->
setLabel
(
pht
(
'Signers'
))
->
setValue
(
array_select_keys
(
$handles
,
$signer_phids
)))
->
appendChild
(
id
(
new
AphrontFormTextControl
())
->
setLabel
(
pht
(
'Name Contains'
))
->
setName
(
'nameContains'
)
->
setValue
(
$name_contains
))
->
appendChild
(
id
(
new
AphrontFormTextControl
())
->
setLabel
(
pht
(
'Email Contains'
))
->
setName
(
'emailContains'
)
->
setValue
(
$email_contains
));
}
protected
function
getURI
(
$path
)
{
if
(
$this
->
document
)
{
return
'/legalpad/signatures/'
.
$this
->
document
->
getID
().
'/'
.
$path
;
}
else
{
return
'/legalpad/signatures/'
.
$path
;
}
}
protected
function
getBuiltinQueryNames
()
{
$names
=
array
(
'all'
=>
pht
(
'All Signatures'
),
);
return
$names
;
}
public
function
buildSavedQueryFromBuiltin
(
$query_key
)
{
$query
=
$this
->
newSavedQuery
();
$query
->
setQueryKey
(
$query_key
);
switch
(
$query_key
)
{
case
'all'
:
return
$query
;
}
return
parent
::
buildSavedQueryFromBuiltin
(
$query_key
);
}
protected
function
getRequiredHandlePHIDsForResultList
(
array
$signatures
,
PhabricatorSavedQuery
$query
)
{
return
array_merge
(
mpull
(
$signatures
,
'getSignerPHID'
),
mpull
(
$signatures
,
'getDocumentPHID'
));
}
protected
function
renderResultList
(
array
$signatures
,
PhabricatorSavedQuery
$query
,
array
$handles
)
{
assert_instances_of
(
$signatures
,
'LegalpadDocumentSignature'
);
$viewer
=
$this
->
requireViewer
();
Javelin
::
initBehavior
(
'phabricator-tooltips'
);
$sig_good
=
$this
->
renderIcon
(
'fa-check'
,
null
,
pht
(
'Verified, Current'
));
$sig_corp
=
$this
->
renderIcon
(
'fa-building-o'
,
null
,
pht
(
'Verified, Corporate'
));
$sig_old
=
$this
->
renderIcon
(
'fa-clock-o'
,
'orange'
,
pht
(
'Signed Older Version'
));
$sig_unverified
=
$this
->
renderIcon
(
'fa-envelope'
,
'red'
,
pht
(
'Unverified Email'
));
$sig_exemption
=
$this
->
renderIcon
(
'fa-asterisk'
,
'indigo'
,
pht
(
'Exemption'
));
id
(
new
PHUIIconView
())
->
setIconFont
(
'fa-envelope'
,
'red'
)
->
addSigil
(
'has-tooltip'
)
->
setMetadata
(
array
(
'tip'
=>
pht
(
'Unverified Email'
)));
$type_corporate
=
LegalpadDocument
::
SIGNATURE_TYPE_CORPORATION
;
$rows
=
array
();
foreach
(
$signatures
as
$signature
)
{
$name
=
$signature
->
getSignerName
();
$email
=
$signature
->
getSignerEmail
();
$document
=
$signature
->
getDocument
();
if
(
$signature
->
getIsExemption
())
{
$sig_icon
=
$sig_exemption
;
}
else
if
(!
$signature
->
isVerified
())
{
$sig_icon
=
$sig_unverified
;
}
else
if
(
$signature
->
getDocumentVersion
()
!=
$document
->
getVersions
())
{
$sig_icon
=
$sig_old
;
}
else
if
(
$signature
->
getSignatureType
()
==
$type_corporate
)
{
$sig_icon
=
$sig_corp
;
}
else
{
$sig_icon
=
$sig_good
;
}
$signature_href
=
$this
->
getApplicationURI
(
'signature/'
.
$signature
->
getID
().
'/'
);
$sig_icon
=
javelin_tag
(
'a'
,
array
(
'href'
=>
$signature_href
,
'sigil'
=>
'workflow'
,
),
$sig_icon
);
$signer_phid
=
$signature
->
getSignerPHID
();
$rows
[]
=
array
(
$sig_icon
,
$handles
[
$document
->
getPHID
()]->
renderLink
(),
$signer_phid
?
$handles
[
$signer_phid
]->
renderLink
()
:
null
,
$name
,
phutil_tag
(
'a'
,
array
(
'href'
=>
'mailto:'
.
$email
,
),
$email
),
phabricator_datetime
(
$signature
->
getDateCreated
(),
$viewer
),
);
}
$table
=
id
(
new
AphrontTableView
(
$rows
))
->
setNoDataString
(
pht
(
'No signatures match the query.'
))
->
setHeaders
(
array
(
''
,
pht
(
'Document'
),
pht
(
'Account'
),
pht
(
'Name'
),
pht
(
'Email'
),
pht
(
'Signed'
),
))
->
setColumnVisibility
(
array
(
true
,
// Only show the "Document" column if we aren't scoped to a
// particular document.
!
$this
->
document
,
))
->
setColumnClasses
(
array
(
''
,
''
,
''
,
''
,
'wide'
,
'right'
,
));
$header
=
id
(
new
PHUIHeaderView
())
->
setHeader
(
pht
(
'Signatures'
));
if
(
$this
->
document
)
{
$document_id
=
$this
->
document
->
getID
();
$header
->
addActionLink
(
id
(
new
PHUIButtonView
())
->
setText
(
pht
(
'Add Signature Exemption'
))
->
setTag
(
'a'
)
->
setHref
(
$this
->
getApplicationURI
(
'addsignature/'
.
$document_id
.
'/'
))
->
setWorkflow
(
true
)
->
setIcon
(
id
(
new
PHUIIconView
())->
setIconFont
(
'fa-pencil'
)));
}
$box
=
id
(
new
PHUIObjectBoxView
())
->
setHeader
(
$header
)
->
appendChild
(
$table
);
if
(!
$this
->
document
)
{
$policy_notice
=
id
(
new
PHUIInfoView
())
->
setSeverity
(
PHUIInfoView
::
SEVERITY_NOTICE
)
->
setErrors
(
array
(
pht
(
'NOTE: You can only see your own signatures and signatures on '
.
'documents you have permission to edit.'
),
));
$box
->
setErrorView
(
$policy_notice
);
}
return
$box
;
}
private
function
renderIcon
(
$icon
,
$color
,
$title
)
{
Javelin
::
initBehavior
(
'phabricator-tooltips'
);
return
array
(
id
(
new
PHUIIconView
())
->
setIconFont
(
$icon
,
$color
)
->
addSigil
(
'has-tooltip'
)
->
setMetadata
(
array
(
'tip'
=>
$title
)),
javelin_tag
(
'span'
,
array
(
'aural'
=>
true
,
),
$title
),
);
}
}
Event Timeline
Log In to Comment