xhtml typo
[phpmyadmin/crack.git] / server_privileges.php3
blob733bc7e4aca0314410ba166d0dd9f5a489f0d6e3
1 <?php
2 /* $Id$ */
3 // vim: expandtab sw=4 ts=4 sts=4:
6 /**
7 * Does the common work
8 */
9 $js_to_run = 'server_privileges.js';
10 require('./server_common.inc.php3');
13 /**
14 * Checks if a dropdown box has been used for selecting a database / table
16 if (!empty($pred_dbname)) {
17 $dbname = $pred_dbname;
18 unset($pred_dbname);
20 if (!empty($pred_tablename)) {
21 $tablename = $pred_tablename;
22 unset($pred_tablename);
26 /**
27 * Checks if the user is allowed to do what he tries to...
29 if (!$is_superuser) {
30 include('./server_links.inc.php3');
31 echo '<h2>' . "\n"
32 . ' ' . $strPrivileges . "\n"
33 . '</h2>' . "\n"
34 . $strNoPrivileges . "\n";
35 include('./footer.inc.php3');
36 exit;
40 /**
41 * Extracts the privilege information of a priv table row
43 * @param array the row
44 * @param boolean add <dfn> tag with tooltips
46 * @global ressource the database connection
48 * @return array
50 function PMA_extractPrivInfo($row = '', $enableHTML = FALSE)
52 global $userlink;
54 $grants = array(
55 array('Select_priv', 'SELECT', $GLOBALS['strPrivDescSelect']),
56 array('Insert_priv', 'INSERT', $GLOBALS['strPrivDescInsert']),
57 array('Update_priv', 'UPDATE', $GLOBALS['strPrivDescUpdate']),
58 array('Delete_priv', 'DELETE', $GLOBALS['strPrivDescDelete']),
59 array('Create_priv', 'CREATE', $GLOBALS['strPrivDescCreateDb']),
60 array('Drop_priv', 'DROP', $GLOBALS['strPrivDescDropDb']),
61 array('Reload_priv', 'RELOAD', $GLOBALS['strPrivDescReload']),
62 array('Shutdown_priv', 'SHUTDOWN', $GLOBALS['strPrivDescShutdown']),
63 array('Process_priv', 'PROCESS', $GLOBALS['strPrivDescProcess' . ((!empty($row) && isset($row['Super_priv'])) || (empty($row) && isset($GLOBALS['Super_priv'])) ? '4' : '3')]),
64 array('File_priv', 'FILE', $GLOBALS['strPrivDescFile']),
65 array('References_priv', 'REFERENCES', $GLOBALS['strPrivDescReferences']),
66 array('Index_priv', 'INDEX', $GLOBALS['strPrivDescIndex']),
67 array('Alter_priv', 'ALTER', $GLOBALS['strPrivDescAlter']),
68 array('Show_db_priv', 'SHOW DATABASES', $GLOBALS['strPrivDescShowDb']),
69 array('Super_priv', 'SUPER', $GLOBALS['strPrivDescSuper']),
70 array('Create_tmp_table_priv', 'CREATE TEMPORARY TABLES', $GLOBALS['strPrivDescCreateTmpTable']),
71 array('Lock_tables_priv', 'LOCK TABLES', $GLOBALS['strPrivDescLockTables']),
72 array('Execute_priv', 'EXECUTE', $GLOBALS['strPrivDescExecute']),
73 array('Repl_slave_priv', 'REPLICATION SLAVE', $GLOBALS['strPrivDescReplSlave']),
74 array('Repl_client_priv', 'REPLICATION CLIENT', $GLOBALS['strPrivDescReplClient'])
76 if (!empty($row) && isset($row['Table_priv'])) {
77 $sql_query = 'SHOW COLUMNS FROM `tables_priv` LIKE "Table_priv";';
78 $res = PMA_mysql_query($sql_query, $userlink) or PMA_mysqlDie(PMA_mysql_error($userlink), $sql_query);
79 unset($sql_query);
80 $row1 = PMA_mysql_fetch_array($res, MYSQL_ASSOC);
81 mysql_free_result($res);
82 $av_grants = explode ('\',\'' , substr($row1['Type'], 5, strlen($row1['Type']) - 7));
83 unset($row1);
84 $users_grants = explode(',', $row['Table_priv']);
85 while (list(, $current_grant) = each($av_grants)) {
86 $row[$current_grant . '_priv'] = in_array($current_grant, $users_grants) ? 'Y' : 'N';
88 unset($current_grant);
89 unset($av_grants);
90 unset($users_grants);
92 $privs = array();
93 $allPrivileges = TRUE;
94 while (list(, $current_grant) = each($grants)) {
95 if ((!empty($row) && isset($row[$current_grant[0]])) || (empty($row) && isset($GLOBALS[$current_grant[0]]))) {
96 if ((!empty($row) && $row[$current_grant[0]] == 'Y') || (empty($row) && ($GLOBALS[$current_grant[0]] == 'Y' || (is_array($GLOBALS[$current_grant[0]]) && count($GLOBALS[$current_grant[0]]) == $GLOBALS['column_count'] && empty($GLOBALS[$current_grant[0] . '_none']))))) {
97 if ($enableHTML) {
98 $privs[] = '<dfn title="' . $current_grant[2] . '">' . str_replace(' ', '&nbsp;', $current_grant[1]) . '</dfn>';
99 } else {
100 $privs[] = $current_grant[1];
102 } else if (!empty($GLOBALS[$current_grant[0]]) && is_array($GLOBALS[$current_grant[0]]) && empty($GLOBALS[$current_grant[0] . '_none'])) {
103 if ($enableHTML) {
104 $priv_string = '<dfn title="' . $current_grant[2] . '">' . str_replace(' ', '&nbsp;', $current_grant[1]) . '</dfn>';
105 } else {
106 $priv_string = $current_grant[1];
108 $privs[] = $priv_string . ' (`' . join('`, `', $GLOBALS[$current_grant[0]]) . '`)';
109 } else {
110 $allPrivileges = FALSE;
114 if (empty($privs)) {
115 if ($enableHTML) {
116 $privs[] = '<dfn title="' . $GLOBALS['strPrivDescUsage'] . '">USAGE</dfn>';
117 } else {
118 $privs[] = 'USAGE';
120 } else if ($allPrivileges && (!isset($GLOBALS['grant_count']) || count($privs) == $GLOBALS['grant_count'])) {
121 if ($enableHTML) {
122 $privs = array('<dfn title="' . $GLOBALS['strPrivDescAllPrivileges'] . '">ALL&nbsp;PRIVILEGES</dfn>');
123 } else {
124 $privs = array('ALL PRIVILEGES');
127 return $privs;
128 } // end of the 'PMA_extractPrivInfo()' function
131 * Displays the privileges form table
133 * @param string the database
134 * @param string the table
135 * @param boolean wheather to display the submit button or not
136 * @param int the indenting level of the code
138 * @global array the phpMyAdmin configuration
139 * @global ressource the database connection
141 * @return void
143 function PMA_displayPrivTable($db = '*', $table = '*', $submit = TRUE, $indent = 0)
145 global $cfg, $userlink;
147 if ($db == '*') {
148 $table = '*';
150 $spaces = '';
151 for ($i = 0; $i < $indent; $i++) {
152 $spaces .= ' ';
154 if (isset($GLOBALS['username'])) {
155 $username = $GLOBALS['username'];
156 if (empty($GLOBALS['hostname'])) {
157 $hostname = '%';
158 } else {
159 $hostname = $GLOBALS['hostname'];
161 if ($db == '*') {
162 $sql_query = 'SELECT * FROM `user` WHERE `User` = "' . $username . '" AND `Host` = "' . $hostname . '";';
163 } else if ($table == '*') {
164 $sql_query = 'SELECT * FROM `db` WHERE `User` = "' . $username . '" AND `Host` = "' . $hostname . '" AND `Db` = "' . $db . '";';
165 } else {
166 $sql_query = 'SELECT `Table_priv` FROM `tables_priv` WHERE `User` = "' . $username . '" AND `Host` = "' . $hostname . '" AND `Db` = "' . $db . '" AND `Table_name` = "' . $table . '";';
168 $res = PMA_mysql_query($sql_query, $userlink) or PMA_mysqlDie(PMA_mysql_error($userlink), $sql_query);
169 if ($res) {
170 $row = PMA_mysql_fetch_array($res, MYSQL_ASSOC);
172 @mysql_free_result($res);
174 if (empty($row)) {
175 if ($table == '*') {
176 if ($db == '*') {
177 $sql_query = 'SHOW COLUMNS FROM `mysql`.`user`;';
178 } else if ($table == '*') {
179 $sql_query = 'SHOW COLUMNS FROM `mysql`.`db`;';
181 $res = PMA_mysql_query($sql_query, $userlink)
182 or PMA_mysqlDie(PMA_mysql_error($userlink), $sql_query);
183 while ($row1 = PMA_mysql_fetch_row($res)) {
184 if (substr($row1[0], 0, 4) == 'max_') {
185 $row[$row1[0]] = 0;
186 } else {
187 $row[$row1[0]] = 'N';
190 mysql_free_result($res);
191 } else {
192 $row = array('Table_priv' => '');
195 if (isset($row['Table_priv'])) {
196 $sql_query = 'SHOW COLUMNS FROM `tables_priv` LIKE "Table_priv";';
197 $res = PMA_mysql_query($sql_query, $userlink) or PMA_mysqlDie(PMA_mysql_error($userlink), $sql_query);
198 unset($sql_query);
199 $row1 = PMA_mysql_fetch_array($res, MYSQL_ASSOC);
200 mysql_free_result($res);
201 $av_grants = explode ('\',\'' , substr($row1['Type'], 5, strlen($row1['Type']) - 7));
202 unset($row1);
203 $users_grants = explode(',', $row['Table_priv']);
204 while (list(, $current_grant) = each($av_grants)) {
205 $row[$current_grant . '_priv'] = in_array($current_grant, $users_grants) ? 'Y' : 'N';
207 unset($row['Table_priv']);
208 unset($current_grant);
209 unset($av_grants);
210 unset($users_grants);
211 if ($res = PMA_mysql_query('SHOW COLUMNS FROM `' . $db . '`.`' . $table . '`;', $userlink)) {
212 $columns = array();
213 while ($row1 = PMA_mysql_fetch_row($res)) {
214 $columns[$row1[0]] = array(
215 'Select' => FALSE,
216 'Insert' => FALSE,
217 'Update' => FALSE,
218 'References' => FALSE
221 mysql_free_result($res);
222 unset($res);
223 unset($row1);
226 if (!empty($columns)) {
227 $sql_query = 'SELECT `Column_name`, `Column_priv` FROM `columns_priv` WHERE `User` = "' . $username . '" AND `Host` = "' . $hostname . '" AND `Db` = "' . $db . '" AND `Table_name` = "' . $table . '";';
228 $res = PMA_mysql_query($sql_query, $userlink) or PMA_mysqlDie(PMA_mysql_error($userlink), $sql_query);
229 while ($row1 = PMA_mysql_fetch_row($res)) {
230 $row1[1] = explode(',', $row1[1]);
231 while (list(, $current) = each($row1[1])) {
232 $columns[$row1[0]][$current] = TRUE;
235 mysql_free_result($res);
236 unset($res);
237 unset($row1);
238 unset($current);
239 echo $spaces . '<input type="hidden" name="grant_count" value="' . count($row) . '" />' . "\n"
240 . $spaces . '<input type="hidden" name="column_count" value="' . count($columns) . '" />' . "\n"
241 . $spaces . '<table border="0">' . "\n"
242 . $spaces . ' <tr>' . "\n"
243 . $spaces . ' <th colspan="6">&nbsp;' . $GLOBALS['strTblPrivileges'] . '&nbsp;</th>' . "\n"
244 . $spaces . ' </tr>' . "\n"
245 . $spaces . ' <tr>' . "\n"
246 . $spaces . ' <td bgcolor="' . $cfg['BgcolorTwo'] . '" colspan="6"><small><i>' . $GLOBALS['strEnglishPrivileges'] . '</i></small></td>' . "\n"
247 . $spaces . ' </tr>' . "\n"
248 . $spaces . ' <tr>' . "\n"
249 . $spaces . ' <td bgcolor="' . $cfg['BgcolorOne'] . '">&nbsp;<tt><dfn title="' . $GLOBALS['strPrivDescSelect'] . '">SELECT</dfn></tt>&nbsp;</td>' . "\n"
250 . $spaces . ' <td bgcolor="' . $cfg['BgcolorOne'] . '">&nbsp;<tt><dfn title="' . $GLOBALS['strPrivDescInsert'] . '">INSERT</dfn></tt>&nbsp;</td>' . "\n"
251 . $spaces . ' <td bgcolor="' . $cfg['BgcolorOne'] . '">&nbsp;<tt><dfn title="' . $GLOBALS['strPrivDescUpdate'] . '">UPDATE</dfn></tt>&nbsp;</td>' . "\n"
252 . $spaces . ' <td bgcolor="' . $cfg['BgcolorOne'] . '">&nbsp;<tt><dfn title="' . $GLOBALS['strPrivDescReferences'] . '">REFERENCES</dfn></tt>&nbsp;</td>' . "\n";
253 list($current_grant, $current_grant_value) = each($row);
254 while (in_array(substr($current_grant, 0, (strlen($current_grant) - 5)), array('Select', 'Insert', 'Update', 'References'))) {
255 list($current_grant, $current_grant_value) = each($row);
257 echo $spaces . ' <td bgcolor="' . $cfg['BgcolorTwo'] . '"><input type="checkbox" name="' . $current_grant . '" id="checkbox_' . $current_grant . '" value="Y" ' . ($current_grant_value == 'Y' ? 'checked="checked" ' : '') . 'title="' . (isset($GLOBALS['strPrivDesc' . substr($current_grant, 0, (strlen($current_grant) - 5))]) ? $GLOBALS['strPrivDesc' . substr($current_grant, 0, (strlen($current_grant) - 5))] : $GLOBALS['strPrivDesc' . substr($current_grant, 0, (strlen($current_grant) - 5)) . 'Tbl']) . '"/></td>' . "\n"
258 . $spaces . ' <td bgcolor="' . $cfg['BgcolorTwo'] . '"><label for="checkbox_' . $current_grant . '"><tt><dfn title="' . (isset($GLOBALS['strPrivDesc' . substr($current_grant, 0, (strlen($current_grant) - 5))]) ? $GLOBALS['strPrivDesc' . substr($current_grant, 0, (strlen($current_grant) - 5))] : $GLOBALS['strPrivDesc' . substr($current_grant, 0, (strlen($current_grant) - 5)) . 'Tbl']) . '">' . strtoupper(substr($current_grant, 0, strlen($current_grant) - 5)) . '</dfn></tt></label></td>' . "\n"
259 . $spaces . ' </tr>' . "\n"
260 . $spaces . ' <tr>' . "\n";
261 $rowspan = count($row) - 5;
262 echo $spaces . ' <td bgcolor="' . $cfg['BgcolorTwo'] . '" rowspan="' . $rowspan . '" valign="top">' . "\n"
263 . $spaces . ' <select name="Select_priv[]" multiple="multiple">' . "\n";
264 while (list($current_column, $current_column_privileges) = each($columns)) {
265 echo $spaces . ' <option value="' . htmlspecialchars($current_column) . '"';
266 if ($row['Select_priv'] == 'Y' || $current_column_privileges['Select']) {
267 echo ' selected="selected"';
269 echo '>' . htmlspecialchars($current_column) . '</option>' . "\n";
271 echo $spaces . ' </select><br />' . "\n"
272 . $spaces . ' <i>' . $GLOBALS['strOr'] . '</i><br />' . "\n"
273 . $spaces . ' <input type="checkbox" name="Select_priv_none" id="checkbox_Select_priv_none" title="' . $GLOBALS['strNone'] . '" />' . "\n"
274 . $spaces . ' <label for="checkbox_Select_priv_none">' . $GLOBALS['strNone'] . '</label>' . "\n"
275 . $spaces . ' </td>' . "\n"
276 . $spaces . ' <td bgcolor="' . $cfg['BgcolorTwo'] . '" rowspan="' . $rowspan . '" valign="top">' . "\n"
277 . $spaces . ' <select name="Insert_priv[]" multiple="multiple">' . "\n";
278 reset($columns);
279 while (list($current_column, $current_column_privileges) = each($columns)) {
280 echo $spaces . ' <option value="' . htmlspecialchars($current_column) . '"';
281 if ($row['Insert_priv'] == 'Y' || $current_column_privileges['Insert']) {
282 echo ' selected="selected"';
284 echo '>' . htmlspecialchars($current_column) . '</option>' . "\n";
286 echo $spaces . ' </select><br />' . "\n"
287 . $spaces . ' <i>' . $GLOBALS['strOr'] . '</i><br />' . "\n"
288 . $spaces . ' <input type="checkbox" name="Insert_priv_none" id="checkbox_Insert_priv_none" title="' . $GLOBALS['strNone'] . '" />' . "\n"
289 . $spaces . ' <label for="checkbox_Insert_priv_none">' . $GLOBALS['strNone'] . '</label>' . "\n"
290 . $spaces . ' </td>' . "\n"
291 . $spaces . ' <td bgcolor="' . $cfg['BgcolorTwo'] . '" rowspan="' . $rowspan . '" valign="top">' . "\n"
292 . $spaces . ' <select name="Update_priv[]" multiple="multiple">' . "\n";
293 reset($columns);
294 while (list($current_column, $current_column_privileges) = each($columns)) {
295 echo $spaces . ' <option value="' . htmlspecialchars($current_column) . '"';
296 if ($row['Update_priv'] == 'Y' || $current_column_privileges['Update']) {
297 echo ' selected="selected"';
299 echo '>' . htmlspecialchars($current_column) . '</option>' . "\n";
301 echo $spaces . ' </select><br />' . "\n"
302 . $spaces . ' <i>' . $GLOBALS['strOr'] . '</i><br />' . "\n"
303 . $spaces . ' <input type="checkbox" name="Update_priv_none" id="checkbox_Update_priv_none" title="' . $GLOBALS['strNone'] . '" />' . "\n"
304 . $spaces . ' <label for="checkbox_Update_priv_none">' . $GLOBALS['strNone'] . '</label>' . "\n"
305 . $spaces . ' </td>' . "\n"
306 . $spaces . ' <td bgcolor="' . $cfg['BgcolorTwo'] . '" rowspan="' . $rowspan . '" valign="top">' . "\n"
307 . $spaces . ' <select name="References_priv[]" multiple="multiple">' . "\n";
308 reset($columns);
309 while (list($current_column, $current_column_privileges) = each($columns)) {
310 echo $spaces . ' <option value="' . htmlspecialchars($current_column) . '"';
311 if ($row['References_priv'] == 'Y' || $current_column_privileges['References']) {
312 echo ' selected="selected"';
314 echo '>' . htmlspecialchars($current_column) . '</option>' . "\n";
316 echo $spaces . ' </select><br />' . "\n"
317 . $spaces . ' <i>' . $GLOBALS['strOr'] . '</i><br />' . "\n"
318 . $spaces . ' <input type="checkbox" name="References_priv_none" id="checkbox_References_priv_none" title="' . $GLOBALS['strNone'] . '" />' . "\n"
319 . $spaces . ' <label for="checkbox_References_priv_none">' . $GLOBALS['strNone'] . '</label>' . "\n"
320 . $spaces . ' </td>' . "\n";
321 unset($rowspan);
322 list($current_grant, $current_grant_value) = each($row);
323 while (in_array(substr($current_grant, 0, (strlen($current_grant) - 5)), array('Select', 'Insert', 'Update', 'References'))) {
324 list($current_grant, $current_grant_value) = each($row);
326 echo $spaces . ' <td bgcolor="' . $cfg['BgcolorTwo'] . '"><input type="checkbox" name="' . $current_grant . '" id="checkbox_' . $current_grant . '" value="Y" ' . ($current_grant_value == 'Y' ? 'checked="checked" ' : '') . 'title="' . (isset($GLOBALS['strPrivDesc' . substr($current_grant, 0, (strlen($current_grant) - 5))]) ? $GLOBALS['strPrivDesc' . substr($current_grant, 0, (strlen($current_grant) - 5))] : $GLOBALS['strPrivDesc' . substr($current_grant, 0, (strlen($current_grant) - 5)) . 'Tbl']) . '"/></td>' . "\n"
327 . $spaces . ' <td bgcolor="' . $cfg['BgcolorTwo'] . '"><label for="checkbox_' . $current_grant . '"><tt><dfn title="' . (isset($GLOBALS['strPrivDesc' . substr($current_grant, 0, (strlen($current_grant) - 5))]) ? $GLOBALS['strPrivDesc' . substr($current_grant, 0, (strlen($current_grant) - 5))] : $GLOBALS['strPrivDesc' . substr($current_grant, 0, (strlen($current_grant) - 5)) . 'Tbl']) . '">' . strtoupper(substr($current_grant, 0, strlen($current_grant) - 5)) . '</dfn></tt></label></td>' . "\n"
328 . $spaces . ' </tr>' . "\n";
329 while (list($current_grant, $current_grant_value) = each($row)) {
330 if (in_array(substr($current_grant, 0, (strlen($current_grant) - 5)), array('Select', 'Insert', 'Update', 'References'))) {
331 continue;
333 echo $spaces . ' <tr>' . "\n"
334 . $spaces . ' <td bgcolor="' . $cfg['BgcolorTwo'] . '"><input type="checkbox" name="' . $current_grant . '" id="checkbox_' . $current_grant . '" value="Y" ' . ($current_grant_value == 'Y' ? 'checked="checked" ' : '') . 'title="' . (isset($GLOBALS['strPrivDesc' . substr($current_grant, 0, (strlen($current_grant) - 5))]) ? $GLOBALS['strPrivDesc' . substr($current_grant, 0, (strlen($current_grant) - 5))] : $GLOBALS['strPrivDesc' . substr($current_grant, 0, (strlen($current_grant) - 5)) . 'Tbl']) . '"/></td>' . "\n"
335 . $spaces . ' <td bgcolor="' . $cfg['BgcolorTwo'] . '"><label for="checkbox_' . $current_grant . '"><tt><dfn title="' . (isset($GLOBALS['strPrivDesc' . substr($current_grant, 0, (strlen($current_grant) - 5))]) ? $GLOBALS['strPrivDesc' . substr($current_grant, 0, (strlen($current_grant) - 5))] : $GLOBALS['strPrivDesc' . substr($current_grant, 0, (strlen($current_grant) - 5)) . 'Tbl']) . '">' . strtoupper(substr($current_grant, 0, strlen($current_grant) - 5)) . '</dfn></tt></label></td>' . "\n"
336 . $spaces . ' </tr>' . "\n";
338 } else {
339 $privTable[0] = array(
340 array('Select', 'SELECT', $GLOBALS['strPrivDescSelect']),
341 array('Insert', 'INSERT', $GLOBALS['strPrivDescInsert']),
342 array('Update', 'UPDATE', $GLOBALS['strPrivDescUpdate']),
343 array('Delete', 'DELETE', $GLOBALS['strPrivDescDelete'])
345 if ($db == '*') {
346 $privTable[0][] = array('File', 'FILE', $GLOBALS['strPrivDescFile']);
348 $privTable[1] = array(
349 array('Create', 'CREATE', ($table == '*' ? $GLOBALS['strPrivDescCreateDb'] : $GLOBALS['strPrivDescCreateTbl'])),
350 array('Alter', 'ALTER', $GLOBALS['strPrivDescAlter']),
351 array('Index', 'INDEX', $GLOBALS['strPrivDescIndex']),
352 array('Drop', 'DROP', ($table == '*' ? $GLOBALS['strPrivDescDropDb'] : $GLOBALS['strPrivDescDropTbl']))
354 if (isset($row['Create_tmp_table_priv'])) {
355 $privTable[1][] = array('Create_tmp_table', 'CREATE&nbsp;TEMPORARAY&nbsp;TABLES', $GLOBALS['strPrivDescCreateTmpTable']);
357 $privTable[2] = array();
358 if (isset($row['Grant_priv'])) {
359 $privTable[2][] = array('Grant', 'GRANT', $GLOBALS['strPrivDescGrant']);
361 if ($db == '*') {
362 if (isset($row['Super_priv'])) {
363 $privTable[2][] = array('Super', 'SUPER', $GLOBALS['strPrivDescSuper']);
364 $privTable[2][] = array('Process', 'PROCESS', $GLOBALS['strPrivDescProcess4']);
365 } else {
366 $privTable[2][] = array('Process', 'PROCESS', $GLOBALS['strPrivDescProcess3']);
368 $privTable[2][] = array('Reload', 'RELOAD', $GLOBALS['strPrivDescReload']);
369 $privTable[2][] = array('Shutdown', 'SHUTDOWN', $GLOBALS['strPrivDescShutdown']);
370 if (isset($row['Show_db_priv'])) {
371 $privTable[2][] = array('Show_db', 'SHOW&nbsp;DATABASES', $GLOBALS['strPrivDescShowDb']);
373 if (isset($row['Lock_tables_priv'])) {
374 $privTable[2][] = array('Lock_tables', 'LOCK&nbsp;TABLES', $GLOBALS['strPrivDescLockTables']);
377 $privTable[2][] = array('References', 'REFERENCES', $GLOBALS['strPrivDescReferences']);
378 if ($db == '*') {
379 if (isset($row['Execute_priv'])) {
380 $privTable[2][] = array('Execute', 'EXECUTE', $GLOBALS['strPrivDescExecute']);
382 if (isset($row['Repl_client_priv'])) {
383 $privTable[2][] = array('Repl_client', 'REPLICATION&nbsp;CLIENT', $GLOBALS['strPrivDescReplClient']);
385 if (isset($row['Repl_slave_priv'])) {
386 $privTable[2][] = array('Repl_slave', 'REPLICATION&nbsp;SLAVE', $GLOBALS['strPrivDescReplSlave']);
389 echo $spaces . '<input type="hidden" name="grant_count" value="' . (count($privTable[0]) + count($privTable[1]) + count($privTable[2]) - (isset($row['Grant_priv']) ? 1 : 0)) . '" />' . "\n"
390 . $spaces . '<table border="0">' . "\n"
391 . $spaces . ' <tr>' . "\n"
392 . $spaces . ' <th colspan="6">&nbsp;' . ($db == '*' ? $GLOBALS['strGlobalPrivileges'] : ($table == '*' ? $GLOBALS['strDbPrivileges'] : $GLOBALS['strTblPrivileges'])) . '&nbsp;</th>' . "\n"
393 . $spaces . ' </tr>' . "\n"
394 . $spaces . ' <tr>' . "\n"
395 . $spaces . ' <td bgcolor="' . $cfg['BgcolorTwo'] . '" colspan="6"><small><i>' . $GLOBALS['strEnglishPrivileges'] . '</i></small></td>' . "\n"
396 . $spaces . ' </tr>' . "\n"
397 . $spaces . ' <tr>' . "\n"
398 . $spaces . ' <td bgcolor="' . $cfg['BgcolorOne'] . '" colspan="2">&nbsp;<b><i>' . $GLOBALS['strData'] . '</i></b>&nbsp;</td>' . "\n"
399 . $spaces . ' <td bgcolor="' . $cfg['BgcolorOne'] . '" colspan="2">&nbsp;<b><i>' . $GLOBALS['strStructure'] . '</i></b>&nbsp;</td>' . "\n"
400 . $spaces . ' <td bgcolor="' . $cfg['BgcolorOne'] . '" colspan="2">&nbsp;<b><i>' . $GLOBALS['strAdministration'] . '</i></b>&nbsp;</td>' . "\n"
401 . $spaces . ' </tr>' . "\n";
402 $limitTable = FALSE;
403 for ($i = 0; isset($privTable[0][$i]) || isset($privTable[1][$i]) || isset($privTable[2][$i]); $i++) {
404 echo $spaces . ' <tr>' . "\n";
405 for ($j = 0; $j < 3; $j++) {
406 if (isset($privTable[$j][$i])) {
407 echo $spaces . ' <td bgcolor="' . $cfg['BgcolorTwo'] . '"><input type="checkbox" name="' . $privTable[$j][$i][0] . '_priv" id="checkbox_' . $privTable[$j][$i][0] . '_priv" value="Y" ' . ($row[$privTable[$j][$i][0] . '_priv'] == 'Y' ? 'checked="checked" ' : '') . 'title="' . $privTable[$j][$i][2] . '"/></td>' . "\n"
408 . $spaces . ' <td bgcolor="' . $cfg['BgcolorTwo'] . '"><label for="checkbox_' . $privTable[$j][$i][0] . '_priv"><tt><dfn title="' . $privTable[$j][$i][2] . '">' . $privTable[$j][$i][1] . '</dfn></tt></label></td>' . "\n";
409 } else if ($db == '*' && !isset($privTable[0][$i]) && !isset($privTable[1][$i])
410 && isset($row['max_questions']) && isset($row['max_updates']) && isset($row['max_connections'])
411 && !$limitTable) {
412 echo $spaces . ' <td colspan="4" rowspan="' . (count($privTable[2]) - $i) . '">' . "\n"
413 . $spaces . ' <table border="0">' . "\n"
414 . $spaces . ' <tr>' . "\n"
415 . $spaces . ' <th colspan="2">&nbsp;' . $GLOBALS['strResourceLimits'] . '&nbsp;</th>' . "\n"
416 . $spaces . ' </tr>' . "\n"
417 . $spaces . ' <tr>' . "\n"
418 . $spaces . ' <td bgcolor="' . $cfg['BgcolorTwo'] . '" colspan="2"><small><i>' . $GLOBALS['strZeroRemovesTheLimit'] . '</i></small></td>' . "\n"
419 . $spaces . ' </tr>' . "\n"
420 . $spaces . ' <tr>' . "\n"
421 . $spaces . ' <td bgcolor="' . $cfg['BgcolorTwo'] . '"><label for="text_max_questions"><tt><dfn title="' . $GLOBALS['strPrivDescMaxQuestions'] . '">MAX&nbsp;QUERIES&nbsp;PER&nbsp;HOUR</dfn></tt></label></td>' . "\n"
422 . $spaces . ' <td bgcolor="' . $cfg['BgcolorTwo'] . '"><input type="text" name="max_questions" id="text_max_questions" value="' . $row['max_questions'] . '" size="11" maxlength="11" title="' . $GLOBALS['strPrivDescMaxQuestions'] . '" /></td>' . "\n"
423 . $spaces . ' </tr>' . "\n"
424 . $spaces . ' <tr>' . "\n"
425 . $spaces . ' <td bgcolor="' . $cfg['BgcolorTwo'] . '"><label for="text_max_updates"><tt><dfn title="' . $GLOBALS['strPrivDescMaxUpdates'] . '">MAX&nbsp;UPDATES&nbsp;PER&nbsp;HOUR</dfn></tt></label></td>' . "\n"
426 . $spaces . ' <td bgcolor="' . $cfg['BgcolorTwo'] . '"><input type="text" name="max_updates" id="text_max_updates" value="' . $row['max_updates'] . '" size="11" maxlength="11" title="' . $GLOBALS['strPrivDescMaxUpdates'] . '" /></td>' . "\n"
427 . $spaces . ' </tr>' . "\n"
428 . $spaces . ' <tr>' . "\n"
429 . $spaces . ' <td bgcolor="' . $cfg['BgcolorTwo'] . '"><label for="text_max_connections"><tt><dfn title="' . $GLOBALS['strPrivDescMaxConnections'] . '">MAX&nbsp;CONNECTIONS&nbsp;PER&nbsp;HOUR</dfn></tt></label></td>' . "\n"
430 . $spaces . ' <td bgcolor="' . $cfg['BgcolorTwo'] . '"><input type="text" name="max_connections" id="text_max_connections" value="' . $row['max_connections'] . '" size="11" maxlength="11" title="' . $GLOBALS['strPrivDescMaxConnections'] . '" /></td>' . "\n"
431 . $spaces . ' </tr>' . "\n"
432 . $spaces . ' </table>' . "\n"
433 . $spaces . ' </td>' . "\n";
434 $limitTable = TRUE;
435 } else if (!$limitTable) {
436 echo $spaces . ' <td bgcolor="' . $cfg['BgcolorTwo'] . '" colspan="2">&nbsp;</td>' . "\n";
440 echo $spaces . ' </tr>' . "\n";
442 if ($submit) {
443 echo $spaces . ' <tr>' . "\n"
444 . $spaces . ' <td colspan="6" align="center">' . "\n"
445 . $spaces . ' <input type="submit" name="update_privs" value="' . $GLOBALS['strGo'] . '" />' . "\n"
446 . $spaces . ' </td>' . "\n"
447 . $spaces . ' </tr>' . "\n";
449 echo $spaces . '</table>' . "\n";
450 } // end of the 'PMA_displayPrivTable()' function
454 * Displays the fields used by the "new user" form as well as the
455 * "change login information / copy user" form.
457 * @param string are we creating a new user or are we just changing one?
458 * (allowed values: 'new', 'change')
459 * @param int the indenting level of the code
461 * @global array the phpMyAdmin configuration
462 * @global ressource the database connection
464 * @return void
466 function PMA_displayLoginInformationFields($mode = 'new', $indent = 0)
468 global $cfg, $userlink;
469 $spaces = '';
470 for ($i = 0; $i < $indent; $i++) {
471 $spaces .= ' ';
473 echo $spaces . '<tr>' . "\n"
474 . $spaces . ' <td bgcolor="' . $cfg['BgcolorTwo'] . '">' . "\n"
475 . $spaces . ' <label for="select_pred_username">' . "\n"
476 . $spaces . ' ' . $GLOBALS['strUserName'] . ':' . "\n"
477 . $spaces . ' </label>' . "\n"
478 . $spaces . ' </td>' . "\n"
479 . $spaces . ' <td bgcolor="' . $cfg['BgcolorTwo'] . '">' . "\n"
480 . $spaces . ' <select name="pred_username" id="select_pred_username" title="' . $GLOBALS['strUserName'] . '"' . "\n"
481 . $spaces . ' onchange="if (this.value == \'any\') { username.value = \'\'; } else if (this.value == \'userdefined\') { username.focus(); username.select(); }">' . "\n"
482 . $spaces . ' <option value="any"' . ((isset($GLOBALS['pred_username']) && $GLOBALS['pred_username'] == 'any') ? ' selected="selected"' : '') . '>' . $GLOBALS['strAnyUser'] . '</option>' . "\n"
483 . $spaces . ' <option value="userdefined"' . ((!isset($GLOBALS['pred_username']) || $GLOBALS['pred_username'] == 'userdefined') ? ' selected="selected"' : '') . '>' . $GLOBALS['strUseTextField'] . ':</option>' . "\n"
484 . $spaces . ' </select>' . "\n"
485 . $spaces . ' </td>' . "\n"
486 . $spaces . ' <td bgcolor="' . $cfg['BgcolorTwo'] . '">' . "\n"
487 . $spaces . ' <input type="text" name="username" class="textfield" title="' . $GLOBALS['strUserName'] . '"' . (empty($GLOBALS['username']) ? '' : ' value="' . (isset($GLOBALS['new_username']) ? $GLOBALS['new_username'] : $GLOBALS['username']) . '"') . ' onchange="pred_username.value = \'userdefined\';" />' . "\n"
488 . $spaces . ' </td>' . "\n"
489 . $spaces . '</tr>' . "\n"
490 . $spaces . '<tr>' . "\n"
491 . $spaces . ' <td bgcolor="' . $cfg['BgcolorTwo'] . '">' . "\n"
492 . $spaces . ' <label for="select_pred_hostname">' . "\n"
493 . $spaces . ' ' . $GLOBALS['strHost'] . ':' . "\n"
494 . $spaces . ' </label>' . "\n"
495 . $spaces . ' </td>' . "\n"
496 . $spaces . ' <td bgcolor="' . $cfg['BgcolorTwo'] . '">' . "\n"
497 . $spaces . ' <select name="pred_hostname" id="select_pred_hostname" title="' . $GLOBALS['strHost'] . '"' . "\n";
498 $res = PMA_mysql_query('SELECT USER();', $userlink);
499 $row = @PMA_mysql_fetch_row($res);
500 @mysql_free_result($res);
501 unset($res);
502 if (!empty($row[0])) {
503 $thishost = str_replace("'", '', substr($row[0], (strrpos($row[0], '@') + 1)));
504 if ($thishost == 'localhost' || $thishost == '127.0.0.1') {
505 unset($thishost);
508 echo $spaces . ' onchange="if (this.value == \'any\') { hostname.value = \'%\'; } else if (this.value == \'localhost\') { hostname.value = \'localhost\'; } '
509 . (empty($thishost) ? '' : 'else if (this.value == \'thishost\') { hostname.value = \'' . addslashes(htmlspecialchars($thishost)) . '\'; } ')
510 . 'else if (this.value == \'userdefined\') { hostname.focus(); hostname.select(); }">' . "\n";
511 unset($row);
512 echo $spaces . ' <option value="any"' . ((isset($GLOBALS['pred_hostname']) && $GLOBALS['pred_hostname'] == 'any') ? ' selected="selected"' : '') . '>' . $GLOBALS['strAnyHost'] . '</option>' . "\n"
513 . $spaces . ' <option value="localhost"' . ((isset($GLOBALS['pred_hostname']) && $GLOBALS['pred_hostname'] == 'localhost') ? ' selected="selected"' : '') . '>' . $GLOBALS['strLocalhost'] . '</option>' . "\n";
514 if (!empty($thishost)) {
515 echo $spaces . ' <option value="thishost"' . ((isset($GLOBALS['pred_hostname']) && $GLOBALS['pred_hostname'] == 'thishost') ? ' selected="selected"' : '') . '>' . $GLOBALS['strThisHost'] . '</option>' . "\n";
517 unset($thishost);
518 echo $spaces . ' <option value="userdefined"' . ((isset($GLOBALS['pred_hostname']) && $GLOBALS['pred_hostname'] == 'userdefined') ? ' selected="selected"' : '') . '>' . $GLOBALS['strUseTextField'] . ':</option>' . "\n"
519 . $spaces . ' </select>' . "\n"
520 . $spaces . ' </td>' . "\n"
521 . $spaces . ' <td bgcolor="' . $cfg['BgcolorTwo'] . '">' . "\n"
522 . $spaces . ' <input type="text" name="hostname" value="' . (empty($GLOBALS['hostname']) ? '%' : $GLOBALS['hostname']) . '" class="textfield" title="' . $GLOBALS['strHost'] . '" onchange="pred_hostname.value = \'userdefined\';" />' . "\n"
523 . $spaces . ' </td>' . "\n"
524 . $spaces . '</tr>' . "\n"
525 . $spaces . '<tr>' . "\n"
526 . $spaces . ' <td bgcolor="' . $cfg['BgcolorTwo'] . '">' . "\n"
527 . $spaces . ' <label for="select_pred_password">' . "\n"
528 . $spaces . ' ' . $GLOBALS['strPassword'] . ':' . "\n"
529 . $spaces . ' </label>' . "\n"
530 . $spaces . ' </td>' . "\n"
531 . $spaces . ' <td bgcolor="' . $cfg['BgcolorTwo'] . '">' . "\n"
532 . $spaces . ' <select name="pred_password" id="select_pred_password" title="' . $GLOBALS['strPassword'] . '"' . "\n"
533 . $spaces . ' onchange="if (this.value == \'none\') { pma_pw.value = \'\'; pma_pw2.value = \'\'; } else if (this.value == \'userdefined\') { pma_pw.focus(); pma_pw.select(); }">' . "\n"
534 . ($mode == 'change' ? $spaces . ' <option value="keep" selected="selected">' . $GLOBALS['strKeepPass'] . '</option>' . "\n" : '')
535 . $spaces . ' <option value="none">' . $GLOBALS['strNoPassword'] . '</option>' . "\n"
536 . $spaces . ' <option value="userdefined"' . ($mode == 'change' ? '' : ' selected="selected"') . '>' . $GLOBALS['strUseTextField'] . ':</option>' . "\n"
537 . $spaces . ' </select>' . "\n"
538 . $spaces . ' </td>' . "\n"
539 . $spaces . ' <td bgcolor="' . $cfg['BgcolorTwo'] . '">' . "\n"
540 . $spaces . ' <input type="password" name="pma_pw" class="textfield" title="' . $GLOBALS['strPassword'] . '" onchange="pred_password.value = \'userdefined\';" />' . "\n"
541 . $spaces . ' </td>' . "\n"
542 . $spaces . '</tr>' . "\n"
543 . $spaces . '<tr>' . "\n"
544 . $spaces . ' <td bgcolor="' . $cfg['BgcolorTwo'] . '">' . "\n"
545 . $spaces . ' <label for="text_pma_pw2">' . "\n"
546 . $spaces . ' ' . $GLOBALS['strReType'] . ':' . "\n"
547 . $spaces . ' </label>' . "\n"
548 . $spaces . ' </td>' . "\n"
549 . $spaces . ' <td bgcolor="' . $cfg['BgcolorTwo'] . '">&nbsp;</td>' . "\n"
550 . $spaces . ' <td bgcolor="' . $cfg['BgcolorTwo'] . '">' . "\n"
551 . $spaces . ' <input type="password" name="pma_pw2" id="text_pma_pw2" class="textfield" title="' . $GLOBALS['strReType'] . '" onchange="pred_password.value = \'userdefined\';" />' . "\n"
552 . $spaces . ' </td>' . "\n"
553 . $spaces . '</tr>' . "\n";
554 } // end of the 'PMA_displayUserAndHostFields()' function
558 * Changes / copies a user, part I
560 if (!empty($change_copy)) {
561 if (empty($old_hostname)) {
562 $old_hostname = '%';
564 $local_query = 'SELECT * FROM `mysql`.`user` WHERE `User` = "' . $old_username . '" AND `Host` = "' . $old_hostname . '";';
565 $res = PMA_mysql_query($local_query, $userlink) or PMA_mysqlDie(PMA_mysql_error($userlink), $local_query);
566 if (!$res) {
567 $message = $strNoUsersFound;
568 unset($change_copy);
569 } else {
570 $row = PMA_mysql_fetch_array($res, MYSQL_ASSOC);
571 extract($row, EXTR_OVERWRITE);
572 mysql_free_result($res);
573 $queries = array();
579 * Adds a user
580 * (Changes / copies a user, part II)
582 if (!empty($adduser_submit) || !empty($change_copy)) {
583 unset($sql_query);
584 if ($pred_username == 'any') {
585 $username = '';
587 switch ($pred_hostname) {
588 case 'any':
589 $hostname = '%';
590 break;
591 case 'localhost':
592 $hostname = 'localhost';
593 break;
594 case 'thishost':
595 $res = PMA_mysql_query('SELECT USER();', $userlink) or PMA_mysqlDie(PMA_mysql_error($userlink), 'SELECT USER();');
596 $row = PMA_mysql_fetch_row($res);
597 mysql_free_result($res);
598 unset($res);
599 $hostname = substr($row[0], (strrpos($row[0], '@') + 1));
600 unset($row);
601 break;
603 $local_query = 'SELECT "foo" FROM `user` WHERE `User` = "' . $username . '" AND `Host` = "' . $hostname . '";';
604 $res = PMA_mysql_query($local_query, $userlink) or PMA_mysqlDie(PMA_mysql_error($userlink), $local_query);
605 unset($local_query);
606 if (mysql_affected_rows($userlink) == 1) {
607 $message = sprintf($strUserAlreadyExists, '<i>\'' . $username . '\'@\'' . $hostname . '\'</i>');
608 $adduser = 1;
609 } else {
610 if (PMA_MYSQL_INT_VERSION >= 32211) {
611 $real_sql_query = 'GRANT ' . join(', ', PMA_extractPrivInfo()) . ' ON *.* TO "' . $username . '"@"' . $hostname . '"';
612 if ($pred_password != 'none' && $pred_password != 'keep') {
613 $pma_pw_hidden = '';
614 for ($i = 0; $i < strlen($pma_pw); $i++) {
615 $pma_pw_hidden .= '*';
617 $sql_query = $real_sql_query . ' IDENTIFIED BY "' . $pma_pw_hidden . '"';
618 $real_sql_query .= ' IDENTIFIED BY "' . $pma_pw . '"';
619 } else {
620 if ($pred_password == 'keep' && !empty($Password)) {
621 $real_sql_query .= ' IDENTIFIED BY PASSWORD "' . $Password . '"';
623 $sql_query = $real_sql_query;
625 if ((isset($Grant_priv) && $Grant_priv == 'Y') || isset($max_questions) || isset($max_connections) || isset($max_updates)) {
626 $real_sql_query .= 'WITH';
627 $sql_query .= 'WITH';
628 if (isset($Grant_priv) && $Grant_priv == 'Y') {
629 $real_sql_query .= ' GRANT OPTION';
630 $sql_query .= ' GRANT OPTION';
632 if (isset($max_questions)) {
633 $real_sql_query .= ' MAX_QUERIES_PER_HOUR ' . (int)$max_questions;
634 $sql_query .= ' MAX_QUERIES_PER_HOUR ' . (int)$max_questions;
636 if (isset($max_connections)) {
637 $real_sql_query .= ' MAX_CONNECTIONS_PER_HOUR ' . (int)$max_connections;
638 $sql_query .= ' MAX_CONNECTIONS_PER_HOUR ' . (int)$max_connections;
640 if (isset($max_updates)) {
641 $real_sql_query .= ' MAX_UPDATES_PER_HOUR ' . (int)$max_updates;
642 $sql_query .= ' MAX_UPDATES_PER_HOUR ' . (int)$max_updates;
645 $real_sql_query .= ';';
646 $sql_query .= ';';
647 if (empty($change_copy)) {
648 PMA_mysql_query($real_sql_query, $userlink) or PMA_mysqlDie(PMA_mysql_error($userlink), $sql_query);
649 $message = $strAddUserMessage;
650 } else {
651 $queries[] = $sql_query;
653 unset($sql_query);
654 unset($real_sql_query);
655 } else {
656 $privileges = PMA_extractPrivInfo();
657 $real_sql_query = 'INSERT INTO `user` SET `Host` = "' . $hostname . '", `User` = "' . $username . '"';
658 if ($pred_password != 'none') {
659 $pma_pw_hidden = '';
660 for ($i = 0; $i < strlen($pma_pw); $i++) {
661 $pma_pw_hidden .= '*';
663 $sql_query = $real_sql_query . ', `Password` = PASSWORD("' . $pma_pw_hidden . '")';
664 $real_sql_query .= ', `Password` = PASSWORD("' . $pma_pw . '")';
665 } else {
666 $sql_query = $real_sql_query;
668 while (list(, $priv) = each($privileges)) {
669 $real_sql_query .= ', `' . substr($priv, 0, 1) . strtolower(substr($priv, 1)) . '_priv` = "Y"';
670 $sql_query .= ', `' . substr($priv, 0, 1) . strtolower(substr($priv, 1)) . '_priv` = "Y"';
672 PMA_mysql_query($real_sql_query, $userlink) or PMA_mysqlDie(PMA_mysql_error($userlink));
673 unset($real_sql_query);
674 $message = $strAddUserMessage . '<br />' . "\n" . $strRememberReload;
676 mysql_free_result($res);
677 unset($res);
683 * Changes / copies a user, part III
685 if (!empty($change_copy)) {
686 $local_query = 'SELECT * FROM `mysql`.`db` WHERE `User` = "' . $old_username . '" AND `Host` = "' . $old_hostname . '";';
687 $res = PMA_mysql_query($local_query, $userlink) or PMA_mysqlDie(PMA_mysql_error($userlink), $local_query);
688 while ($row = PMA_mysql_fetch_array($res, MYSQL_ASSOC)) {
689 $queries[] = 'GRANT ' . join(', ', PMA_extractPrivInfo($row)) . ' ON `' . $row['Db'] . '`.* TO "' . $username . '"@"' . $hostname . '"' . ($row['Grant_priv'] == 'Y' ? ' WITH GRANT OPTION' : '') . ';';
691 mysql_free_result($res);
692 $local_query = 'SELECT `Db`, `Table_name`, `Table_priv` FROM `mysql`.`tables_priv` WHERE `User` = "' . $old_username . '" AND `Host` = "' . $old_hostname . '";';
693 $res = PMA_mysql_query($local_query, $userlink) or PMA_mysqlDie(PMA_mysql_error($userlink), $local_query);
694 while ($row = PMA_mysql_fetch_array($res, MYSQL_ASSOC)) {
695 $local_query = 'SELECT `Column_name`, `Column_priv` FROM `mysql`.`columns_priv` WHERE `User` = "' . $old_username . '" AND `Host` = "' . $old_hostname . '" AND `Db` = "' . $row['Db'] . '";';
696 $res2 = PMA_mysql_query($local_query, $userlink) or PMA_mysqlDie(PMA_mysql_error($userlink), $local_query);
697 $tmp_privs1 = PMA_extractPrivInfo($row);
698 $tmp_privs2 = array(
699 'Select' => array(),
700 'Insert' => array(),
701 'Update' => array(),
702 'References' => array()
704 while ($row2 = PMA_mysql_fetch_array($res2, MYSQL_ASSOC)) {
705 $tmp_array = explode(',', $row2['Column_priv']);
706 if (in_array('Select', $tmp_array)) {
707 $tmp_privs2['Select'][] = $row2['Column_name'];
709 if (in_array('Insert', $tmp_array)) {
710 $tmp_privs2['Insert'][] = $row2['Column_name'];
712 if (in_array('Update', $tmp_array)) {
713 $tmp_privs2['Update'][] = $row2['Column_name'];
715 if (in_array('References', $tmp_array)) {
716 $tmp_privs2['References'][] = $row2['Column_name'];
718 unset($tmp_array);
720 if (count($tmp_privs2['Select']) > 0 && !in_array('SELECT', $tmp_privs1)) {
721 $tmp_privs1[] = 'SELECT (`' . join('`, `', $tmp_privs2['Select']) . '`)';
723 if (count($tmp_privs2['Insert']) > 0 && !in_array('INSERT', $tmp_privs1)) {
724 $tmp_privs1[] = 'INSERT (`' . join(', ', $tmp_privs2['Insert']) . '`)';
726 if (count($tmp_privs2['Update']) > 0 && !in_array('UPDATE', $tmp_privs1)) {
727 $tmp_privs1[] = 'UPDATE (`' . join(', ', $tmp_privs2['Update']) . '`)';
729 if (count($tmp_privs2['References']) > 0 && !in_array('REFERENCES', $tmp_privs1)) {
730 $tmp_privs1[] = 'REFERENCES (`' . join(', ', $tmp_privs2['References']) . '`)';
732 unset($tmp_privs2);
733 $queries[] = 'GRANT ' . join(', ', $tmp_privs1) . ' ON `' . $row['Db'] . '`.`' . $row['Table_name'] . '` TO "' . $username . '"@"' . $hostname . '"' . (in_array('Grant', explode(',', $row['Table_priv'])) ? ' WITH GRANT OPTION' : '') . ';';
739 * Updates privileges
741 if (!empty($update_privs)) {
742 if (empty($hostname)) {
743 $hostname = '%';
745 if (PMA_MYSQL_INT_VERSION >= 32211) {
746 $db_and_table = empty($dbname) ? '*.*' : PMA_backquote($dbname) . '.' . (empty($tablename) ? '*' : PMA_backquote($tablename));
747 $sql_query0 = 'REVOKE ALL PRIVILEGES ON ' . $db_and_table . ' FROM "' . $username . '"@"' . $hostname . '";';
748 $sql_query1 = 'REVOKE GRANT OPTION ON ' . $db_and_table . ' FROM "' . $username . '"@"' . $hostname . '";';
749 $sql_query2 = 'GRANT ' . join(', ', PMA_extractPrivInfo()) . ' ON ' . $db_and_table . ' TO "' . $username . '"@"' . $hostname . '"';
750 if ((isset($Grant_priv) && $Grant_priv == 'Y') || (empty($dbname) && (isset($max_questions) || isset($max_connections) || isset($max_updates)))) {
751 $sql_query2 .= 'WITH';
752 if (isset($Grant_priv) && $Grant_priv == 'Y') {
753 $sql_query2 .= ' GRANT OPTION';
755 if (isset($max_questions)) {
756 $sql_query2 .= ' MAX_QUERIES_PER_HOUR ' . (int)$max_questions;
758 if (isset($max_connections)) {
759 $sql_query2 .= ' MAX_CONNECTIONS_PER_HOUR ' . (int)$max_connections;
761 if (isset($max_updates)) {
762 $sql_query2 .= ' MAX_UPDATES_PER_HOUR ' . (int)$max_updates;
765 $sql_query2 .= ';';
766 PMA_mysql_query($sql_query0, $userlink); // this query may fail, but this does not matter :o)
767 PMA_mysql_query($sql_query1, $userlink); // this one may fail, too...
768 PMA_mysql_query($sql_query2, $userlink) or PMA_mysqlDie(PMA_mysql_error($userlink), $sql_query2);
769 $sql_query = $sql_query0 . ' ' . $sql_query1 . ' ' . $sql_query2;
770 $message = sprintf($strUpdatePrivMessage, '\'' . $username . '\'@\'' . $hostname . '\'');
771 } else {
772 $sql_query = 'SHOW COLUMNS FROM `user`;';
773 $res = PMA_mysql_query($sql_query, $userlink) or PMA_mysqlDie(PMA_mysql_error($userlink));
774 $grants = array();
775 while ($row = PMA_mysql_fetch_row($res)) {
776 if (substr($row[0], -5) == '_priv') {
777 $grants[] = PMA_backquote($row[0]) . ' = "' . (empty($$row[0]) ? 'N' : 'Y') . '"';
780 mysql_free_result($res);
781 unset($res);
782 unset($row);
783 $sql_query = 'UPDATE `user` SET ' . join(', ', $grants) . ' WHERE `User` = "' . $username . '" AND `Host` = "' . $hostname . '";';
784 PMA_mysql_query($sql_query, $userlink) or PMA_mysqlDie(PMA_mysql_error($userlink));
785 $message = sprintf($strUpdatePrivMessage, '\'' . $username . '\'@\'' . $hostname . '\'') . '<br />' . "\n" . $strRememberReload;
791 * Revokes Privileges
793 if (!empty($revokeall)) {
794 if (empty($hostname)) {
795 $hostname = '%';
797 if (PMA_MYSQL_INT_VERSION >= 32211) {
798 $db_and_table = PMA_backquote($dbname) . '.' . (empty($tablename) ? '*' : PMA_backquote($tablename));
799 $sql_query0 = 'REVOKE ALL PRIVILEGES ON ' . $db_and_table . ' FROM "' . $username . '"@"' . $hostname . '";';
800 $sql_query1 = 'REVOKE GRANT OPTION ON ' . $db_and_table . ' FROM "' . $username . '"@"' . $hostname . '";';
801 PMA_mysql_query($sql_query0, $userlink) or PMA_mysqlDie(PMA_mysql_error($userlink), $sql_query0);
802 PMA_mysql_query($sql_query1, $userlink); // this one may fail, too...
803 $sql_query = $sql_query0 . ' ' . $sql_query1;
804 $message = sprintf($strRevokeMessage, '\'' . $username . '\'@\'' . $hostname . '\'');
806 if (empty($tablename)) {
807 unset($dbname);
808 } else {
809 unset($tablename);
815 * Updates the password
817 if (!empty($change_pw)) {
818 if (empty($hostname)) {
819 $hostname = '%';
821 if ($nopass == 1) {
822 $sql_query = 'SET PASSWORD FOR "' . $username . '"@"' . $hostname . '" = ""';
823 PMA_mysql_query($sql_query, $userlink) or PMA_mysqlDie(PMA_mysql_error($userlink));
824 $message = sprintf($strPasswordChanged, '\'' . $username . '\'@\'' . $hostname . '\'');
825 } else if (empty($pma_pw) || empty($pma_pw2)) {
826 $message = $strPasswordEmpty;
827 } else if ($pma_pw != $pma_pw2) {
828 $message = $strPasswordNotSame;
829 } else {
830 $hidden_pw = '';
831 for ($i = 0; $i < strlen($pma_pw); $i++) {
832 $hidden_pw .= '*';
834 $local_query = 'SET PASSWORD FOR "' . $username . '"@"' . $hostname . '" = PASSWORD("' . $pma_pw . '")';
835 $sql_query = 'SET PASSWORD FOR "' . $username . '"@"' . $hostname . '" = PASSWORD("' . $hidden_pw . '")';
836 PMA_mysql_query($local_query, $userlink) or PMA_mysqlDie(PMA_mysql_error($userlink));
837 $message = sprintf($strPasswordChanged, '\'' . $username . '\'@\'' . $hostname . '\'');
843 * Deletes users
844 * (Changes / copies a user, part IV)
846 if (!empty($delete) || (!empty($change_copy) && $mode < 4)) {
847 if (!empty($change_copy)) {
848 $selected_usr = array($old_username . '@' . $old_hostname);
849 } else {
850 $queries = array();
852 for ($i = 0; isset($selected_usr[$i]); $i++) {
853 list($this_user, $this_host) = explode('@', $selected_usr[$i]);
854 $queries[] = '# ' . sprintf($strDeleting, '\'' . $this_user . '\'@\'' . $this_host . '\'') . ' ...';
855 if ($mode == 2) {
856 // The SHOW GRANTS query may fail if the user has not been loaded
857 // into memory
858 $res = PMA_mysql_query('SHOW GRANTS FOR "' . $this_user . '"@"' . $this_host . '";', $userlink);
859 if ($res) {
860 $queries[] = 'REVOKE ALL PRIVILEGES ON *.* FROM "' . $this_user . '"@"' . $this_host . '";';
861 while ($row = PMA_mysql_fetch_row($res)) {
862 $this_table = substr($row[0], (strpos($row[0], 'ON') + 3), (strpos($row[0], ' TO ') - strpos($row[0], 'ON') - 3));
863 if ($this_table != '*.*') {
864 $queries[] = 'REVOKE ALL PRIVILEGES ON ' . $this_table . ' FROM "' . $this_user . '"@"' . $this_host . '";';
865 $queries[] = 'REVOKE GRANT OPTION ON ' . $this_table . ' FROM "' . $this_user . '"@"' . $this_host . '";';
867 unset($this_table);
869 mysql_free_result($res);
871 unset($res);
873 $queries[] = 'DELETE FROM `user` WHERE `User` = "' . $this_user . '" AND `Host` = "' . $this_host . '";';
874 if ($mode != 2) {
875 // If we REVOKE the table grants, we should not need to modify the
876 // `db`, `tables_priv` and `columns_priv` tables manually...
877 $queries[] = 'DELETE FROM `db` WHERE `User` = "' . $this_user . '" AND `Host` = "' . $this_host . '";';
878 $queries[] = 'DELETE FROM `tables_priv` WHERE `User` = "' . $this_user . '" AND `Host` = "' . $this_host . '";';
879 $queries[] = 'DELETE FROM `columns_priv` WHERE `User` = "' . $this_user . '" AND `Host` = "' . $this_host . '";';
881 if (!empty($drop_users_db)) {
882 $queries[] = 'DROP DATABASE IF EXISTS ' . PMA_backquote($this_user) . ';';
885 if (empty($change_copy)) {
886 if (empty($queries)) {
887 $message = $strError . ': ' . $strDeleteNoUsersSelected;
888 } else {
889 if ($mode == 3) {
890 $queries[] = '# ' . $strReloadingThePrivileges . ' ...';
891 $queries[] = 'FLUSH PRIVILEGES;';
893 while (list(, $sql_query) = each($queries)) {
894 if (substr($sql_query, 0, 1) != '#') {
895 PMA_mysql_query($sql_query, $userlink) or PMA_mysqlDie(PMA_mysql_error($userlink));
898 $sql_query = join("\n", $queries);
899 $message = $strUsersDeleted;
901 unset($queries);
907 * Changes / copies a user, part V
909 if (!empty($change_copy)) {
910 while (list(, $sql_query) = each($queries)) {
911 if (substr($sql_query, 0, 1) != '#') {
912 PMA_mysql_query($sql_query, $userlink) or PMA_mysqlDie(PMA_mysql_error($userlink));
915 $message = $strSuccess;
916 $sql_query = join("\n", $queries);
921 * Reloads the privilege tables into memory
923 if (!empty($flush_privileges)) {
924 $sql_query = 'FLUSH PRIVILEGES';
925 if (@PMA_mysql_query($sql_query, $userlink)) {
926 $message = $strPrivilegesReloaded;
927 } else {
928 PMA_mysqlDie(PMA_mysql_error($userlink));
934 * Displays the links
936 require('./server_links.inc.php3');
940 * Displays the page
942 if (empty($adduser) && empty($checkprivs)) {
943 if (!isset($username)) {
944 // No username is given --> display the overview
945 echo '<h2>' . "\n"
946 . ' ' . $strUserOverview . "\n"
947 . '</h2>' . "\n";
948 $oldPrivTables = FALSE;
949 if (PMA_MYSQL_INT_VERSION >= 40002) {
950 $res = PMA_mysql_query('SELECT `User`, `Host`, IF(`Password` = "", "N", "Y") AS "Password", `Select_priv`, `Insert_priv`, `Update_priv`, `Delete_priv`, `Create_priv`, `Drop_priv`, `Reload_priv`, `Shutdown_priv`, `Process_priv`, `File_priv`, `Grant_priv`, `References_priv`, `Index_priv`, `Alter_priv`, `Show_db_priv`, `Super_priv`, `Create_tmp_table_priv`, `Lock_tables_priv`, `Execute_priv`, `Repl_slave_priv`, `Repl_client_priv` FROM `user` ORDER BY `User` ASC, `Host` ASC;', $userlink);
951 if (!$res) {
952 // the query failed! This may have two reasons:
953 // - the user has not enough privileges
954 // - the privilege tables use a structure of an earlier version.
955 $oldPrivTables = TRUE;
958 if (empty($res) || (PMA_MYSQL_INT_VERSION >= 32211 && PMA_MYSQL_INT_VERSION < 40002)) {
959 $res = PMA_mysql_query('SELECT `User`, `Host`, IF(`Password` = "", "N", "Y") AS "Password", `Select_priv`, `Insert_priv`, `Update_priv`, `Delete_priv`, `Index_priv`, `Alter_priv`, `Create_priv`, `Drop_priv`, `Grant_priv`, `References_priv`, `Reload_priv`, `Shutdown_priv`, `Process_priv`, `File_priv` FROM `user` ORDER BY `User` ASC, `Host` ASC;', $userlink);
960 if (!$res) {
961 // the query failed! This may have two reasons:
962 // - the user has not enough privileges
963 // - the privilege tables use a structure of an earlier version.
964 $oldPrivTables = TRUE;
967 if (empty($res) || PMA_MYSQL_INT_VERSION < 32211) {
968 $res = PMA_mysql_query('SELECT * FROM `user` ORDER BY `User` ASC, `Host` ASC;', $userlink);
970 if (!$res) {
971 echo '<i>' . $strNoPrivileges . '</i>' . "\n";
972 @mysql_free_result($res);
973 unset($res);
974 } else {
975 if ($oldPrivTables) {
976 // rabus: This message is hardcoded because I will replace it by
977 // a automatic repair feature soon.
978 echo '<div class="warning">' . "\n"
979 . ' Warning: Your privilege table structure seem to be older than this MySQL version!<br />' . "\n"
980 . ' Please run the script <tt>mysql_fix_privilege_tables</tt> that should be included in your MySQL server distribution to solve this problem!' . "\n"
981 . '</div><br />' . "\n";
983 echo '<form name="usersForm" action="server_privileges.php3" method="post" />' . "\n"
984 . PMA_generate_common_hidden_inputs('', '', 1)
985 . ' <table border="0">' . "\n"
986 . ' <tr>' . "\n"
987 . ' <th></th>' . "\n"
988 . ' <th>&nbsp;' . $strUser . '&nbsp;</th>' . "\n"
989 . ' <th>&nbsp;' . $strHost . '&nbsp;</th>' . "\n"
990 . ' <th>&nbsp;' . $strPassword . '&nbsp;</th>' . "\n"
991 . ' <th>&nbsp;' . $strGlobalPrivileges . '&nbsp;</th>' . "\n"
992 . ' <th>&nbsp;' . $strGrantOption . '&nbsp;</th>' . "\n"
993 . ' <th>&nbsp;' . $strAction . '&nbsp;</th>' . "\n";
994 echo ' </tr>' . "\n";
995 $useBgcolorOne = TRUE;
996 for ($i = 0; $row = PMA_mysql_fetch_array($res, MYSQL_ASSOC); $i++) {
997 echo ' <tr>' . "\n"
998 . ' <td bgcolor="' . ($useBgcolorOne ? $cfg['BgcolorOne'] : $cfg['BgcolorTwo']) . '"><input type="checkbox" name="selected_usr[]" id="checkbox_sel_users_' . $i . '" value="' . htmlspecialchars($row['User'] . '@' . $row['Host']) . '"' . (empty($checkall) ? '' : ' checked="checked"') . ' /></td>' . "\n"
999 . ' <td bgcolor="' . ($useBgcolorOne ? $cfg['BgcolorOne'] : $cfg['BgcolorTwo']) . '"><label for="checkbox_sel_users_' . $i . '">' . (empty($row['User']) ? '<span style="color: #FF0000">' . $strAny . '</span>' : htmlspecialchars($row['User'])) . '</label></td>' . "\n"
1000 . ' <td bgcolor="' . ($useBgcolorOne ? $cfg['BgcolorOne'] : $cfg['BgcolorTwo']) . '">' . htmlspecialchars($row['Host']) . '</td>' . "\n";
1001 $privs = PMA_extractPrivInfo($row, TRUE);
1002 echo ' <td bgcolor="' . ($useBgcolorOne ? $cfg['BgcolorOne'] : $cfg['BgcolorTwo']) . '">' . ($row['Password'] == 'Y' ? $strYes : '<span style="color: #FF0000">' . $strNo . '</span>') . '</td>' . "\n"
1003 . ' <td bgcolor="' . ($useBgcolorOne ? $cfg['BgcolorOne'] : $cfg['BgcolorTwo']) . '"><tt>' . "\n"
1004 . ' ' . join(',' . "\n" . ' ', $privs) . "\n"
1005 . ' </tt></td>' . "\n"
1006 . ' <td bgcolor="' . ($useBgcolorOne ? $cfg['BgcolorOne'] : $cfg['BgcolorTwo']) . '">' . ($row['Grant_priv'] == 'Y' ? $strYes : $strNo) . '</td>' . "\n"
1007 . ' <td bgcolor="' . ($useBgcolorOne ? $cfg['BgcolorOne'] : $cfg['BgcolorTwo']) . '"><a href="server_privileges.php3?' . $url_query . '&amp;username=' . urlencode($row['User']) . ($row['Host'] == '%' ? '' : '&amp;hostname=' . urlencode($row['Host'])) . '">' . $strEdit . '</a></td>' . "\n"
1008 . ' </tr>' . "\n";
1009 $useBgcolorOne = !$useBgcolorOne;
1011 @mysql_free_result($res);
1012 unset($res);
1013 unset ($row);
1014 echo ' <tr>' . "\n"
1015 . ' <td></td>' . "\n"
1016 . ' <td colspan="5">' . "\n"
1017 . ' &nbsp;<i>' . $strEnglishPrivileges . '</i>&nbsp;' . "\n"
1018 . ' </td>' . "\n"
1019 . ' </tr>' . "\n"
1020 . ' <tr>' . "\n"
1021 . ' <td colspan="6" valign="bottom">' . "\n"
1022 . ' <img src="./images/arrow_' . $text_dir . '.gif" border="0" width="38" height="22" alt="' . $strWithChecked . '" />' . "\n"
1023 . ' <a href="./server_privileges.php3?' . $url_query . '&amp;checkall=1" onclick="setCheckboxes(\'usersForm\', \'selected_usr\', true); return false;">' . $strCheckAll . '</a>' . "\n"
1024 . ' &nbsp;/&nbsp;' . "\n"
1025 . ' <a href="server_privileges.php3?' . $url_query . '" onclick="setCheckboxes(\'usersForm\', \'selected_usr\', false); return false;">' . $strUncheckAll . '</a>' . "\n"
1026 . ' </td>' . "\n"
1027 . ' </tr>' . "\n"
1028 . ' </table>' . "\n"
1029 . ' <ul>' . "\n"
1030 . ' <li>' . "\n"
1031 . ' <b><a href="server_privileges.php3?' . $url_query . '&amp;adduser=1">' . $strAddUser . '</a></b><br />' . "\n"
1032 . ' </li><br /><br />' . "\n"
1033 . ' <li>' . "\n"
1034 . ' <b>' . $strRemoveSelectedUsers . '</b><br />' . "\n"
1035 . ' <input type="radio" title="' . $strJustDelete . ' ' . $strJustDeleteDescr . '" name="mode" id="radio_mode_1" value="1" checked="checked" />' . "\n"
1036 . ' <label for="radio_mode_1" title="' . $strJustDelete . ' ' . $strJustDeleteDescr . '">' . "\n"
1037 . ' ' . $strJustDelete . "\n"
1038 . ' </label><br />' . "\n";
1039 if (PMA_MYSQL_INT_VERSION >= 32304) {
1040 echo ' <input type="radio" title="' . $strRevokeAndDelete . ' ' . $strRevokeAndDeleteDescr . '" name="mode" id="radio_mode_2" value="2" />' . "\n"
1041 . ' <label for="radio_mode_2" title="' . $strRevokeAndDelete . ' ' . $strRevokeAndDeleteDescr . '">' . "\n"
1042 . ' ' . $strRevokeAndDelete . "\n"
1043 . ' </label><br />' . "\n";
1045 echo ' <input type="radio" title="' . $strDeleteAndFlush . ' ' . $strDeleteAndFlushDescr . '" name="mode" id="radio_mode_3" value="3" />' . "\n"
1046 . ' <label for="radio_mode_3" title="' . $strDeleteAndFlush . ' ' . $strDeleteAndFlushDescr . '">' . "\n"
1047 . ' ' . $strDeleteAndFlush . "\n"
1048 . ' </label><br />' . "\n"
1049 . ' <input type="checkbox" title="' . $strDropUsersDb . '" name="drop_users_db" id="checkbox_drop_users_db" />' . "\n"
1050 . ' <label for="checkbox_drop_users_db" title="' . $strDropUsersDb . '">' . "\n"
1051 . ' ' . $strDropUsersDb . "\n"
1052 . ' </label><br />' . "\n"
1053 . ' <input type="submit" name="delete" value="' . $strGo . '" />' . "\n"
1054 . ' </li>' . "\n"
1055 . ' </ul>' . "\n"
1056 . '</form>' . "\n"
1057 . '<div>' . "\n"
1058 . ' ' . sprintf($strFlushPrivilegesNote, '<a href="server_privileges.php3?' . $url_query . '&amp;flush_privileges=1">', '</a>') . "\n"
1059 . '</div>' . "\n";
1061 } else {
1062 // A user was selected -> display the user's properties
1063 if (!isset($hostname)) {
1064 $hostname = '%';
1066 echo '<h2>' . "\n"
1067 . ' ' . $strUser . ' <i><a class="h2" href="server_privileges.php3?' . $url_query . '&amp;username=' . urlencode($username) . ($hostname == '%' ? '' : '&amp;hostname=' . urlencode($hostname)) . '">\'' . htmlspecialchars($username) . '\'@\'' . htmlspecialchars($hostname) . '\'</a></i>' . "\n";
1068 if (!empty($dbname)) {
1069 echo ' - ' . $strDatabase . ' <i><a class="h2" href="' . $cfg['DefaultTabDatabase'] . '?' . $url_query . '&amp;db=' . urlencode($dbname) . '&amp;reload=1">' . htmlspecialchars($dbname) . '</a></i>' . "\n";
1070 if (!empty($tablename)) {
1071 echo ' - ' . $strTable . ' <i><a class="h2" href="' . $cfg['DefaultTabTable'] . '?' . $url_query . '&amp;db=' . urlencode($dbname) . '&amp;table=' . urlencode($tablename) . '&amp;reload=1">' . htmlspecialchars($tablename) . '</a></i>' . "\n";
1074 echo '</h2>' . "\n";
1075 $res = PMA_mysql_query('SELECT "foo" FROM `user` WHERE `User` = "' . $username . '" AND `Host` = "' . $hostname . '";', $userlink);
1076 if (mysql_affected_rows($userlink) <= 0) {
1077 echo $strUserNotFound;
1078 include('./footer.inc.php3');
1079 exit;
1081 mysql_free_result($res);
1082 unset($res);
1083 echo '<ul>' . "\n"
1084 . ' <li>' . "\n"
1085 . ' <form action="server_privileges.php3" method="post">' . "\n"
1086 . PMA_generate_common_hidden_inputs('', '', 3)
1087 . ' <input type="hidden" name="username" value="' . htmlspecialchars($username) . '" />' . "\n";
1088 if ($hostname != '%') {
1089 echo ' <input type="hidden" name="hostname" value="' . htmlspecialchars($hostname) . '" />' . "\n";
1091 if (!empty($dbname)) {
1092 echo ' <input type="hidden" name="dbname" value="' . htmlspecialchars($dbname) . '" />' . "\n";
1093 if (!empty($tablename)) {
1094 echo ' <input type="hidden" name="tablename" value="' . htmlspecialchars($tablename) . '" />' . "\n";
1097 echo ' <b>' . $strEditPrivileges . '</b><br />' . "\n";
1098 PMA_displayPrivTable((empty($dbname) ? '*' : $dbname), ((empty($dbname) || empty($tablename)) ? '*' : $tablename), TRUE, 3);
1099 echo ' </form>' . "\n"
1100 . ' </li>' . "\n";
1101 if (empty($tablename)) {
1102 echo ' <li>' . "\n"
1103 . ' <b>' . (empty($dbname) ? $strDbPrivileges : $strTblPrivileges) . '</b><br />' . "\n"
1104 . ' <table border="0">' . "\n"
1105 . ' <tr>' . "\n"
1106 . ' <th>&nbsp;' . (empty($dbname) ? $strDatabase : $strTable) . '&nbsp;</th>' . "\n"
1107 . ' <th>&nbsp;' . $strPrivileges . '&nbsp;</th>' . "\n";
1108 if (PMA_MYSQL_INT_VERSION >= 32211) {
1109 echo ' <th>&nbsp;' . $strGrantOption . '&nbsp;</th>' . "\n";
1111 echo ' <th>&nbsp;' . (empty($dbname) ? $strTblPrivileges : $strColumnPrivileges) . '&nbsp;</th>' . "\n"
1112 . ' <th colspan="2">&nbsp;' . $strAction . '&nbsp;</th>' . "\n"
1113 . ' </tr>' . "\n";
1114 if (empty($dbname)) {
1115 $sql_query = 'SELECT * FROM `db` WHERE `Host` = "' . $hostname . '" AND `User` = "' . $username . '" ORDER BY `Db` ASC;';
1116 } else {
1117 $sql_query = 'SELECT `Table_name`, `Table_priv`, IF(`Column_priv` = "", 0, 1) AS "Column_priv" FROM `tables_priv` WHERE `Host` = "' . $hostname . '" AND `User` = "' . $username . '" AND `Db` = "' . $dbname . '" ORDER BY `Table_name` ASC;';
1119 $res = PMA_mysql_query($sql_query, $userlink) or PMA_mysqlDie(PMA_mysql_error($userlink), $sql_query);
1120 if (mysql_affected_rows($userlink) == 0) {
1121 echo ' <tr>' . "\n"
1122 . ' <td bgcolor="' . $cfg['BgcolorOne'] . '" colspan="' .(PMA_MYSQL_INT_VERSION >= 32211 ? '6' : '5') . '"><center><i>' . $strNone . '</i></center></td>' . "\n"
1123 . ' </tr>' . "\n";
1124 } else {
1125 $useBgcolorOne = TRUE;
1126 if (empty($dbname)) {
1127 $res2 = PMA_mysql_query('SELECT `Db` FROM `tables_priv` WHERE `Host` = "' . $hostname . '" AND `User` = "' . $username . '" GROUP BY `Db` ORDER BY `Db` ASC;') or PMA_mysqlDie(PMA_mysql_error($userlink), 'SELECT `Db` FROM `tables_priv` WHERE `Host` = "' . $hostname . '" AND `User` = "' . $username . '" GROUP BY `Db` ORDER BY `Db` ASC;');
1128 $row2 = PMA_mysql_fetch_array($res2, MYSQL_ASSOC);
1130 $found_rows = array();
1131 while ($row = PMA_mysql_fetch_array($res, MYSQL_ASSOC)) {
1132 while (empty($dbname) && $row2 && $row['Db'] > $row2['Db']) {
1133 $found_rows[] = $row2['Db'];
1134 echo ' <tr>' . "\n"
1135 . ' <td bgcolor="' . ($useBgcolorOne ? $cfg['BgcolorOne'] : $cfg['BgcolorTwo']) . '">' . htmlspecialchars($row2['Db']) . '</td>' . "\n"
1136 . ' <td bgcolor="' . ($useBgcolorOne ? $cfg['BgcolorOne'] : $cfg['BgcolorTwo']) . '"><tt>' . "\n"
1137 . ' <dfn title="' . $strPrivDescUsage . '">USAGE</dfn>' . "\n"
1138 . ' </tt></td>' . "\n";
1139 if (PMA_MYSQL_INT_VERSION >= 32211) {
1140 echo ' <td bgcolor="' . ($useBgcolorOne ? $cfg['BgcolorOne'] : $cfg['BgcolorTwo']) . '">' . $strNo . '</td>' . "\n";
1142 echo ' <td bgcolor="' . ($useBgcolorOne ? $cfg['BgcolorOne'] : $cfg['BgcolorTwo']) . '">' . $strYes . '</td>' . "\n"
1143 . ' <td bgcolor="' . ($useBgcolorOne ? $cfg['BgcolorOne'] : $cfg['BgcolorTwo']) . '"><a href="server_privileges.php3?' . $url_query . '&amp;username=' . urlencode($username) . ($hostname == '%' ? '' : '&amp;hostname=' . urlencode($hostname)) . '&amp;dbname=' . urlencode($row2['Db']) . '">' . $strEdit . '</a></td>' . "\n"
1144 . ' <td bgcolor="' . ($useBgcolorOne ? $cfg['BgcolorOne'] : $cfg['BgcolorTwo']) . '"><a href="server_privileges.php3?' . $url_query . '&amp;username=' . urlencode($username) . ($hostname == '%' ? '' : '&amp;hostname=' . urlencode($hostname)) . '&amp;dbname=' . urlencode($row2['Db']) . '&amp;revokeall=1">' . $strRevoke . '</a></td>' . "\n"
1145 . ' </tr>' . "\n";
1146 $row2 = PMA_mysql_fetch_array($res2, MYSQL_ASSOC);
1147 $useBgcolorOne = !$useBgcolorOne;
1148 } // end while
1149 $found_rows[] = empty($dbname) ? $row['Db'] : $row['Table_name'];
1150 echo ' <tr>' . "\n"
1151 . ' <td bgcolor="' . ($useBgcolorOne ? $cfg['BgcolorOne'] : $cfg['BgcolorTwo']) . '">' . htmlspecialchars(empty($dbname) ? $row['Db'] : $row['Table_name']) . '</td>' . "\n"
1152 . ' <td bgcolor="' . ($useBgcolorOne ? $cfg['BgcolorOne'] : $cfg['BgcolorTwo']) . '"><tt>' . "\n"
1153 . ' ' . join(',' . "\n" . ' ', PMA_extractPrivInfo($row, TRUE)) . "\n"
1154 . ' </tt></td>' . "\n";
1155 if (PMA_MYSQL_INT_VERSION >= 32211) {
1156 echo ' <td bgcolor="' . ($useBgcolorOne ? $cfg['BgcolorOne'] : $cfg['BgcolorTwo']) . '">' . (((empty($dbname) && $row['Grant_priv'] == 'Y') || (!empty($dbname) && in_array('Grant', explode(',', $row['Table_priv'])))) ? $strYes : $strNo) . '</td>' . "\n";
1158 echo ' <td bgcolor="' . ($useBgcolorOne ? $cfg['BgcolorOne'] : $cfg['BgcolorTwo']) . '">';
1159 if ((empty($dbname) && $row2 && $row['Db'] == $row2['Db'])
1160 || (!empty($dbname) && $row['Column_priv'])) {
1161 echo $strYes;
1162 if (empty($dbname)) {
1163 $row2 = PMA_mysql_fetch_array($res2, MYSQL_ASSOC);
1165 } else {
1166 echo $strNo;
1168 echo '</td>' . "\n"
1169 . ' <td bgcolor="' . ($useBgcolorOne ? $cfg['BgcolorOne'] : $cfg['BgcolorTwo']) . '"><a href="server_privileges.php3?' . $url_query . '&amp;username=' . urlencode($username) . ($hostname == '%' ? '' : '&amp;hostname=' . urlencode($hostname)) . '&amp;dbname=' . (empty($dbname) ? urlencode($row['Db']) : urlencode($dbname) . '&amp;tablename=' . urlencode($row['Table_name'])) . '">' . $strEdit . '</a></td>' . "\n"
1170 . ' <td bgcolor="' . ($useBgcolorOne ? $cfg['BgcolorOne'] : $cfg['BgcolorTwo']) . '"><a href="server_privileges.php3?' . $url_query . '&amp;username=' . urlencode($username) . ($hostname == '%' ? '' : '&amp;hostname=' . urlencode($hostname)) . '&amp;dbname=' . (empty($dbname) ? urlencode($row['Db']) : urlencode($dbname) . '&amp;tablename=' . urlencode($row['Table_name'])) . '&amp;revokeall=1">' . $strRevoke . '</a></td>' . "\n"
1171 . ' </tr>' . "\n";
1172 $useBgcolorOne = !$useBgcolorOne;
1173 } // end while
1174 while (empty($dbname) && $row2 = PMA_mysql_fetch_array($res2, MYSQL_ASSOC)) {
1175 $found_rows[] = $row2['Db'];
1176 echo ' <tr>' . "\n"
1177 . ' <td bgcolor="' . ($useBgcolorOne ? $cfg['BgcolorOne'] : $cfg['BgcolorTwo']) . '">' . htmlspecialchars($row2['Db']) . '</td>' . "\n"
1178 . ' <td bgcolor="' . ($useBgcolorOne ? $cfg['BgcolorOne'] : $cfg['BgcolorTwo']) . '"><tt>' . "\n"
1179 . ' <dfn title="' . $strPrivDescUsage . '">USAGE</dfn>' . "\n"
1180 . ' </tt></td>' . "\n";
1181 if (PMA_MYSQL_INT_VERSION >= 32211) {
1182 echo ' <td bgcolor="' . ($useBgcolorOne ? $cfg['BgcolorOne'] : $cfg['BgcolorTwo']) . '">' . $strNo . '</td>' . "\n";
1184 echo ' <td bgcolor="' . ($useBgcolorOne ? $cfg['BgcolorOne'] : $cfg['BgcolorTwo']) . '">' . $strYes . '</td>' . "\n"
1185 . ' <td bgcolor="' . ($useBgcolorOne ? $cfg['BgcolorOne'] : $cfg['BgcolorTwo']) . '"><a href="server_privileges.php3?' . $url_query . '&amp;username=' . urlencode($username) . ($hostname == '%' ? '' : '&amp;hostname=' . urlencode($hostname)) . '&amp;dbname=' . urlencode($row2['Db']) . '">' . $strEdit . '</a></td>' . "\n"
1186 . ' <td bgcolor="' . ($useBgcolorOne ? $cfg['BgcolorOne'] : $cfg['BgcolorTwo']) . '"><a href="server_privileges.php3?' . $url_query . '&amp;username=' . urlencode($username) . ($hostname == '%' ? '' : '&amp;hostname=' . urlencode($hostname)) . '&amp;dbname=' . urlencode($row2['Db']) . '&amp;revokeall=1">' . $strRevoke . '</a></td>' . "\n"
1187 . ' </tr>' . "\n";
1188 $row2 = PMA_mysql_fetch_array($res2, MYSQL_ASSOC);
1189 $useBgcolorOne = !$useBgcolorOne;
1190 } // end while
1191 if (empty($dbname)) {
1192 mysql_free_result($res2);
1193 unset($res2);
1194 unset($row2);
1197 mysql_free_result($res);
1198 unset($res);
1199 unset($row);
1200 echo ' <tr>' . "\n"
1201 . ' <td colspan="' .(PMA_MYSQL_INT_VERSION >= 32211 ? '5' : '4') . '">' . "\n"
1202 . ' <form action="server_privileges.php3" method="post">' . "\n"
1203 . PMA_generate_common_hidden_inputs('', '', 6)
1204 . ' <input type="hidden" name="username" value="' . htmlspecialchars($username) . '" />' . "\n";
1205 if ($hostname != '%') {
1206 echo ' <input type="hidden" name="hostname" value="' . htmlspecialchars($hostname) . '" />' . "\n";
1208 if (empty($dbname)) {
1209 echo ' <label for="text_dbname">' . $strAddPrivilegesOnDb . ':</label>' . "\n";
1210 $res = PMA_mysql_query('SHOW DATABASES;', $userlink) or PMA_mysqlDie(PMA_mysql_error($userlink), 'SHOW DATABASES;');
1211 $pred_db_array = array();
1212 while ($row = PMA_mysql_fetch_row($res)) {
1213 if (!isset($found_rows) || !in_array($row[0], $found_rows)) {
1214 $pred_db_array[] = $row[0];
1217 mysql_free_result($res);
1218 unset($res);
1219 unset($row);
1220 if (!empty($pred_db_array)) {
1221 echo ' <select name="pred_dbname" onchange="this.form.submit();">' . "\n"
1222 . ' <option value="" selected="selected">' . $strUseTextField . ':</option>' . "\n";
1223 while (list(, $current_db) = each($pred_db_array)) {
1224 echo ' <option value="' . htmlspecialchars(PMA_escape_mysql_wildcards($current_db)) . '">' . htmlspecialchars($current_db) . '</option>' . "\n";
1226 echo ' </select>' . "\n";
1228 echo ' <input type="text" id="text_dbname" name="dbname" class="textfield" />' . "\n";
1229 } else {
1230 echo ' <input type="hidden" name="dbname" value="' . htmlspecialchars($dbname) . '"/>' . "\n"
1231 . ' <label for="text_tablename">' . $strAddPrivilegesOnTbl . ':</label>' . "\n";
1232 if ($res = @PMA_mysql_query('SHOW TABLES FROM ' . PMA_backquote($dbname) . ';', $userlink)) {
1233 $pred_tbl_array = array();
1234 while ($row = PMA_mysql_fetch_row($res)) {
1235 if (!isset($found_rows) || !in_array($row[0], $found_rows)) {
1236 $pred_tbl_array[] = $row[0];
1239 mysql_free_result($res);
1240 unset($res);
1241 unset($row);
1242 if (!empty($pred_tbl_array)) {
1243 echo ' <select name="pred_tablename" onchange="this.form.submit();">' . "\n"
1244 . ' <option value="" selected="selected">' . $strUseTextField . ':</option>' . "\n";
1245 while (list(, $current_table) = each($pred_tbl_array)) {
1246 echo ' <option value="' . htmlspecialchars(PMA_escape_mysql_wildcards($current_table)) . '">' . htmlspecialchars($current_table) . '</option>' . "\n";
1248 echo ' </select>' . "\n";
1250 } else {
1251 unset($res);
1253 echo ' <input type="text" id="text_tablename" name="tablename" class="textfield" />' . "\n";
1255 echo ' <input type="submit" value="' . $strGo . '" />' . "\n"
1256 . ' </form>' . "\n"
1257 . ' </td>' . "\n"
1258 . ' </tr>' . "\n"
1259 . ' </table><br />' . "\n"
1260 . ' </li>' . "\n";
1262 if (empty($dbname)) {
1263 echo ' <li>' . "\n"
1264 . ' <form action="server_privileges.php3" method="post" onsubmit="checkPassword(this);">' . "\n"
1265 . PMA_generate_common_hidden_inputs('', '', 3)
1266 . ' <input type="hidden" name="username" value="' . htmlspecialchars($username) . '" />' . "\n";
1267 if ($hostname != '%') {
1268 echo ' <input type="hidden" name="hostname" value="' . htmlspecialchars($hostname) . '" />' . "\n";
1270 echo ' <b>' . $strChangePassword . '</b><br />' . "\n"
1271 . ' <table border="0">' . "\n"
1272 . ' <tr>' . "\n"
1273 . ' <td bgcolor="' . $cfg['BgcolorOne'] . '"><input type="radio" name="nopass" value="1" id="radio_nopass_1" onclick="pma_pw.value=\'\'; pma_pw2.value=\'\';" /></td>' . "\n"
1274 . ' <td bgcolor="' . $cfg['BgcolorOne'] . '" colspan="2"><label for="radio_nopass_1">' . $strNoPassword . '</label></td>' . "\n"
1275 . ' </tr>' . "\n"
1276 . ' <tr>' . "\n"
1277 . ' <td bgcolor="' . $cfg['BgcolorTwo'] . '"><input type="radio" name="nopass" value="0" id="radio_nopass_0" onclick="document.getElementById(\'pw_pma_pw\').focus();" /></td>' . "\n"
1278 . ' <td bgcolor="' . $cfg['BgcolorTwo'] . '"><label for="radio_nopass_0">' . $strPassword . ':</label></td>' . "\n"
1279 . ' <td bgcolor="' . $cfg['BgcolorTwo'] . '"><input type="password" name="pma_pw" id="pw_pma_pw" class="textfield" onchange="nopass[1].checked = true;" /></td>' . "\n"
1280 . ' </tr>' . "\n"
1281 . ' <tr>' . "\n"
1282 . ' <td bgcolor="' . $cfg['BgcolorTwo'] . '">&nbsp;</td>' . "\n"
1283 . ' <td bgcolor="' . $cfg['BgcolorTwo'] . '"><label for="pw_pma_pw2">' . $strReType . ':</label></td>' . "\n"
1284 . ' <td bgcolor="' . $cfg['BgcolorTwo'] . '"><input type="password" name="pma_pw2" id="pw_pma_pw2" class="textfield" onchange="nopass[1].checked = true;" /></td>' . "\n"
1285 . ' </tr>' . "\n"
1286 . ' <tr>' . "\n"
1287 . ' <td colspan="3" align="center">' . "\n"
1288 . ' <input type="submit" name="change_pw" value="' . $strGo . '" />' . "\n"
1289 . ' </td>' . "\n"
1290 . ' </tr>' . "\n"
1291 . ' </table>' . "\n"
1292 . ' </form>' . "\n"
1293 . ' </li>' . "\n";
1294 if (PMA_MYSQL_INT_VERSION >= 32211) {
1295 echo ' <li>' . "\n"
1296 . ' <form action="server_privileges.php3" method="post" onsubmit="checkPassword(this);">' . "\n"
1297 . PMA_generate_common_hidden_inputs('', '', 3)
1298 . ' <input type="hidden" name="old_username" value="' . htmlspecialchars($username) . '" />' . "\n";
1299 if ($hostname != '%') {
1300 echo ' <input type="hidden" name="old_hostname" value="' . htmlspecialchars($hostname) . '" />' . "\n";
1302 echo ' <b>' . $strChangeCopyUser . '</b><br />' . "\n"
1303 . ' <table border="0">' . "\n";
1304 PMA_displayLoginInformationFields('change', 3);
1305 echo ' </table>' . "\n"
1306 . ' ' . $strChangeCopyMode . '<br />' . "\n"
1307 . ' <input type="radio" name="mode" value="4" id="radio_mode_4" checked="checked" />' . "\n"
1308 . ' <label for="radio_mode_4">' . "\n"
1309 . ' ' . $strChangeCopyModeCopy . "\n"
1310 . ' </label>' . "\n"
1311 . ' <br />' . "\n"
1312 . ' <input type="radio" name="mode" value="1" id="radio_mode_1" />' . "\n"
1313 . ' <label for="radio_mode_1">' . "\n"
1314 . ' ' . $strChangeCopyModeJustDelete . "\n"
1315 . ' </label>' . "\n"
1316 . ' <br />' . "\n"
1317 . ' <input type="radio" name="mode" value="2" id="radio_mode_2" />' . "\n"
1318 . ' <label for="radio_mode_2">' . "\n"
1319 . ' ' . $strChangeCopyModeRevoke . "\n"
1320 . ' </label>' . "\n"
1321 . ' <br />' . "\n"
1322 . ' <input type="radio" name="mode" value="3" id="radio_mode_3" />' . "\n"
1323 . ' <label for="radio_mode_3">' . "\n"
1324 . ' ' . $strChangeCopyModeDeleteAndReload . "\n"
1325 . ' </label>' . "\n"
1326 . ' <br />' . "\n"
1327 . ' <input type="submit" name="change_copy" value="' . $strGo . '" />' . "\n"
1328 . ' </form>' . "\n"
1329 . ' </li>' . "\n";
1332 echo '</ul>' . "\n";
1334 } else if (!empty($adduser)) {
1335 // Add a new user
1336 echo '<h2>' . "\n"
1337 . ' ' . $strAddUser . "\n"
1338 . '</h2>' . "\n"
1339 . '<form action="server_privileges.php3" method="post" onsubmit="return checkAddUser(this);">' . "\n"
1340 . PMA_generate_common_hidden_inputs('', '', 1)
1341 . ' <table border="0">' . "\n"
1342 . ' <tr>' . "\n"
1343 . ' <th colspan="3">' . "\n"
1344 . ' ' . $strLoginInformation . "\n"
1345 . ' </th>' . "\n"
1346 . ' </tr>' . "\n";
1347 PMA_displayLoginInformationFields('new', 2);
1348 echo ' </table><br />' . "\n";
1349 PMA_displayPrivTable('*', '*', FALSE, 1);
1350 echo ' <br />' . "\n"
1351 . ' <input type="submit" name="adduser_submit" value="' . $strGo . '" />' . "\n"
1352 . '</form>' . "\n";
1353 } else {
1354 // check the privileges for a particular database.
1355 echo '<h2>' . "\n"
1356 . ' ' . sprintf($strUsersHavingAccessToDb, htmlspecialchars($checkprivs)) . "\n"
1357 . '</h2>' . "\n"
1358 . '<table border="0">' . "\n"
1359 . ' <tr>' . "\n"
1360 . ' <th>' . "\n"
1361 . ' &nbsp;' . $strUser . '&nbsp;' . "\n"
1362 . ' </th>' . "\n"
1363 . ' <th>' . "\n"
1364 . ' &nbsp;' . $strHost . '&nbsp;' . "\n"
1365 . ' </th>' . "\n"
1366 . ' <th>' . "\n"
1367 . ' &nbsp;' . $strType . '&nbsp;' . "\n"
1368 . ' </th>' . "\n"
1369 . ' <th>' . "\n"
1370 . ' &nbsp;' . $strPrivileges . '&nbsp;' . "\n"
1371 . ' </th>' . "\n";
1372 if (PMA_MYSQL_INT_VERSION >= 32211) {
1373 echo ' <th>' . "\n"
1374 . ' &nbsp;' . $strGrantOption . '&nbsp;' . "\n"
1375 . ' </th>' . "\n";
1377 echo ' <th>' . "\n"
1378 . ' &nbsp;' . $strAction . '&nbsp;' . "\n"
1379 . ' </th>' . "\n"
1380 . ' </tr>' . "\n";
1381 $useBgcolorOne = TRUE;
1382 unset($row);
1383 unset($row1);
1384 unset($row2);
1385 // now, we build the table...
1386 if (PMA_MYSQL_INT_VERSION >= 40000) {
1387 // Starting with MySQL 4.0.0, we may use UNION SELECTs and this makes
1388 // the job much easier here!
1389 $sql_query = '(SELECT `User`, `Host`, `Db`, `Select_priv`, `Insert_priv`, `Update_priv`, `Delete_priv`, `Create_priv`, `Drop_priv`, `Grant_priv`, `References_priv` FROM `db` WHERE "' . $checkprivs . '" LIKE `Db` AND NOT (`Select_priv` = "N" AND `Insert_priv` = "N" AND `Update_priv` = "N" AND `Delete_priv` = "N" AND `Create_priv` = "N" AND `Drop_priv` = "N" AND `Grant_priv` = "N" AND `References_priv` = "N")) UNION (SELECT `User`, `Host`, "*" AS "Db", `Select_priv`, `Insert_priv`, `Update_priv`, `Delete_priv`, `Create_priv`, `Drop_priv`, `Grant_priv`, `References_priv` FROM `user` WHERE NOT (`Select_priv` = "N" AND `Insert_priv` = "N" AND `Update_priv` = "N" AND `Delete_priv` = "N" AND `Create_priv` = "N" AND `Drop_priv` = "N" AND `Grant_priv` = "N" AND `References_priv` = "N")) ORDER BY `User` ASC, `Host` ASC, `Db` ASC;';
1390 $res = PMA_mysql_query($sql_query, $userlink) or PMA_mysqlDie(PMA_mysql_error($userlink), $sql_query);
1391 $row = PMA_mysql_fetch_array($res, MYSQL_ASSOC);
1392 if ($row) {
1393 $found = TRUE;
1395 } else {
1396 // With MySQL 3, we need 2 seperate queries here.
1397 $sql_query = 'SELECT * FROM `user` WHERE NOT (`Select_priv` = "N" AND `Insert_priv` = "N" AND `Update_priv` = "N" AND `Delete_priv` = "N" AND `Create_priv` = "N" AND `Drop_priv` = "N" ' . (PMA_MYSQL_INT_VERSION >= 32211 ? 'AND `Grant_priv` = "N" ' : '') . 'AND `References_priv` = "N") ORDER BY `User` ASC, `Host` ASC;';
1398 $res1 = PMA_mysql_query($sql_query, $userlink) or PMA_mysqlDie(PMA_mysql_error($userlink), $sql_query);
1399 $row1 = PMA_mysql_fetch_array($res1, MYSQL_ASSOC);
1400 $sql_query = 'SELECT * FROM `db` WHERE "' . $checkprivs . '" LIKE `Db` AND NOT (`Select_priv` = "N" AND `Insert_priv` = "N" AND `Update_priv` = "N" AND `Delete_priv` = "N" AND `Create_priv` = "N" AND `Drop_priv` = "N" ' . (PMA_MYSQL_INT_VERSION >= 32211 ? 'AND `Grant_priv` = "N" ' : '') . 'AND `References_priv` = "N") ORDER BY `User` ASC, `Host` ASC;';
1401 $res2 = PMA_mysql_query($sql_query, $userlink) or PMA_mysqlDie(PMA_mysql_error($userlink), $sql_query);
1402 $row2 = PMA_mysql_fetch_array($res2, MYSQL_ASSOC);
1403 if ($row1 || $row2) {
1404 $found = TRUE;
1406 } // end if (PMA_MYSQL_INT_VERSION >= 40000) ... else ...
1407 if ($found) {
1408 while (TRUE) {
1409 // prepare the current user
1410 if (PMA_MYSQL_INT_VERSION >= 40000) {
1411 $current_privileges = array();
1412 $current_user = $row['User'];
1413 $current_host = $row['Host'];
1414 while ($row && $current_user == $row['User'] && $current_host == $row['Host']) {
1415 $current_privileges[] = $row;
1416 $row = PMA_mysql_fetch_array($res, MYSQL_ASSOC);
1418 } else {
1419 $current_privileges = array();
1420 if ($row1 && (!$row2 || ($row1['User'] < $row2['User'] || ($row1['User'] == $row2['User'] && $row1['Host'] <= $row2['Host'])))) {
1421 $current_user = $row1['User'];
1422 $current_host = $row1['Host'];
1423 $current_privileges = array($row1);
1424 $row1 = PMA_mysql_fetch_array($res1, MYSQL_ASSOC);
1425 } else {
1426 $current_user = $row2['User'];
1427 $current_host = $row2['Host'];
1428 $current_privileges = array();
1430 while ($row2 && $current_user == $row2['User'] && $current_host == $row2['Host']) {
1431 $current_privileges[] = $row2;
1432 $row2 = PMA_mysql_fetch_array($res2, MYSQL_ASSOC);
1435 echo ' <tr>' . "\n"
1436 . ' <td';
1437 if (count($current_privileges) > 1) {
1438 echo ' rowspan="' . count($current_privileges) . '"';
1440 echo ' bgcolor="' . ($useBgcolorOne ? $cfg['BgcolorOne'] : $cfg['BgcolorTwo']) . '">' . "\n"
1441 . ' ' . (empty($current_user) ? '<span style="color: #FF0000">' . $strAny . '</span>' : htmlspecialchars($current_user)) . "\n"
1442 . ' </td>' . "\n"
1443 . ' <td';
1444 if (count($current_privileges) > 1) {
1445 echo ' rowspan="' . count($current_privileges) . '"';
1447 echo ' bgcolor="' . ($useBgcolorOne ? $cfg['BgcolorOne'] : $cfg['BgcolorTwo']) . '">' . "\n"
1448 . ' ' . htmlspecialchars($current_host) . "\n"
1449 . ' </td>' . "\n";
1450 while (list(, $current) = each($current_privileges)) {
1451 echo ' <td bgcolor="' . ($useBgcolorOne ? $cfg['BgcolorOne'] : $cfg['BgcolorTwo']) . '">' . "\n"
1452 . ' ';
1453 if (!isset($current['Db']) || $current['Db'] == '*') {
1454 echo $strGlobal;
1455 } else if ($current['Db'] == $checkprivs) {
1456 echo $strDbSpecific;
1457 } else {
1458 echo $strWildcard, ': <tt>' . htmlspecialchars($current['Db']) . '</tt>';
1460 echo "\n"
1461 . ' </td>' . "\n"
1462 . ' <td bgcolor="' . ($useBgcolorOne ? $cfg['BgcolorOne'] : $cfg['BgcolorTwo']) . '">' . "\n"
1463 . ' <tt>' . "\n"
1464 . ' ' . join(',' . "\n" . ' ', PMA_extractPrivInfo($current, TRUE)) . "\n"
1465 . ' <tt>' . "\n"
1466 . ' </td>' . "\n";
1467 if (PMA_MYSQL_INT_VERSION >= 32211) {
1468 echo ' <td bgcolor="' . ($useBgcolorOne ? $cfg['BgcolorOne'] : $cfg['BgcolorTwo']) . '">' . "\n"
1469 . ' ' . ($current['Grant_priv'] == 'Y' ? $strYes : $strNo) . "\n"
1470 . ' </td>' . "\n";
1472 echo ' <td bgcolor="' . ($useBgcolorOne ? $cfg['BgcolorOne'] : $cfg['BgcolorTwo']) . '">' . "\n"
1473 . ' <a href="./server_privileges.php3?' . $url_query . '&amp;username=' . urlencode($current_user) . ($current_host == '%' ? '' : '&amp;hostname=' . urlencode($current_host)) . (!isset($current['Db']) || $current['Db'] == '*' ? '' : '&amp;dbname=' . urlencode($current['Db'])) . '">' . "\n"
1474 . ' ' . $strEdit . "\n"
1475 . ' </a>' . "\n"
1476 . ' </td>' . "\n"
1477 . ' </tr>' . "\n";
1479 if (empty($row) && empty($row1) && empty($row2)) {
1480 break;
1482 $useBgcolorOne = !$useBgcolorOne;
1484 } else {
1485 echo ' <tr>' . "\n"
1486 . ' <td colspan="' . (PMA_MYSQL_INT_VERSION >= 32211 ? '5' : '6') . '" bgcolor="' . $cfg['BgcolorTwo'] . '">' . "\n"
1487 . ' ' . $strNoUsersFound . "\n"
1488 . ' </td>' . "\n"
1489 . ' </tr>' . "\n";
1491 echo '</table>' . "\n";
1492 } // end if (empty($adduser) && empty($checkprivs)) ... else if ... else ...
1496 * Displays the footer
1498 echo "\n\n";
1499 require('./footer.inc.php3');