You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
115 lines
3.8 KiB
115 lines
3.8 KiB
<?php
|
|
/* For licensing terms, see /license.txt */
|
|
/**
|
|
* SCRIPT PURPOSE :
|
|
*
|
|
* This script allows users to retrieve the password of their profile(s)
|
|
* on the basis of their e-mail address. The password is send via email
|
|
* to the user.
|
|
*
|
|
* Special case : If the password are encrypted in the database, we have
|
|
* to generate a new one.
|
|
*
|
|
* @todo refactor, move relevant functions to code libraries
|
|
*
|
|
* @package chamilo.auth
|
|
*/
|
|
/**
|
|
* Code
|
|
*/
|
|
// name of the language file that needs to be included
|
|
$language_file = array('registration', 'index');
|
|
|
|
require_once '../inc/global.inc.php';
|
|
require_once api_get_path(LIBRARY_PATH).'mail.lib.inc.php';
|
|
|
|
// Custom pages
|
|
// Had to move the form handling in here, because otherwise there would
|
|
// already be some display output.
|
|
global $_configuration;
|
|
|
|
if (CustomPages::enabled()) {
|
|
// Reset Password when user goes to the link
|
|
if (isset($_GET['reset']) && $_GET['reset'] &&
|
|
isset($_GET['id']) && $_GET['id']
|
|
) {
|
|
$mesg = Login::reset_password($_GET["reset"], $_GET["id"], true);
|
|
CustomPages::display(CustomPages::INDEX_UNLOGGED, array('info' => $mesg));
|
|
}
|
|
|
|
// Check email/username and do the right thing
|
|
if (isset($_POST['user'])) {
|
|
$usersRelatedToUsername = Login::get_user_accounts_by_username($_POST['user']);
|
|
|
|
if ($usersRelatedToUsername) {
|
|
$by_username = true;
|
|
foreach ($usersRelatedToUsername as $user) {
|
|
if ($_configuration['password_encryption'] != 'none') {
|
|
Login::handle_encrypted_password($user, $by_username);
|
|
} else {
|
|
Login::send_password_to_user($user, $by_username);
|
|
}
|
|
}
|
|
} else {
|
|
CustomPages::display(
|
|
CustomPages::LOST_PASSWORD,
|
|
array('error' => get_lang('NoUserAccountWithThisEmailAddress'))
|
|
);
|
|
}
|
|
} else {
|
|
CustomPages::display(CustomPages::LOST_PASSWORD);
|
|
}
|
|
|
|
CustomPages::display(
|
|
CustomPages::INDEX_UNLOGGED,
|
|
array('info' => get_lang('YourPasswordHasBeenEmailed'))
|
|
);
|
|
}
|
|
|
|
$tool_name = get_lang('LostPassword');
|
|
Display :: display_header($tool_name);
|
|
|
|
$this_section = SECTION_CAMPUS;
|
|
$tool_name = get_lang('LostPass');
|
|
|
|
// Forbidden to retrieve the lost password
|
|
if (api_get_setting('allow_lostpassword') == 'false') {
|
|
api_not_allowed();
|
|
}
|
|
|
|
if (isset($_GET['reset']) && isset($_GET['id'])) {
|
|
$message = Display::return_message(Login::reset_password($_GET["reset"], $_GET["id"], true), 'normal', false);
|
|
$message .= '<a href="'.api_get_path(WEB_CODE_PATH).'auth/lostPassword.php" class="btn" >'.get_lang('Back').'</a>';
|
|
echo $message;
|
|
} else {
|
|
$form = new FormValidator('lost_password');
|
|
$form->addElement('header', $tool_name);
|
|
$form->addElement('text', 'user', array(get_lang('LoginOrEmailAddress'), get_lang('EnterEmailUserAndWellSendYouPassword')), array('size'=>'40'));
|
|
$form->addElement('style_submit_button', 'submit', get_lang('Send'),'class="btn"');
|
|
|
|
// Setting the rules
|
|
$form->addRule('user', get_lang('ThisFieldIsRequired'), 'required');
|
|
|
|
if ($form->validate()) {
|
|
$values = $form->exportValues();
|
|
$users_related_to_username = Login::get_user_accounts_by_username(
|
|
$values['user']
|
|
);
|
|
|
|
if ($users_related_to_username) {
|
|
$by_username = true;
|
|
foreach ($users_related_to_username as $user) {
|
|
if ($_configuration['password_encryption'] != 'none') {
|
|
Login::handle_encrypted_password($user, $by_username);
|
|
} else {
|
|
Login::send_password_to_user($user, $by_username);
|
|
}
|
|
}
|
|
} else {
|
|
Display::display_warning_message(get_lang('NoUserAccountWithThisEmailAddress'));
|
|
}
|
|
} else {
|
|
$form->display();
|
|
}
|
|
}
|
|
Display::display_footer();
|
|
|