UPDATE 4.4.0.0
[phpmyadmin.git] / user_password.php
blobc9313fc500842d3ffb98f34b53103bf4b6a9275f
1 <?php
2 /* vim: set expandtab sw=4 ts=4 sts=4: */
3 /**
4 * displays and handles the form where the user can change his password
5 * linked from index.php
7 * @package PhpMyAdmin
8 */
10 /**
11 * Gets some core libraries
13 require_once './libraries/common.inc.php';
15 $response = PMA_Response::getInstance();
16 $header = $response->getHeader();
17 $scripts = $header->getScripts();
18 $scripts->addFile('server_privileges.js');
20 /**
21 * Displays an error message and exits if the user isn't allowed to use this
22 * script
24 if (! $GLOBALS['cfg']['ShowChgPassword']) {
25 $GLOBALS['cfg']['ShowChgPassword'] = $GLOBALS['dbi']->selectDb('mysql');
27 if ($cfg['Server']['auth_type'] == 'config' || ! $cfg['ShowChgPassword']) {
28 PMA_Message::error(
29 __('You don\'t have sufficient privileges to be here right now!')
30 )->display();
31 exit;
32 } // end if
34 /**
35 * If the "change password" form has been submitted, checks for valid values
36 * and submit the query or logout
38 if (isset($_REQUEST['nopass'])) {
39 if ($_REQUEST['nopass'] == '1') {
40 $password = '';
41 } else {
42 $password = $_REQUEST['pma_pw'];
44 $change_password_message = PMA_setChangePasswordMsg();
45 $msg = $change_password_message['msg'];
46 if (! $change_password_message['error']) {
47 PMA_changePassword($password, $msg, $change_password_message);
48 } else {
49 PMA_getChangePassMessage($change_password_message);
53 /**
54 * If the "change password" form hasn't been submitted or the values submitted
55 * aren't valid -> displays the form
58 // Displays an error message if required
59 if (isset($msg)) {
60 $msg->display();
61 unset($msg);
64 require_once './libraries/display_change_password.lib.php';
65 echo PMA_getHtmlForChangePassword($username, $hostname);
66 exit;
68 /**
69 * Send the message as an ajax request
71 * @param array $change_password_message Message to display
72 * @param string $sql_query SQL query executed
74 * @return void
76 function PMA_getChangePassMessage($change_password_message, $sql_query = '')
78 if ($GLOBALS['is_ajax_request'] == true) {
79 /**
80 * If in an Ajax request, we don't need to show the rest of the page
82 $response = PMA_Response::getInstance();
83 if ($change_password_message['error']) {
84 $response->addJSON('message', $change_password_message['msg']);
85 $response->isSuccess(false);
86 } else {
87 $sql_query = PMA_Util::getMessage(
88 $change_password_message['msg'],
89 $sql_query,
90 'success'
92 $response->addJSON('message', $sql_query);
94 exit;
98 /**
99 * Generate the message
101 * @return array error value and message
103 function PMA_setChangePasswordMsg()
105 $error = false;
106 $message = PMA_Message::success(__('The profile has been updated.'));
108 if (($_REQUEST['nopass'] != '1')) {
109 if (empty($_REQUEST['pma_pw']) || empty($_REQUEST['pma_pw2'])) {
110 $message = PMA_Message::error(__('The password is empty!'));
111 $error = true;
112 } elseif ($_REQUEST['pma_pw'] != $_REQUEST['pma_pw2']) {
113 $message = PMA_Message::error(__('The passwords aren\'t the same!'));
114 $error = true;
117 return array('error' => $error, 'msg' => $message);
121 * Change the password
123 * @param string $password New password
124 * @param string $message Message
125 * @param array $change_password_message Message to show
127 * @return void
129 function PMA_changePassword($password, $message, $change_password_message)
131 global $auth_plugin;
133 $hashing_function = PMA_changePassHashingFunction();
134 $sql_query = 'SET password = '
135 . (($password == '') ? '\'\'' : $hashing_function . '(\'***\')');
136 PMA_changePassUrlParamsAndSubmitQuery(
137 $password, $sql_query, $hashing_function
140 $auth_plugin->handlePasswordChange($password);
141 PMA_getChangePassMessage($change_password_message, $sql_query);
142 PMA_changePassDisplayPage($message, $sql_query);
146 * Generate the hashing function
148 * @return string $hashing_function
150 function PMA_changePassHashingFunction()
152 if (PMA_isValid($_REQUEST['pw_hash'], 'identical', 'old')) {
153 $hashing_function = 'OLD_PASSWORD';
154 } else {
155 $hashing_function = 'PASSWORD';
157 return $hashing_function;
161 * Generate the error url and submit the query
163 * @param string $password Password
164 * @param string $sql_query SQL query
165 * @param string $hashing_function Hashing function
167 * @return void
169 function PMA_changePassUrlParamsAndSubmitQuery(
170 $password, $sql_query, $hashing_function
172 $err_url = 'user_password.php' . PMA_URL_getCommon();
173 $local_query = 'SET password = ' . (($password == '')
174 ? '\'\''
175 : $hashing_function . '(\'' . PMA_Util::sqlAddSlashes($password) . '\')');
176 if (! @$GLOBALS['dbi']->tryQuery($local_query)) {
177 PMA_Util::mysqlDie($GLOBALS['dbi']->getError(), $sql_query, false, $err_url);
182 * Display the page
184 * @param string $message Message
185 * @param string $sql_query SQL query
187 * @return void
189 function PMA_changePassDisplayPage($message, $sql_query)
191 echo '<h1>' . __('Change password') . '</h1>' . "\n\n";
192 echo PMA_Util::getMessage(
193 $message, $sql_query, 'success'
195 echo '<a href="index.php' . PMA_URL_getCommon()
196 . ' target="_parent">' . "\n"
197 . '<strong>' . __('Back') . '</strong></a>';
198 exit;