2012-05-07 10:29:33 -07:00
|
|
|
<?php
|
|
|
|
|
|
|
|
final class PhabricatorEmailVerificationController
|
|
|
|
extends PhabricatorPeopleController {
|
|
|
|
|
|
|
|
private $code;
|
|
|
|
|
|
|
|
public function willProcessRequest(array $data) {
|
|
|
|
$this->code = $data['code'];
|
|
|
|
}
|
|
|
|
|
Allow installs to require email verification
Summary:
Allow installs to require users to verify email addresses before they can use Phabricator. If a user logs in without a verified email address, they're given instructions to verify their address.
This isn't too useful on its own since we don't actually have arbitrary email registration, but the next step is to allow installs to restrict email to only some domains (e.g., @mycompany.com).
Test Plan:
- Verification
- Set verification requirement to `true`.
- Tried to use Phabricator with an unverified account, was told to verify.
- Tried to use Conduit, was given a verification error.
- Verified account, used Phabricator.
- Unverified account, reset password, verified implicit verification, used Phabricator.
- People Admin Interface
- Viewed as admin. Clicked "Administrate User".
- Viewed as non-admin
- Sanity Checks
- Used Conduit normally from web/CLI with a verified account.
- Logged in/out.
- Sent password reset email.
- Created a new user.
- Logged in with an unverified user but with the configuration set to off.
Reviewers: btrahan, vrana, jungejason
Reviewed By: btrahan
CC: aran, csilvers
Maniphest Tasks: T1184
Differential Revision: https://secure.phabricator.com/D2520
2012-05-21 12:47:38 -07:00
|
|
|
public function shouldRequireEmailVerification() {
|
|
|
|
// Since users need to be able to hit this endpoint in order to verify
|
|
|
|
// email, we can't ever require email verification here.
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2012-05-07 10:29:33 -07:00
|
|
|
public function processRequest() {
|
|
|
|
$request = $this->getRequest();
|
|
|
|
$user = $request->getUser();
|
|
|
|
|
|
|
|
$email = id(new PhabricatorUserEmail())->loadOneWhere(
|
|
|
|
'userPHID = %s AND verificationCode = %s',
|
|
|
|
$user->getPHID(),
|
|
|
|
$this->code);
|
|
|
|
|
2013-01-17 18:57:09 -08:00
|
|
|
$home_link = phutil_tag(
|
Allow installs to require email verification
Summary:
Allow installs to require users to verify email addresses before they can use Phabricator. If a user logs in without a verified email address, they're given instructions to verify their address.
This isn't too useful on its own since we don't actually have arbitrary email registration, but the next step is to allow installs to restrict email to only some domains (e.g., @mycompany.com).
Test Plan:
- Verification
- Set verification requirement to `true`.
- Tried to use Phabricator with an unverified account, was told to verify.
- Tried to use Conduit, was given a verification error.
- Verified account, used Phabricator.
- Unverified account, reset password, verified implicit verification, used Phabricator.
- People Admin Interface
- Viewed as admin. Clicked "Administrate User".
- Viewed as non-admin
- Sanity Checks
- Used Conduit normally from web/CLI with a verified account.
- Logged in/out.
- Sent password reset email.
- Created a new user.
- Logged in with an unverified user but with the configuration set to off.
Reviewers: btrahan, vrana, jungejason
Reviewed By: btrahan
CC: aran, csilvers
Maniphest Tasks: T1184
Differential Revision: https://secure.phabricator.com/D2520
2012-05-21 12:47:38 -07:00
|
|
|
'a',
|
|
|
|
array(
|
|
|
|
'href' => '/',
|
|
|
|
),
|
|
|
|
'Continue to Phabricator');
|
2013-02-06 16:53:49 -08:00
|
|
|
$home_link = hsprintf(
|
|
|
|
'<br /><p><strong>%s</strong></p>',
|
|
|
|
$home_link);
|
Allow installs to require email verification
Summary:
Allow installs to require users to verify email addresses before they can use Phabricator. If a user logs in without a verified email address, they're given instructions to verify their address.
This isn't too useful on its own since we don't actually have arbitrary email registration, but the next step is to allow installs to restrict email to only some domains (e.g., @mycompany.com).
Test Plan:
- Verification
- Set verification requirement to `true`.
- Tried to use Phabricator with an unverified account, was told to verify.
- Tried to use Conduit, was given a verification error.
- Verified account, used Phabricator.
- Unverified account, reset password, verified implicit verification, used Phabricator.
- People Admin Interface
- Viewed as admin. Clicked "Administrate User".
- Viewed as non-admin
- Sanity Checks
- Used Conduit normally from web/CLI with a verified account.
- Logged in/out.
- Sent password reset email.
- Created a new user.
- Logged in with an unverified user but with the configuration set to off.
Reviewers: btrahan, vrana, jungejason
Reviewed By: btrahan
CC: aran, csilvers
Maniphest Tasks: T1184
Differential Revision: https://secure.phabricator.com/D2520
2012-05-21 12:47:38 -07:00
|
|
|
|
2013-01-17 18:57:09 -08:00
|
|
|
$settings_link = phutil_tag(
|
2012-05-07 10:29:33 -07:00
|
|
|
'a',
|
|
|
|
array(
|
2012-08-13 12:37:26 -07:00
|
|
|
'href' => '/settings/panel/email/',
|
2012-05-07 10:29:33 -07:00
|
|
|
),
|
|
|
|
'Return to Email Settings');
|
2013-02-06 16:53:49 -08:00
|
|
|
$settings_link = hsprintf(
|
|
|
|
'<br /><p><strong>%s</strong></p>',
|
|
|
|
$settings_link);
|
Allow installs to require email verification
Summary:
Allow installs to require users to verify email addresses before they can use Phabricator. If a user logs in without a verified email address, they're given instructions to verify their address.
This isn't too useful on its own since we don't actually have arbitrary email registration, but the next step is to allow installs to restrict email to only some domains (e.g., @mycompany.com).
Test Plan:
- Verification
- Set verification requirement to `true`.
- Tried to use Phabricator with an unverified account, was told to verify.
- Tried to use Conduit, was given a verification error.
- Verified account, used Phabricator.
- Unverified account, reset password, verified implicit verification, used Phabricator.
- People Admin Interface
- Viewed as admin. Clicked "Administrate User".
- Viewed as non-admin
- Sanity Checks
- Used Conduit normally from web/CLI with a verified account.
- Logged in/out.
- Sent password reset email.
- Created a new user.
- Logged in with an unverified user but with the configuration set to off.
Reviewers: btrahan, vrana, jungejason
Reviewed By: btrahan
CC: aran, csilvers
Maniphest Tasks: T1184
Differential Revision: https://secure.phabricator.com/D2520
2012-05-21 12:47:38 -07:00
|
|
|
|
2012-05-07 10:29:33 -07:00
|
|
|
if (!$email) {
|
|
|
|
$content = id(new AphrontErrorView())
|
|
|
|
->setTitle('Unable To Verify')
|
2013-02-06 16:53:49 -08:00
|
|
|
->appendChild(phutil_tag(
|
|
|
|
'p',
|
|
|
|
array(),
|
|
|
|
'The verification code is incorrect, the email address has been '.
|
|
|
|
'removed, or the email address is owned by another user. Make '.
|
|
|
|
'sure you followed the link in the email correctly.'));
|
2012-05-07 10:29:33 -07:00
|
|
|
} else if ($email->getIsVerified()) {
|
|
|
|
$content = id(new AphrontErrorView())
|
|
|
|
->setSeverity(AphrontErrorView::SEVERITY_NOTICE)
|
|
|
|
->setTitle('Address Already Verified')
|
2013-02-06 16:53:49 -08:00
|
|
|
->appendChild(hsprintf(
|
|
|
|
'<p>This email address has already been verified.</p>%s',
|
|
|
|
$settings_link));
|
2012-05-07 10:29:33 -07:00
|
|
|
} else {
|
|
|
|
|
|
|
|
$guard = AphrontWriteGuard::beginScopedUnguardedWrites();
|
|
|
|
$email->setIsVerified(1);
|
|
|
|
$email->save();
|
|
|
|
unset($guard);
|
|
|
|
|
|
|
|
$content = id(new AphrontErrorView())
|
|
|
|
->setSeverity(AphrontErrorView::SEVERITY_NOTICE)
|
|
|
|
->setTitle('Address Verified')
|
2013-02-06 16:53:49 -08:00
|
|
|
->appendChild(hsprintf(
|
|
|
|
'<p>This email address has now been verified. Thanks!</p>%s%s',
|
|
|
|
$home_link,
|
|
|
|
$settings_link));
|
2012-05-07 10:29:33 -07:00
|
|
|
}
|
|
|
|
|
2012-08-13 15:27:21 -07:00
|
|
|
return $this->buildApplicationPage(
|
2012-05-07 10:29:33 -07:00
|
|
|
$content,
|
|
|
|
array(
|
|
|
|
'title' => 'Verify Email',
|
|
|
|
));
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|