mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-22 14:52:41 +01:00
Legalpad - make it work for not logged in users
Summary: Adds "verified" and "secretKey" to Legalpad document signatures. For logged in users using an email address they own, things are verified right away. Otherwise, the email is sent a verification letter. When the user clicks the link the signature is marked verified. Test Plan: signed the document with a bogus email address not logged in. verified the email that would be sent looked good from command line. followed link and successfully verified bogus email address Reviewers: epriestley Reviewed By: epriestley CC: Korvin, epriestley, aran, asherkin Maniphest Tasks: T4283 Differential Revision: https://secure.phabricator.com/D7930
This commit is contained in:
parent
42d9fa34e2
commit
41d2a09536
10 changed files with 307 additions and 40 deletions
8
resources/sql/autopatches/20140113.legalpadsig.1.sql
Normal file
8
resources/sql/autopatches/20140113.legalpadsig.1.sql
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
ALTER TABLE {$NAMESPACE}_legalpad.legalpad_documentsignature
|
||||||
|
ADD secretKey VARCHAR(20) NOT NULL COLLATE utf8_bin;
|
||||||
|
|
||||||
|
ALTER TABLE {$NAMESPACE}_legalpad.legalpad_documentsignature
|
||||||
|
ADD verified TINYINT(1) DEFAULT 0;
|
||||||
|
|
||||||
|
ALTER TABLE {$NAMESPACE}_legalpad.legalpad_documentsignature
|
||||||
|
ADD KEY `secretKey` (secretKey);
|
23
resources/sql/autopatches/20140113.legalpadsig.2.php
Normal file
23
resources/sql/autopatches/20140113.legalpadsig.2.php
Normal file
|
@ -0,0 +1,23 @@
|
||||||
|
<?php
|
||||||
|
|
||||||
|
echo "Adding secretkeys to legalpad document signatures.\n";
|
||||||
|
|
||||||
|
$table = new LegalpadDocumentSignature();
|
||||||
|
$conn_w = $table->establishConnection('w');
|
||||||
|
$iterator = new LiskMigrationIterator($table);
|
||||||
|
foreach ($iterator as $sig) {
|
||||||
|
$id = $sig->getID();
|
||||||
|
|
||||||
|
echo "Populating signature {$id}...\n";
|
||||||
|
|
||||||
|
if (!$sig->getSecretKey()) {
|
||||||
|
queryfx(
|
||||||
|
$conn_w,
|
||||||
|
'UPDATE %T SET secretKey = %s WHERE id = %d',
|
||||||
|
$table->getTableName(),
|
||||||
|
Filesystem::readRandomCharacters(20),
|
||||||
|
$id);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
echo "Done.\n";
|
|
@ -838,6 +838,7 @@ phutil_register_library_map(array(
|
||||||
'LegalpadDocumentSearchEngine' => 'applications/legalpad/query/LegalpadDocumentSearchEngine.php',
|
'LegalpadDocumentSearchEngine' => 'applications/legalpad/query/LegalpadDocumentSearchEngine.php',
|
||||||
'LegalpadDocumentSignController' => 'applications/legalpad/controller/LegalpadDocumentSignController.php',
|
'LegalpadDocumentSignController' => 'applications/legalpad/controller/LegalpadDocumentSignController.php',
|
||||||
'LegalpadDocumentSignature' => 'applications/legalpad/storage/LegalpadDocumentSignature.php',
|
'LegalpadDocumentSignature' => 'applications/legalpad/storage/LegalpadDocumentSignature.php',
|
||||||
|
'LegalpadDocumentSignatureVerificationController' => 'applications/legalpad/controller/LegalpadDocumentSignatureVerificationController.php',
|
||||||
'LegalpadDocumentViewController' => 'applications/legalpad/controller/LegalpadDocumentViewController.php',
|
'LegalpadDocumentViewController' => 'applications/legalpad/controller/LegalpadDocumentViewController.php',
|
||||||
'LegalpadMockMailReceiver' => 'applications/legalpad/mail/LegalpadMockMailReceiver.php',
|
'LegalpadMockMailReceiver' => 'applications/legalpad/mail/LegalpadMockMailReceiver.php',
|
||||||
'LegalpadReplyHandler' => 'applications/legalpad/mail/LegalpadReplyHandler.php',
|
'LegalpadReplyHandler' => 'applications/legalpad/mail/LegalpadReplyHandler.php',
|
||||||
|
@ -3357,6 +3358,7 @@ phutil_register_library_map(array(
|
||||||
'LegalpadDocumentSearchEngine' => 'PhabricatorApplicationSearchEngine',
|
'LegalpadDocumentSearchEngine' => 'PhabricatorApplicationSearchEngine',
|
||||||
'LegalpadDocumentSignController' => 'LegalpadController',
|
'LegalpadDocumentSignController' => 'LegalpadController',
|
||||||
'LegalpadDocumentSignature' => 'LegalpadDAO',
|
'LegalpadDocumentSignature' => 'LegalpadDAO',
|
||||||
|
'LegalpadDocumentSignatureVerificationController' => 'LegalpadController',
|
||||||
'LegalpadDocumentViewController' => 'LegalpadController',
|
'LegalpadDocumentViewController' => 'LegalpadController',
|
||||||
'LegalpadMockMailReceiver' => 'PhabricatorObjectMailReceiver',
|
'LegalpadMockMailReceiver' => 'PhabricatorObjectMailReceiver',
|
||||||
'LegalpadReplyHandler' => 'PhabricatorMailReplyHandler',
|
'LegalpadReplyHandler' => 'PhabricatorMailReplyHandler',
|
||||||
|
|
|
@ -167,4 +167,35 @@ final class PhabricatorExternalAccountQuery
|
||||||
return 'PhabricatorApplicationPeople';
|
return 'PhabricatorApplicationPeople';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Attempts to find an external account and if none exists creates a new
|
||||||
|
* external account with a shiny new ID and PHID.
|
||||||
|
*
|
||||||
|
* NOTE: This function assumes the first item in various query parameters is
|
||||||
|
* the correct value to use in creating a new external account.
|
||||||
|
*/
|
||||||
|
public function loadOneOrCreate() {
|
||||||
|
$account = $this->executeOne();
|
||||||
|
if (!$account) {
|
||||||
|
$account = new PhabricatorExternalAccount();
|
||||||
|
if ($this->accountIDs) {
|
||||||
|
$account->setAccountID(reset($this->accountIDs));
|
||||||
|
}
|
||||||
|
if ($this->accountTypes) {
|
||||||
|
$account->setAccountType(reset($this->accountTypes));
|
||||||
|
}
|
||||||
|
if ($this->accountDomains) {
|
||||||
|
$account->setAccountDomain(reset($this->accountDomains));
|
||||||
|
}
|
||||||
|
if ($this->accountSecrets) {
|
||||||
|
$account->setAccountSecret(reset($this->accountSecrets));
|
||||||
|
}
|
||||||
|
if ($this->userPHIDs) {
|
||||||
|
$account->setUserPHID(reset($this->userPHIDs));
|
||||||
|
}
|
||||||
|
$account->save();
|
||||||
|
}
|
||||||
|
return $account;
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -48,6 +48,8 @@ final class PhabricatorApplicationLegalpad extends PhabricatorApplication {
|
||||||
'edit/(?P<id>\d+)/' => 'LegalpadDocumentEditController',
|
'edit/(?P<id>\d+)/' => 'LegalpadDocumentEditController',
|
||||||
'comment/(?P<id>\d+)/' => 'LegalpadDocumentCommentController',
|
'comment/(?P<id>\d+)/' => 'LegalpadDocumentCommentController',
|
||||||
'view/(?P<id>\d+)/' => 'LegalpadDocumentViewController',
|
'view/(?P<id>\d+)/' => 'LegalpadDocumentViewController',
|
||||||
|
'verify/(?P<code>[^/]+)/' =>
|
||||||
|
'LegalpadDocumentSignatureVerificationController',
|
||||||
'document/' => array(
|
'document/' => array(
|
||||||
'preview/' => 'PhabricatorMarkupPreviewController'),
|
'preview/' => 'PhabricatorMarkupPreviewController'),
|
||||||
));
|
));
|
||||||
|
|
|
@ -7,6 +7,10 @@ final class LegalpadDocumentSignController extends LegalpadController {
|
||||||
|
|
||||||
private $id;
|
private $id;
|
||||||
|
|
||||||
|
public function shouldRequireLogin() {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
public function willProcessRequest(array $data) {
|
public function willProcessRequest(array $data) {
|
||||||
$this->id = $data['id'];
|
$this->id = $data['id'];
|
||||||
}
|
}
|
||||||
|
@ -25,38 +29,70 @@ final class LegalpadDocumentSignController extends LegalpadController {
|
||||||
return new Aphront404Response();
|
return new Aphront404Response();
|
||||||
}
|
}
|
||||||
|
|
||||||
$signature = id(new LegalpadDocumentSignature())
|
$signer_phid = null;
|
||||||
->loadOneWhere(
|
$signature = null;
|
||||||
'documentPHID = %s AND documentVersion = %d AND signerPHID = %s',
|
$signature_data = array();
|
||||||
$document->getPHID(),
|
if ($user->isLoggedIn()) {
|
||||||
$document->getVersions(),
|
$signer_phid = $user->getPHID();
|
||||||
$user->getPHID());
|
$signature_data = array(
|
||||||
|
'email' => $user->loadPrimaryEmailAddress());
|
||||||
|
} else if ($request->isFormPost()) {
|
||||||
|
$email = new PhutilEmailAddress($request->getStr('email'));
|
||||||
|
$email_obj = id(new PhabricatorUserEmail())
|
||||||
|
->loadOneWhere('address = %s', $email->getAddress());
|
||||||
|
if ($email_obj) {
|
||||||
|
return $this->signInResponse();
|
||||||
|
}
|
||||||
|
$external_account = id(new PhabricatorExternalAccountQuery())
|
||||||
|
->setViewer($user)
|
||||||
|
->withAccountTypes(array('email'))
|
||||||
|
->withAccountDomains(array($email->getDomainName()))
|
||||||
|
->withAccountIDs(array($email->getAddress()))
|
||||||
|
->loadOneOrCreate();
|
||||||
|
if ($external_account->getUserPHID()) {
|
||||||
|
return $this->signInResponse();
|
||||||
|
}
|
||||||
|
$signer_phid = $external_account->getPHID();
|
||||||
|
}
|
||||||
|
|
||||||
|
if ($signer_phid) {
|
||||||
|
$signature = id(new LegalpadDocumentSignature())
|
||||||
|
->loadOneWhere(
|
||||||
|
'documentPHID = %s AND documentVersion = %d AND signerPHID = %s',
|
||||||
|
$document->getPHID(),
|
||||||
|
$document->getVersions(),
|
||||||
|
$signer_phid);
|
||||||
|
}
|
||||||
|
|
||||||
if (!$signature) {
|
if (!$signature) {
|
||||||
$has_signed = false;
|
$has_signed = false;
|
||||||
$error_view = null;
|
$error_view = null;
|
||||||
$signature = id(new LegalpadDocumentSignature())
|
$signature = id(new LegalpadDocumentSignature())
|
||||||
->setSignerPHID($user->getPHID())
|
->setSignerPHID($signer_phid)
|
||||||
->setDocumentPHID($document->getPHID())
|
->setDocumentPHID($document->getPHID())
|
||||||
->setDocumentVersion($document->getVersions());
|
->setDocumentVersion($document->getVersions())
|
||||||
$data = array(
|
->setSignatureData($signature_data);
|
||||||
'name' => $user->getRealName(),
|
|
||||||
'email' => $user->loadPrimaryEmailAddress());
|
|
||||||
$signature->setSignatureData($data);
|
|
||||||
} else {
|
} else {
|
||||||
$has_signed = true;
|
$has_signed = true;
|
||||||
|
if ($signature->isVerified()) {
|
||||||
|
$title = pht('Already Signed');
|
||||||
|
$body = $this->getVerifiedSignatureBlurb();
|
||||||
|
} else {
|
||||||
|
$title = pht('Already Signed but...');
|
||||||
|
$body = $this->getUnverifiedSignatureBlurb();
|
||||||
|
}
|
||||||
$error_view = id(new AphrontErrorView())
|
$error_view = id(new AphrontErrorView())
|
||||||
->setSeverity(AphrontErrorView::SEVERITY_NOTICE)
|
->setSeverity(AphrontErrorView::SEVERITY_NOTICE)
|
||||||
->setTitle(pht('Already Signed'))
|
->setTitle($title)
|
||||||
->appendChild(pht('Thank you for signing and agreeing'));
|
->appendChild($body);
|
||||||
$data = $signature->getSignatureData();
|
$signature_data = $signature->getSignatureData();
|
||||||
}
|
}
|
||||||
|
|
||||||
$e_name = true;
|
$e_name = true;
|
||||||
$e_email = true;
|
$e_email = true;
|
||||||
$e_address_1 = true;
|
$e_address_1 = true;
|
||||||
$errors = array();
|
$errors = array();
|
||||||
if ($request->isFormPost()) {
|
if ($request->isFormPost() && !$has_signed) {
|
||||||
$name = $request->getStr('name');
|
$name = $request->getStr('name');
|
||||||
$email = $request->getStr('email');
|
$email = $request->getStr('email');
|
||||||
$address_1 = $request->getStr('address_1');
|
$address_1 = $request->getStr('address_1');
|
||||||
|
@ -68,8 +104,9 @@ final class LegalpadDocumentSignController extends LegalpadController {
|
||||||
$e_name = pht('Required');
|
$e_name = pht('Required');
|
||||||
$errors[] = pht('Name field is required.');
|
$errors[] = pht('Name field is required.');
|
||||||
}
|
}
|
||||||
$data['name'] = $name;
|
$signature_data['name'] = $name;
|
||||||
|
|
||||||
|
$addr_obj = null;
|
||||||
if (!$email) {
|
if (!$email) {
|
||||||
$e_email = pht('Required');
|
$e_email = pht('Required');
|
||||||
$errors[] = pht('Email field is required.');
|
$errors[] = pht('Email field is required.');
|
||||||
|
@ -81,29 +118,47 @@ final class LegalpadDocumentSignController extends LegalpadController {
|
||||||
$errors[] = pht('A valid email is required.');
|
$errors[] = pht('A valid email is required.');
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
$data['email'] = $email;
|
$signature_data['email'] = $email;
|
||||||
|
|
||||||
if (!$address_1) {
|
if (!$address_1) {
|
||||||
$e_address_1 = pht('Required');
|
$e_address_1 = pht('Required');
|
||||||
$errors[] = pht('Address line 1 field is required.');
|
$errors[] = pht('Address line 1 field is required.');
|
||||||
}
|
}
|
||||||
$data['address_1'] = $address_1;
|
$signature_data['address_1'] = $address_1;
|
||||||
$data['address_2'] = $address_2;
|
$signature_data['address_2'] = $address_2;
|
||||||
$data['phone'] = $phone;
|
$signature_data['phone'] = $phone;
|
||||||
$signature->setSignatureData($data);
|
$signature->setSignatureData($signature_data);
|
||||||
|
|
||||||
if (!$agree) {
|
if (!$agree) {
|
||||||
$errors[] = pht(
|
$errors[] = pht(
|
||||||
'You must check "I agree to the terms laid forth above."');
|
'You must check "I agree to the terms laid forth above."');
|
||||||
}
|
}
|
||||||
|
|
||||||
|
$verified = LegalpadDocumentSignature::UNVERIFIED;
|
||||||
|
if ($user->isLoggedIn() && $addr_obj) {
|
||||||
|
$email_obj = id(new PhabricatorUserEmail())
|
||||||
|
->loadOneWhere('address = %s', $addr_obj->getAddress());
|
||||||
|
if ($email_obj && $email_obj->getUserPHID() == $user->getPHID()) {
|
||||||
|
$verified = LegalpadDocumentSignature::VERIFIED;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
$signature->setVerified($verified);
|
||||||
|
|
||||||
if (!$errors) {
|
if (!$errors) {
|
||||||
$signature->save();
|
$signature->save();
|
||||||
$has_signed = true;
|
$has_signed = true;
|
||||||
|
if ($signature->isVerified()) {
|
||||||
|
$body = $this->getVerifiedSignatureBlurb();
|
||||||
|
} else {
|
||||||
|
$body = $this->getUnverifiedSignatureBlurb();
|
||||||
|
$this->sendVerifySignatureEmail(
|
||||||
|
$document,
|
||||||
|
$signature);
|
||||||
|
}
|
||||||
$error_view = id(new AphrontErrorView())
|
$error_view = id(new AphrontErrorView())
|
||||||
->setSeverity(AphrontErrorView::SEVERITY_NOTICE)
|
->setSeverity(AphrontErrorView::SEVERITY_NOTICE)
|
||||||
->setTitle(pht('Signature successful'))
|
->setTitle(pht('Signature Successful'))
|
||||||
->appendChild(pht('Thank you for signing and agreeing'));
|
->appendChild($body);
|
||||||
} else {
|
} else {
|
||||||
$error_view = id(new AphrontErrorView())
|
$error_view = id(new AphrontErrorView())
|
||||||
->setTitle(pht('Error in submission.'))
|
->setTitle(pht('Error in submission.'))
|
||||||
|
@ -218,10 +273,61 @@ final class LegalpadDocumentSignController extends LegalpadController {
|
||||||
->setValue(pht('Sign and Agree'))
|
->setValue(pht('Sign and Agree'))
|
||||||
->setDisabled($has_signed));
|
->setDisabled($has_signed));
|
||||||
|
|
||||||
return id(new PHUIObjectBoxView())
|
$view = id(new PHUIObjectBoxView())
|
||||||
->setHeaderText(pht('Sign and Agree'))
|
->setHeaderText(pht('Sign and Agree'))
|
||||||
->setErrorView($error_view)
|
|
||||||
->setForm($form);
|
->setForm($form);
|
||||||
|
if ($error_view) {
|
||||||
|
$view->setErrorView($error_view);
|
||||||
|
}
|
||||||
|
return $view;
|
||||||
|
}
|
||||||
|
|
||||||
|
private function getVerifiedSignatureBlurb() {
|
||||||
|
return pht('Thank you for signing and agreeing.');
|
||||||
|
}
|
||||||
|
|
||||||
|
private function getUnverifiedSignatureBlurb() {
|
||||||
|
return pht('Thank you for signing and agreeing. However, you must '.
|
||||||
|
'verify your email address. Please check your email '.
|
||||||
|
'and follow the instructions.');
|
||||||
|
}
|
||||||
|
|
||||||
|
private function sendVerifySignatureEmail(
|
||||||
|
LegalpadDocument $doc,
|
||||||
|
LegalpadDocumentSignature $signature) {
|
||||||
|
|
||||||
|
$signature_data = $signature->getSignatureData();
|
||||||
|
$email = new PhutilEmailAddress($signature_data['email']);
|
||||||
|
$doc_link = PhabricatorEnv::getProductionURI($doc->getMonogram());
|
||||||
|
$path = $this->getApplicationURI(sprintf(
|
||||||
|
'/verify/%s/',
|
||||||
|
$signature->getSecretKey()));
|
||||||
|
$link = PhabricatorEnv::getProductionURI($path);
|
||||||
|
|
||||||
|
$body = <<<EOBODY
|
||||||
|
Hi {$signature_data['name']},
|
||||||
|
|
||||||
|
This email address was used to sign a Legalpad document ({$doc_link}).
|
||||||
|
Please verify you own this email address by clicking this link:
|
||||||
|
|
||||||
|
{$link}
|
||||||
|
|
||||||
|
Your signature is invalid until you verify you own the email.
|
||||||
|
EOBODY;
|
||||||
|
|
||||||
|
id(new PhabricatorMetaMTAMail())
|
||||||
|
->addRawTos(array($email->getAddress()))
|
||||||
|
->setSubject(pht('[Legalpad] Signature Verification'))
|
||||||
|
->setBody($body)
|
||||||
|
->setRelatedPHID($signature->getDocumentPHID())
|
||||||
|
->saveAndSend();
|
||||||
|
}
|
||||||
|
|
||||||
|
private function signInResponse() {
|
||||||
|
return id(new Aphront403Response())
|
||||||
|
->setForbiddenText(pht(
|
||||||
|
'The email address specified is associated with an account. '.
|
||||||
|
'Please login to that account and sign this document again.'));
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -0,0 +1,84 @@
|
||||||
|
<?php
|
||||||
|
|
||||||
|
final class LegalpadDocumentSignatureVerificationController
|
||||||
|
extends LegalpadController {
|
||||||
|
|
||||||
|
private $code;
|
||||||
|
|
||||||
|
public function willProcessRequest(array $data) {
|
||||||
|
$this->code = $data['code'];
|
||||||
|
}
|
||||||
|
|
||||||
|
public function shouldRequireEmailVerification() {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
public function shouldRequireLogin() {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
public function processRequest() {
|
||||||
|
$request = $this->getRequest();
|
||||||
|
$user = $request->getUser();
|
||||||
|
|
||||||
|
$signature = id(new LegalpadDocumentSignature())
|
||||||
|
->loadOneWhere('secretKey = %s', $this->code);
|
||||||
|
|
||||||
|
if (!$signature) {
|
||||||
|
$title = pht('Unable to Verify Signature');
|
||||||
|
$content = pht(
|
||||||
|
'The verification code you provided is incorrect or the signature '.
|
||||||
|
'has been removed. '.
|
||||||
|
'Make sure you followed the link in the email correctly.');
|
||||||
|
$uri = $this->getApplicationURI();
|
||||||
|
$continue = pht('Rats!');
|
||||||
|
} else {
|
||||||
|
$document = id(new LegalpadDocumentQuery())
|
||||||
|
->setViewer($user)
|
||||||
|
->withPHIDs(array($signature->getDocumentPHID()))
|
||||||
|
->executeOne();
|
||||||
|
// the document could be deleted or have its permissions changed
|
||||||
|
// 4oh4 time
|
||||||
|
if (!$document) {
|
||||||
|
return new Aphront404Response();
|
||||||
|
}
|
||||||
|
$uri = '/'.$document->getMonogram();
|
||||||
|
if ($signature->isVerified()) {
|
||||||
|
$title = pht('Signature Already Verified');
|
||||||
|
$content = pht(
|
||||||
|
'This signature has already been verified.');
|
||||||
|
$continue = pht('Continue to Legalpad Document');
|
||||||
|
} else {
|
||||||
|
$guard = AphrontWriteGuard::beginScopedUnguardedWrites();
|
||||||
|
$signature
|
||||||
|
->setVerified(LegalpadDocumentSignature::VERIFIED)
|
||||||
|
->save();
|
||||||
|
unset($guard);
|
||||||
|
$title = pht('Signature Verified');
|
||||||
|
$content = pht('The signature is now verified.');
|
||||||
|
$continue = pht('Continue to Legalpad Document');
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
$dialog = id(new AphrontDialogView())
|
||||||
|
->setUser($user)
|
||||||
|
->setTitle($title)
|
||||||
|
->setMethod('GET')
|
||||||
|
->addCancelButton($uri, $continue)
|
||||||
|
->appendChild($content);
|
||||||
|
|
||||||
|
$crumbs = $this->buildApplicationCrumbs();
|
||||||
|
$crumbs->addTextCrumb(pht('Verify Signature'));
|
||||||
|
|
||||||
|
return $this->buildApplicationPage(
|
||||||
|
array(
|
||||||
|
$crumbs,
|
||||||
|
$dialog,
|
||||||
|
),
|
||||||
|
array(
|
||||||
|
'title' => pht('Verify Signature'),
|
||||||
|
'device' => true,
|
||||||
|
));
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
|
@ -61,6 +61,10 @@ final class LegalpadDocument extends LegalpadDAO
|
||||||
return parent::save();
|
return parent::save();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public function getMonogram() {
|
||||||
|
return 'L'.$this->getID();
|
||||||
|
}
|
||||||
|
|
||||||
/* -( PhabricatorSubscribableInterface Implementation )-------------------- */
|
/* -( PhabricatorSubscribableInterface Implementation )-------------------- */
|
||||||
|
|
||||||
public function isAutomaticallySubscribed($phid) {
|
public function isAutomaticallySubscribed($phid) {
|
||||||
|
|
|
@ -5,10 +5,15 @@
|
||||||
*/
|
*/
|
||||||
final class LegalpadDocumentSignature extends LegalpadDAO {
|
final class LegalpadDocumentSignature extends LegalpadDAO {
|
||||||
|
|
||||||
|
const VERIFIED = 0;
|
||||||
|
const UNVERIFIED = 1;
|
||||||
|
|
||||||
protected $documentPHID;
|
protected $documentPHID;
|
||||||
protected $documentVersion;
|
protected $documentVersion;
|
||||||
protected $signerPHID;
|
protected $signerPHID;
|
||||||
protected $signatureData = array();
|
protected $signatureData = array();
|
||||||
|
protected $verified;
|
||||||
|
protected $secretKey;
|
||||||
|
|
||||||
public function getConfiguration() {
|
public function getConfiguration() {
|
||||||
return array(
|
return array(
|
||||||
|
@ -18,6 +23,15 @@ final class LegalpadDocumentSignature extends LegalpadDAO {
|
||||||
) + parent::getConfiguration();
|
) + parent::getConfiguration();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public function save() {
|
||||||
|
if (!$this->getSecretKey()) {
|
||||||
|
$this->setSecretKey(Filesystem::readRandomCharacters(20));
|
||||||
|
}
|
||||||
|
return parent::save();
|
||||||
|
}
|
||||||
|
|
||||||
|
public function isVerified() {
|
||||||
|
return $this->getVerified() != self::UNVERIFIED;
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -80,20 +80,13 @@ abstract class PhabricatorMailReceiver {
|
||||||
$email_key = 'phabricator.allow-email-users';
|
$email_key = 'phabricator.allow-email-users';
|
||||||
$allow_email_users = PhabricatorEnv::getEnvConfig($email_key);
|
$allow_email_users = PhabricatorEnv::getEnvConfig($email_key);
|
||||||
if ($allow_email_users) {
|
if ($allow_email_users) {
|
||||||
$xuser = id(new PhabricatorExternalAccount())->loadOneWhere(
|
$from_obj = new PhutilEmailAddress($from);
|
||||||
'accountType = %s AND accountDomain = %s and accountID = %s',
|
$xuser = id(new PhabricatorExternalAccountQuery())
|
||||||
'email',
|
->setViewer($user)
|
||||||
'self',
|
->withAccountTypes(array('email'))
|
||||||
$from);
|
->withAccountDomains(array($from_obj->getDomainName(), 'self'))
|
||||||
if (!$xuser) {
|
->withAccountIDs(array($from_obj->getAddress()))
|
||||||
$xuser = id(new PhabricatorExternalAccount())
|
->loadOneOrCreate();
|
||||||
->setAccountID($from)
|
|
||||||
->setAccountType('email')
|
|
||||||
->setAccountDomain('self')
|
|
||||||
->setDisplayName($from)
|
|
||||||
->setEmail($from)
|
|
||||||
->save();
|
|
||||||
}
|
|
||||||
return $xuser->getPhabricatorUser();
|
return $xuser->getPhabricatorUser();
|
||||||
} else {
|
} else {
|
||||||
$reasons[] = pht(
|
$reasons[] = pht(
|
||||||
|
|
Loading…
Reference in a new issue