mirror of
https://we.phorge.it/source/phorge.git
synced 2025-04-02 23:48:18 +02:00
Legalpad - add "no one" signature type
Summary: Fixes T7294. This lets legalpad store other documents that don't need signatures but conceptually belong in legalpad. Test Plan: made a document with signature type "no one" and it saved. viewed the document and noted no signing UI was present. Reviewers: epriestley Reviewed By: epriestley Subscribers: Korvin, epriestley Maniphest Tasks: T7294 Differential Revision: https://secure.phabricator.com/D11788
This commit is contained in:
parent
e946e7cebc
commit
733a9c40ee
3 changed files with 122 additions and 93 deletions
|
@ -97,8 +97,8 @@ final class LegalpadDocumentEditController extends LegalpadController {
|
||||||
if (!$user->getIsAdmin()) {
|
if (!$user->getIsAdmin()) {
|
||||||
$errors[] = pht('Only admins may require signature.');
|
$errors[] = pht('Only admins may require signature.');
|
||||||
}
|
}
|
||||||
$corp = LegalpadDocument::SIGNATURE_TYPE_CORPORATION;
|
$individual = LegalpadDocument::SIGNATURE_TYPE_INDIVIDUAL;
|
||||||
if ($v_signature_type == $corp) {
|
if ($v_signature_type != $individual) {
|
||||||
$errors[] = pht(
|
$errors[] = pht(
|
||||||
'Only documents with signature type "individual" may require '.
|
'Only documents with signature type "individual" may require '.
|
||||||
'signing to use Phabricator.');
|
'signing to use Phabricator.');
|
||||||
|
@ -147,6 +147,7 @@ final class LegalpadDocumentEditController extends LegalpadController {
|
||||||
->setValue($v_signature_type)
|
->setValue($v_signature_type)
|
||||||
->setOptions(LegalpadDocument::getSignatureTypeMap()));
|
->setOptions(LegalpadDocument::getSignatureTypeMap()));
|
||||||
$show_require = true;
|
$show_require = true;
|
||||||
|
$caption = pht('Applies only to documents individuals sign.');
|
||||||
} else {
|
} else {
|
||||||
$form->appendChild(
|
$form->appendChild(
|
||||||
id(new AphrontFormMarkupControl())
|
id(new AphrontFormMarkupControl())
|
||||||
|
@ -154,6 +155,7 @@ final class LegalpadDocumentEditController extends LegalpadController {
|
||||||
->setValue($document->getSignatureTypeName()));
|
->setValue($document->getSignatureTypeName()));
|
||||||
$individual = LegalpadDocument::SIGNATURE_TYPE_INDIVIDUAL;
|
$individual = LegalpadDocument::SIGNATURE_TYPE_INDIVIDUAL;
|
||||||
$show_require = $document->getSignatureType() == $individual;
|
$show_require = $document->getSignatureType() == $individual;
|
||||||
|
$caption = null;
|
||||||
}
|
}
|
||||||
|
|
||||||
if ($show_require) {
|
if ($show_require) {
|
||||||
|
@ -166,9 +168,9 @@ final class LegalpadDocumentEditController extends LegalpadController {
|
||||||
'requireSignature',
|
'requireSignature',
|
||||||
'requireSignature',
|
'requireSignature',
|
||||||
pht(
|
pht(
|
||||||
'Should signing this document be required to use Phabricator? '.
|
'Should signing this document be required to use Phabricator?'),
|
||||||
'Applies to invidivuals only.'),
|
$v_require_signature)
|
||||||
$v_require_signature));
|
->setCaption($caption));
|
||||||
}
|
}
|
||||||
|
|
||||||
$form
|
$form
|
||||||
|
|
|
@ -26,109 +26,120 @@ final class LegalpadDocumentSignController extends LegalpadController {
|
||||||
|
|
||||||
$type_individual = LegalpadDocument::SIGNATURE_TYPE_INDIVIDUAL;
|
$type_individual = LegalpadDocument::SIGNATURE_TYPE_INDIVIDUAL;
|
||||||
$is_individual = ($document->getSignatureType() == $type_individual);
|
$is_individual = ($document->getSignatureType() == $type_individual);
|
||||||
if ($is_individual) {
|
switch ($document->getSignatureType()) {
|
||||||
if ($signer_phid) {
|
case LegalpadDocument::SIGNATURE_TYPE_NONE:
|
||||||
// TODO: This is odd and should probably be adjusted after grey/external
|
// nothing to sign means this should be true
|
||||||
// accounts work better, but use the omnipotent viewer to check for a
|
$has_signed = true;
|
||||||
// signature so we can pick up anonymous/grey signatures.
|
// this is a status UI element
|
||||||
|
$signed_status = null;
|
||||||
|
break;
|
||||||
|
case LegalpadDocument::SIGNATURE_TYPE_INDIVIDUAL:
|
||||||
|
if ($signer_phid) {
|
||||||
|
// TODO: This is odd and should probably be adjusted after
|
||||||
|
// grey/external accounts work better, but use the omnipotent
|
||||||
|
// viewer to check for a signature so we can pick up
|
||||||
|
// anonymous/grey signatures.
|
||||||
|
|
||||||
$signature = id(new LegalpadDocumentSignatureQuery())
|
$signature = id(new LegalpadDocumentSignatureQuery())
|
||||||
->setViewer(PhabricatorUser::getOmnipotentUser())
|
->setViewer(PhabricatorUser::getOmnipotentUser())
|
||||||
->withDocumentPHIDs(array($document->getPHID()))
|
->withDocumentPHIDs(array($document->getPHID()))
|
||||||
->withSignerPHIDs(array($signer_phid))
|
->withSignerPHIDs(array($signer_phid))
|
||||||
->executeOne();
|
->executeOne();
|
||||||
|
|
||||||
if ($signature && !$viewer->isLoggedIn()) {
|
if ($signature && !$viewer->isLoggedIn()) {
|
||||||
return $this->newDialog()
|
return $this->newDialog()
|
||||||
->setTitle(pht('Already Signed'))
|
->setTitle(pht('Already Signed'))
|
||||||
->appendParagraph(pht('You have already signed this document!'))
|
->appendParagraph(pht('You have already signed this document!'))
|
||||||
->addCancelButton('/'.$document->getMonogram(), pht('Okay'));
|
->addCancelButton('/'.$document->getMonogram(), pht('Okay'));
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
$signed_status = null;
|
$signed_status = null;
|
||||||
if (!$signature) {
|
if (!$signature) {
|
||||||
$has_signed = false;
|
$has_signed = false;
|
||||||
|
$signature = id(new LegalpadDocumentSignature())
|
||||||
|
->setSignerPHID($signer_phid)
|
||||||
|
->setDocumentPHID($document->getPHID())
|
||||||
|
->setDocumentVersion($document->getVersions());
|
||||||
|
|
||||||
|
// If the user is logged in, show a notice that they haven't signed.
|
||||||
|
// If they aren't logged in, we can't be as sure, so don't show
|
||||||
|
// anything.
|
||||||
|
if ($viewer->isLoggedIn()) {
|
||||||
|
$signed_status = id(new PHUIErrorView())
|
||||||
|
->setSeverity(PHUIErrorView::SEVERITY_WARNING)
|
||||||
|
->setErrors(
|
||||||
|
array(
|
||||||
|
pht('You have not signed this document yet.'),
|
||||||
|
));
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
$has_signed = true;
|
||||||
|
$signature_data = $signature->getSignatureData();
|
||||||
|
|
||||||
|
// In this case, we know they've signed.
|
||||||
|
$signed_at = $signature->getDateCreated();
|
||||||
|
|
||||||
|
if ($signature->getIsExemption()) {
|
||||||
|
$exemption_phid = $signature->getExemptionPHID();
|
||||||
|
$handles = $this->loadViewerHandles(array($exemption_phid));
|
||||||
|
$exemption_handle = $handles[$exemption_phid];
|
||||||
|
|
||||||
|
$signed_text = pht(
|
||||||
|
'You do not need to sign this document. '.
|
||||||
|
'%s added a signature exemption for you on %s.',
|
||||||
|
$exemption_handle->renderLink(),
|
||||||
|
phabricator_datetime($signed_at, $viewer));
|
||||||
|
} else {
|
||||||
|
$signed_text = pht(
|
||||||
|
'You signed this document on %s.',
|
||||||
|
phabricator_datetime($signed_at, $viewer));
|
||||||
|
}
|
||||||
|
|
||||||
|
$signed_status = id(new PHUIErrorView())
|
||||||
|
->setSeverity(PHUIErrorView::SEVERITY_NOTICE)
|
||||||
|
->setErrors(array($signed_text));
|
||||||
|
}
|
||||||
|
|
||||||
|
$field_errors = array(
|
||||||
|
'name' => true,
|
||||||
|
'email' => true,
|
||||||
|
'agree' => true,
|
||||||
|
);
|
||||||
|
$signature->setSignatureData($signature_data);
|
||||||
|
break;
|
||||||
|
|
||||||
|
case LegalpadDocument::SIGNATURE_TYPE_CORPORATION:
|
||||||
$signature = id(new LegalpadDocumentSignature())
|
$signature = id(new LegalpadDocumentSignature())
|
||||||
->setSignerPHID($signer_phid)
|
|
||||||
->setDocumentPHID($document->getPHID())
|
->setDocumentPHID($document->getPHID())
|
||||||
->setDocumentVersion($document->getVersions());
|
->setDocumentVersion($document->getVersions());
|
||||||
|
|
||||||
// If the user is logged in, show a notice that they haven't signed.
|
|
||||||
// If they aren't logged in, we can't be as sure, so don't show
|
|
||||||
// anything.
|
|
||||||
if ($viewer->isLoggedIn()) {
|
if ($viewer->isLoggedIn()) {
|
||||||
|
$has_signed = false;
|
||||||
|
|
||||||
|
$signed_status = null;
|
||||||
|
} else {
|
||||||
|
// This just hides the form.
|
||||||
|
$has_signed = true;
|
||||||
|
|
||||||
|
$login_text = pht(
|
||||||
|
'This document requires a corporate signatory. You must log in to '.
|
||||||
|
'accept this document on behalf of a company you represent.');
|
||||||
$signed_status = id(new PHUIErrorView())
|
$signed_status = id(new PHUIErrorView())
|
||||||
->setSeverity(PHUIErrorView::SEVERITY_WARNING)
|
->setSeverity(PHUIErrorView::SEVERITY_WARNING)
|
||||||
->setErrors(
|
->setErrors(array($login_text));
|
||||||
array(
|
|
||||||
pht('You have not signed this document yet.'),
|
|
||||||
));
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
$has_signed = true;
|
|
||||||
$signature_data = $signature->getSignatureData();
|
|
||||||
|
|
||||||
// In this case, we know they've signed.
|
|
||||||
$signed_at = $signature->getDateCreated();
|
|
||||||
|
|
||||||
if ($signature->getIsExemption()) {
|
|
||||||
$exemption_phid = $signature->getExemptionPHID();
|
|
||||||
$handles = $this->loadViewerHandles(array($exemption_phid));
|
|
||||||
$exemption_handle = $handles[$exemption_phid];
|
|
||||||
|
|
||||||
$signed_text = pht(
|
|
||||||
'You do not need to sign this document. '.
|
|
||||||
'%s added a signature exemption for you on %s.',
|
|
||||||
$exemption_handle->renderLink(),
|
|
||||||
phabricator_datetime($signed_at, $viewer));
|
|
||||||
} else {
|
|
||||||
$signed_text = pht(
|
|
||||||
'You signed this document on %s.',
|
|
||||||
phabricator_datetime($signed_at, $viewer));
|
|
||||||
}
|
}
|
||||||
|
|
||||||
$signed_status = id(new PHUIErrorView())
|
$field_errors = array(
|
||||||
->setSeverity(PHUIErrorView::SEVERITY_NOTICE)
|
'name' => true,
|
||||||
->setErrors(array($signed_text));
|
'address' => true,
|
||||||
}
|
'contact.name' => true,
|
||||||
|
'email' => true,
|
||||||
$field_errors = array(
|
);
|
||||||
'name' => true,
|
$signature->setSignatureData($signature_data);
|
||||||
'email' => true,
|
break;
|
||||||
'agree' => true,
|
|
||||||
);
|
|
||||||
} else {
|
|
||||||
$signature = id(new LegalpadDocumentSignature())
|
|
||||||
->setDocumentPHID($document->getPHID())
|
|
||||||
->setDocumentVersion($document->getVersions());
|
|
||||||
|
|
||||||
if ($viewer->isLoggedIn()) {
|
|
||||||
$has_signed = false;
|
|
||||||
|
|
||||||
$signed_status = null;
|
|
||||||
} else {
|
|
||||||
// This just hides the form.
|
|
||||||
$has_signed = true;
|
|
||||||
|
|
||||||
$login_text = pht(
|
|
||||||
'This document requires a corporate signatory. You must log in to '.
|
|
||||||
'accept this document on behalf of a company you represent.');
|
|
||||||
$signed_status = id(new PHUIErrorView())
|
|
||||||
->setSeverity(PHUIErrorView::SEVERITY_WARNING)
|
|
||||||
->setErrors(array($login_text));
|
|
||||||
}
|
|
||||||
|
|
||||||
$field_errors = array(
|
|
||||||
'name' => true,
|
|
||||||
'address' => true,
|
|
||||||
'contact.name' => true,
|
|
||||||
'email' => true,
|
|
||||||
);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
$signature->setSignatureData($signature_data);
|
|
||||||
|
|
||||||
$errors = array();
|
$errors = array();
|
||||||
if ($request->isFormOrHisecPost() && !$has_signed) {
|
if ($request->isFormOrHisecPost() && !$has_signed) {
|
||||||
|
|
||||||
|
@ -256,9 +267,17 @@ final class LegalpadDocumentSignController extends LegalpadController {
|
||||||
$signature,
|
$signature,
|
||||||
$field_errors);
|
$field_errors);
|
||||||
|
|
||||||
$subheader = id(new PHUIHeaderView())
|
switch ($document->getSignatureType()) {
|
||||||
->setHeader(pht('Agree and Sign Document'))
|
case LegalpadDocument::SIGNATURE_TYPE_NONE:
|
||||||
->setBleedHeader(true);
|
$subheader = null;
|
||||||
|
break;
|
||||||
|
case LegalpadDocument::SIGNATURE_TYPE_INDIVIDUAL:
|
||||||
|
case LegalpadDocument::SIGNATURE_TYPE_CORPORATION:
|
||||||
|
$subheader = id(new PHUIHeaderView())
|
||||||
|
->setHeader(pht('Agree and Sign Document'))
|
||||||
|
->setBleedHeader(true);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
$content->appendChild(
|
$content->appendChild(
|
||||||
array(
|
array(
|
||||||
|
@ -292,6 +311,8 @@ final class LegalpadDocumentSignController extends LegalpadController {
|
||||||
$signature_data = array();
|
$signature_data = array();
|
||||||
|
|
||||||
switch ($document->getSignatureType()) {
|
switch ($document->getSignatureType()) {
|
||||||
|
case LegalpadDocument::SIGNATURE_TYPE_NONE:
|
||||||
|
break;
|
||||||
case LegalpadDocument::SIGNATURE_TYPE_INDIVIDUAL:
|
case LegalpadDocument::SIGNATURE_TYPE_INDIVIDUAL:
|
||||||
if ($viewer->isLoggedIn()) {
|
if ($viewer->isLoggedIn()) {
|
||||||
$signer_phid = $viewer->getPHID();
|
$signer_phid = $viewer->getPHID();
|
||||||
|
@ -348,6 +369,9 @@ final class LegalpadDocumentSignController extends LegalpadController {
|
||||||
|
|
||||||
$signature_type = $document->getSignatureType();
|
$signature_type = $document->getSignatureType();
|
||||||
switch ($signature_type) {
|
switch ($signature_type) {
|
||||||
|
case LegalpadDocument::SIGNATURE_TYPE_NONE:
|
||||||
|
// bail out of here quick
|
||||||
|
return;
|
||||||
case LegalpadDocument::SIGNATURE_TYPE_INDIVIDUAL:
|
case LegalpadDocument::SIGNATURE_TYPE_INDIVIDUAL:
|
||||||
$this->buildIndividualSignatureForm(
|
$this->buildIndividualSignatureForm(
|
||||||
$form,
|
$form,
|
||||||
|
|
|
@ -20,7 +20,8 @@ final class LegalpadDocument extends LegalpadDAO
|
||||||
protected $preamble;
|
protected $preamble;
|
||||||
protected $requireSignature;
|
protected $requireSignature;
|
||||||
|
|
||||||
const SIGNATURE_TYPE_INDIVIDUAL = 'user';
|
const SIGNATURE_TYPE_NONE = 'none';
|
||||||
|
const SIGNATURE_TYPE_INDIVIDUAL = 'user';
|
||||||
const SIGNATURE_TYPE_CORPORATION = 'corp';
|
const SIGNATURE_TYPE_CORPORATION = 'corp';
|
||||||
|
|
||||||
private $documentBody = self::ATTACHABLE;
|
private $documentBody = self::ATTACHABLE;
|
||||||
|
@ -134,6 +135,7 @@ final class LegalpadDocument extends LegalpadDAO
|
||||||
return array(
|
return array(
|
||||||
self::SIGNATURE_TYPE_INDIVIDUAL => pht('Individuals'),
|
self::SIGNATURE_TYPE_INDIVIDUAL => pht('Individuals'),
|
||||||
self::SIGNATURE_TYPE_CORPORATION => pht('Corporations'),
|
self::SIGNATURE_TYPE_CORPORATION => pht('Corporations'),
|
||||||
|
self::SIGNATURE_TYPE_NONE => pht('No One'),
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -145,6 +147,7 @@ final class LegalpadDocument extends LegalpadDAO
|
||||||
public function getSignatureTypeIcon() {
|
public function getSignatureTypeIcon() {
|
||||||
$type = $this->getSignatureType();
|
$type = $this->getSignatureType();
|
||||||
$map = array(
|
$map = array(
|
||||||
|
self::SIGNATURE_TYPE_NONE => '',
|
||||||
self::SIGNATURE_TYPE_INDIVIDUAL => 'fa-user grey',
|
self::SIGNATURE_TYPE_INDIVIDUAL => 'fa-user grey',
|
||||||
self::SIGNATURE_TYPE_CORPORATION => 'fa-building-o grey',
|
self::SIGNATURE_TYPE_CORPORATION => 'fa-building-o grey',
|
||||||
);
|
);
|
||||||
|
|
Loading…
Add table
Reference in a new issue