openstackweb/change_password/code/ui/CustomPasswordController.php
2014-10-31 16:59:18 -03:00

82 lines
2.6 KiB
PHP

<?php
/**
* Copyright 2014 Openstack Foundation
* 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 CustomPasswordController
*/
class CustomPasswordController extends Security {
private static $allowed_actions = array(
'changepassword',
'ChangePasswordForm',
);
/**
* @var PasswordManager
*/
private $password_manager;
public function __construct(){
parent::__construct();
$this->password_manager = new PasswordManager;
}
/**
* Factory method for the lost password form
*
* @return Form Returns the lost password form
*/
public function ChangePasswordForm() {
return new CustomChangePasswordForm($this, 'ChangePasswordForm');
}
/**
* @return string
*/
public function changepassword() {
$tmpPage = new Page();
$tmpPage->Title = _t('Security.CHANGEPASSWORDHEADER', 'Change your password');
$tmpPage->URLSegment = 'Security';
$tmpPage->ID = -1; // Set the page ID to -1 so we dont get the top level pages as its children
$controller = new Page_Controller($tmpPage);
$controller->init();
try{
$former_hash = Session::get('AutoLoginHash');
if(!empty($former_hash)){
// Subsequent request after the "first load with hash"
$customisedController = $controller->customise(array(
'Content' =>
'<p>' .
_t('Security.ENTERNEWPASSWORD', 'Please enter a new password.') .
'</p>',
'Form' => $this->ChangePasswordForm(),
));
}
else{
$new_hash = $this->password_manager->verifyToken((int)@$_REQUEST['m'], @$_REQUEST['t']);
Session::set('AutoLoginHash', $new_hash);
return $this->redirect($this->Link('changepassword'));
}
}
catch(InvalidPasswordResetLinkException $ex1){
$customisedController = $controller->customise(
array('Content' =>
sprintf('<p>This link is no longer valid as a newer request for a password reset has been made. Please check your mailbox for the most recent link</p><p>You can request a new one <a href="%s">here',
$this->Link('lostpassword'))
)
);
}
return $customisedController->renderWith(array('Security_changepassword', 'Security', $this->stat('template_main'), 'ContentController'));
}
}