2011-01-31 20:55:26 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Copyright 2011 Facebook, Inc.
|
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
|
|
|
|
class PhabricatorEmailLoginController extends PhabricatorAuthController {
|
|
|
|
|
|
|
|
public function shouldRequireLogin() {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function processRequest() {
|
|
|
|
$request = $this->getRequest();
|
|
|
|
|
2011-02-28 04:47:22 +01:00
|
|
|
if (!PhabricatorEnv::getEnvConfig('auth.password-auth-enabled')) {
|
|
|
|
return new Aphront400Response();
|
|
|
|
}
|
|
|
|
|
2011-01-31 20:55:26 +01:00
|
|
|
$e_email = true;
|
|
|
|
$e_captcha = true;
|
|
|
|
$errors = array();
|
|
|
|
|
|
|
|
if ($request->isFormPost()) {
|
|
|
|
$e_email = null;
|
|
|
|
$e_captcha = 'Again';
|
|
|
|
|
|
|
|
$captcha_ok = AphrontFormRecaptchaControl::processCaptcha($request);
|
|
|
|
if (!$captcha_ok) {
|
|
|
|
$errors[] = "Captcha response is incorrect, try again.";
|
|
|
|
$e_captcha = 'Invalid';
|
|
|
|
}
|
|
|
|
|
|
|
|
$email = $request->getStr('email');
|
|
|
|
if (!strlen($email)) {
|
|
|
|
$errors[] = "You must provide an email address.";
|
|
|
|
$e_email = 'Required';
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!$errors) {
|
|
|
|
// NOTE: Don't validate the email unless the captcha is good; this makes
|
|
|
|
// it expensive to fish for valid email addresses while giving the user
|
|
|
|
// a better error if they goof their email.
|
|
|
|
|
|
|
|
$target_user = id(new PhabricatorUser())->loadOneWhere(
|
|
|
|
'email = %s',
|
|
|
|
$email);
|
|
|
|
|
|
|
|
if (!$target_user) {
|
|
|
|
$errors[] = "There is no account associated with that email address.";
|
|
|
|
$e_email = "Invalid";
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!$errors) {
|
Revise administrative workflow for user creation
Summary:
- When an administrator creates a user, provide an option to send a welcome
email. Right now this workflow kind of dead-ends.
- Prevent administrators from changing the "System Agent" flag. If they can
change it, they can grab another user's certificate and then act as them. This
is a vaguely weaker security policy than is exhibited elsewhere in the
application. Instead, make user accounts immutably normal users or system agents
at creation time.
- Prevent administrators from changing email addresses after account creation.
Same deal as conduit certs. The 'bin/accountadmin' script can still do this if a
user has a real problem.
- Prevent administrators from resetting passwords. There's no need for this
anymore with welcome emails plus email login and it raises the same issues.
Test Plan:
- Created a new account, selected "send welcome email", got a welcome email,
logged in with the link inside it.
- Created a new system agent.
- Reset an account's password.
Reviewed By: aran
Reviewers: tuomaspelkonen, jungejason, aran
CC: anjali, aran, epriestley
Differential Revision: 379
2011-05-30 23:59:17 +02:00
|
|
|
$uri = $target_user->getEmailLoginURI();
|
|
|
|
$body = <<<EOBODY
|
|
|
|
Condolences on forgetting your password. You can use this link to reset it:
|
|
|
|
|
|
|
|
{$uri}
|
|
|
|
|
|
|
|
After you set a new password, consider writing it down on a sticky note and
|
|
|
|
attaching it to your monitor so you don't forget again! Choosing a very short,
|
|
|
|
easy-to-remember password like "cat" or "1234" might also help.
|
|
|
|
|
|
|
|
Best Wishes,
|
|
|
|
Phabricator
|
|
|
|
|
|
|
|
EOBODY;
|
2011-01-31 20:55:26 +01:00
|
|
|
|
|
|
|
$mail = new PhabricatorMetaMTAMail();
|
2011-02-06 23:22:09 +01:00
|
|
|
$mail->setSubject('[Phabricator] Password Reset');
|
|
|
|
$mail->setFrom($target_user->getPHID());
|
2011-01-31 20:55:26 +01:00
|
|
|
$mail->addTos(
|
|
|
|
array(
|
2011-02-06 23:22:09 +01:00
|
|
|
$target_user->getPHID(),
|
2011-01-31 20:55:26 +01:00
|
|
|
));
|
Revise administrative workflow for user creation
Summary:
- When an administrator creates a user, provide an option to send a welcome
email. Right now this workflow kind of dead-ends.
- Prevent administrators from changing the "System Agent" flag. If they can
change it, they can grab another user's certificate and then act as them. This
is a vaguely weaker security policy than is exhibited elsewhere in the
application. Instead, make user accounts immutably normal users or system agents
at creation time.
- Prevent administrators from changing email addresses after account creation.
Same deal as conduit certs. The 'bin/accountadmin' script can still do this if a
user has a real problem.
- Prevent administrators from resetting passwords. There's no need for this
anymore with welcome emails plus email login and it raises the same issues.
Test Plan:
- Created a new account, selected "send welcome email", got a welcome email,
logged in with the link inside it.
- Created a new system agent.
- Reset an account's password.
Reviewed By: aran
Reviewers: tuomaspelkonen, jungejason, aran
CC: anjali, aran, epriestley
Differential Revision: 379
2011-05-30 23:59:17 +02:00
|
|
|
$mail->setBody($body);
|
2011-05-01 07:51:25 +02:00
|
|
|
$mail->saveAndSend();
|
2011-01-31 20:55:26 +01:00
|
|
|
|
|
|
|
$view = new AphrontRequestFailureView();
|
|
|
|
$view->setHeader('Check Your Email');
|
|
|
|
$view->appendChild(
|
|
|
|
'<p>An email has been sent with a link you can use to login.</p>');
|
|
|
|
return $this->buildStandardPageResponse(
|
|
|
|
$view,
|
|
|
|
array(
|
|
|
|
'title' => 'Email Sent',
|
|
|
|
));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
$email_auth = new AphrontFormView();
|
|
|
|
$email_auth
|
|
|
|
->setAction('/login/email/')
|
|
|
|
->setUser($request->getUser())
|
|
|
|
->appendChild(
|
|
|
|
id(new AphrontFormTextControl())
|
|
|
|
->setLabel('Email')
|
|
|
|
->setName('email')
|
|
|
|
->setValue($request->getStr('email'))
|
|
|
|
->setError($e_email))
|
|
|
|
->appendChild(
|
|
|
|
id(new AphrontFormRecaptchaControl())
|
|
|
|
->setLabel('Captcha')
|
|
|
|
->setError($e_captcha))
|
|
|
|
->appendChild(
|
|
|
|
id(new AphrontFormSubmitControl())
|
|
|
|
->setValue('Send Email'));
|
|
|
|
|
|
|
|
$error_view = null;
|
|
|
|
if ($errors) {
|
|
|
|
$error_view = new AphrontErrorView();
|
|
|
|
$error_view->setTitle('Login Error');
|
|
|
|
$error_view->setErrors($errors);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
$panel = new AphrontPanelView();
|
|
|
|
$panel->setWidth(AphrontPanelView::WIDTH_FORM);
|
|
|
|
$panel->appendChild('<h1>Forgot Password / Email Login</h1>');
|
|
|
|
$panel->appendChild($email_auth);
|
|
|
|
|
|
|
|
return $this->buildStandardPageResponse(
|
|
|
|
array(
|
|
|
|
$error_view,
|
|
|
|
$panel,
|
|
|
|
),
|
|
|
|
array(
|
|
|
|
'title' => 'Create New Account',
|
|
|
|
));
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|