2 /* vim: set expandtab sw=4 ts=4 sts=4: */
4 * displays and handles the form where the user can change his password
7 * @uses __('The profile has been updated.')
9 * @uses $GLOBALS['js_include']
10 * @uses __('Change password')
11 * @uses __('The password is empty!')
12 * @uses __('The passwords aren't the same!')
14 * @uses __('You don\'t have sufficient privileges to be here right now!')
15 * @uses $cfg['ShowChgPassword']
16 * @uses $cfg['Server']['auth_type']
17 * @uses PMA_DBI_select_db()
18 * @uses PMA_DBI_try_query()
19 * @uses PMA_DBI_getError()
20 * @uses PMA_sanitize()
21 * @uses PMA_generate_common_url()
23 * @uses PMA_mysqlDie()
24 * @uses $GLOBALS['PMA_Config']->setCookie()
25 * @uses PMA_blowfish_encrypt()
26 * @uses PMA_showMessage()
33 * no need for variables importing
36 if (! defined('PMA_NO_VARIABLES_IMPORT')) {
37 define('PMA_NO_VARIABLES_IMPORT', true);
41 * Gets some core libraries
43 require_once './libraries/common.inc.php';
46 * Displays an error message and exits if the user isn't allowed to use this
49 if (!$cfg['ShowChgPassword']) {
50 $cfg['ShowChgPassword'] = PMA_DBI_select_db('mysql');
52 if ($cfg['Server']['auth_type'] == 'config' ||
!$cfg['ShowChgPassword']) {
53 require_once './libraries/header.inc.php';
54 PMA_Message
::error(__('You don\'t have sufficient privileges to be here right now!'))->display();
55 require_once './libraries/footer.inc.php';
60 * If the "change password" form has been submitted, checks for valid values
61 * and submit the query or logout
63 if (isset($_REQUEST['nopass'])) {
64 // similar logic in server_privileges.php
67 if ($_REQUEST['nopass'] == '1') {
69 } elseif (empty($_REQUEST['pma_pw']) ||
empty($_REQUEST['pma_pw2'])) {
70 $message = PMA_Message
::error(__('The password is empty!'));
72 } elseif ($_REQUEST['pma_pw'] != $_REQUEST['pma_pw2']) {
73 $message = PMA_Message
::error(__('The passwords aren\'t the same!'));
76 $password = $_REQUEST['pma_pw'];
81 // Defines the url to return to in case of error in the sql statement
82 $_url_params = array();
84 $err_url = 'user_password.php' . PMA_generate_common_url($_url_params);
85 if (PMA_isValid($_REQUEST['pw_hash'], 'identical', 'old')) {
86 $hashing_function = 'OLD_PASSWORD';
88 $hashing_function = 'PASSWORD';
91 $sql_query = 'SET password = ' . (($password == '') ?
'\'\'' : $hashing_function . '(\'***\')');
92 $local_query = 'SET password = ' . (($password == '') ?
'\'\'' : $hashing_function . '(\'' . PMA_sqlAddslashes($password) . '\')');
93 $result = @PMA_DBI_try_query
($local_query)
94 or PMA_mysqlDie(PMA_DBI_getError(), $sql_query, false, $err_url);
96 // Changes password cookie if required
97 // Duration = till the browser is closed for password (we don't want this to be saved)
98 if ($cfg['Server']['auth_type'] == 'cookie') {
99 $GLOBALS['PMA_Config']->setCookie('pmaPass-' . $server,
100 PMA_blowfish_encrypt($password, $GLOBALS['cfg']['blowfish_secret']));
103 // For http auth. mode, the "back" link will also enforce new
105 if ($cfg['Server']['auth_type'] == 'http') {
106 $_url_params['old_usr'] = 'relog';
110 require_once './libraries/header.inc.php';
111 echo '<h1>' . __('Change password') . '</h1>' . "\n\n";
112 PMA_showMessage(__('The profile has been updated.'), $sql_query, 'success');
114 <a href
="index.php<?php echo PMA_generate_common_url($_url_params); ?>" target
="_parent">
115 <strong
><?php
echo __('Back'); ?
></strong
></a
>
117 require_once './libraries/footer.inc.php';
123 * If the "change password" form hasn't been submitted or the values submitted
124 * aren't valid -> displays the form
127 $GLOBALS['js_include'][] = 'server_privileges.js';
128 require_once './libraries/header.inc.php';
129 echo '<h1>' . __('Change password') . '</h1>' . "\n\n";
131 // Displays an error message if required
132 if (isset($message)) {
136 require_once './libraries/display_change_password.lib.php';
139 * Displays the footer
141 require_once './libraries/footer.inc.php';