2 /* vim: set expandtab sw=4 ts=4 sts=4: */
4 * searchs the entire database
6 * @todo make use of UNION when searching multiple tables
7 * @todo display executed query, optional?
14 require_once './libraries/common.inc.php';
16 $GLOBALS['js_include'][] = 'db_search.js';
17 $GLOBALS['js_include'][] = 'sql.js';
18 $GLOBALS['js_include'][] = 'makegrid.js';
21 * Gets some core libraries and send headers
23 require './libraries/db_common.inc.php';
28 // If config variable $GLOBALS['cfg']['Usedbsearch'] is on false : exit.
29 if (! $GLOBALS['cfg']['UseDbSearch']) {
30 PMA_mysqlDie(__('Access denied'), '', false, $err_url);
32 $url_query .= '&goto=db_search.php';
33 $url_params['goto'] = 'db_search.php';
36 * @global array list of tables from the current database
37 * but do not clash with $tables coming from db_info.inc.php
39 $tables_names_only = PMA_DBI_get_tables($GLOBALS['db']);
41 $search_options = array(
42 '1' => __('at least one of the words'),
43 '2' => __('all words'),
44 '3' => __('the exact phrase'),
45 '4' => __('as regular expression'),
48 if (empty($_REQUEST['search_option']) ||
! is_string($_REQUEST['search_option'])
49 ||
! array_key_exists($_REQUEST['search_option'], $search_options)) {
51 unset($_REQUEST['submit_search']);
53 $search_option = (int) $_REQUEST['search_option'];
54 $option_str = $search_options[$_REQUEST['search_option']];
57 if (empty($_REQUEST['search_str']) ||
! is_string($_REQUEST['search_str'])) {
58 unset($_REQUEST['submit_search']);
61 $searched = htmlspecialchars($_REQUEST['search_str']);
62 // For "as regular expression" (search option 4), we should not treat
63 // this as an expression that contains a LIKE (second parameter of
64 // PMA_sqlAddSlashes()).
66 // Usage example: If user is seaching for a literal $ in a regexp search,
67 // he should enter \$ as the value.
68 $search_str = PMA_sqlAddSlashes($_REQUEST['search_str'], ($search_option == 4 ?
false : true));
71 $tables_selected = array();
72 if (empty($_REQUEST['table_select']) ||
! is_array($_REQUEST['table_select'])) {
73 unset($_REQUEST['submit_search']);
74 } elseif (! isset($_REQUEST['selectall']) && ! isset($_REQUEST['unselectall'])) {
75 $tables_selected = array_intersect($_REQUEST['table_select'], $tables_names_only);
78 if (isset($_REQUEST['selectall'])) {
79 $tables_selected = $tables_names_only;
80 } elseif (isset($_REQUEST['unselectall'])) {
81 $tables_selected = array();
84 if (empty($_REQUEST['field_str']) ||
! is_string($_REQUEST['field_str'])) {
87 $field_str = PMA_sqlAddSlashes($_REQUEST['field_str'], true);
91 * Displays top links if we are not in an Ajax request
95 if ( $GLOBALS['is_ajax_request'] != true) {
96 require './libraries/db_info.inc.php';
97 echo '<div id="searchresults">';
101 * 1. Main search form has been submitted
103 if (isset($_REQUEST['submit_search'])) {
106 * Builds the SQL search query
108 * @todo can we make use of fulltextsearch IN BOOLEAN MODE for this?
110 * PMA_DBI_free_result
111 * PMA_DBI_fetch_assoc
116 * @param string the table name
117 * @param string restrict the search to this field
118 * @param string the string to search
119 * @param integer type of search (1 -> 1 word at least, 2 -> all words,
120 * 3 -> exact string, 4 -> regexp)
122 * @return array 3 SQL querys (for count, display and delete results)
124 function PMA_getSearchSqls($table, $field, $search_str, $search_option)
127 $sqlstr_select = 'SELECT';
128 $sqlstr_delete = 'DELETE';
131 $tblfields = PMA_DBI_get_columns($GLOBALS['db'], $table);
134 $sqlstr_from = ' FROM ' . PMA_backquote($GLOBALS['db']) . '.' . PMA_backquote($table);
136 $search_words = (($search_option > 2) ?
array($search_str) : explode(' ', $search_str));
138 $like_or_regex = (($search_option == 4) ?
'REGEXP' : 'LIKE');
139 $automatic_wildcard = (($search_option < 3) ?
'%' : '');
141 $fieldslikevalues = array();
142 foreach ($search_words as $search_word) {
143 // Eliminates empty values
144 if (strlen($search_word) === 0) {
148 $thefieldlikevalue = array();
149 foreach ($tblfields as $tblfield) {
150 if (! isset($field) ||
strlen($field) == 0 ||
$tblfield['Field'] == $field) {
151 $thefieldlikevalue[] = 'CONVERT(' . PMA_backquote($tblfield['Field']) . ' USING utf8)'
152 . ' ' . $like_or_regex . ' '
153 . "'" . $automatic_wildcard
155 . $automatic_wildcard . "'";
159 if (count($thefieldlikevalue) > 0) {
160 $fieldslikevalues[] = implode(' OR ', $thefieldlikevalue);
164 $implode_str = ($search_option == 1 ?
' OR ' : ' AND ');
165 if ( empty($fieldslikevalues)) {
166 // this could happen when the "inside field" does not exist
167 // in any selected tables
168 $sqlstr_where = ' WHERE FALSE';
170 $sqlstr_where = ' WHERE (' . implode(') ' . $implode_str . ' (', $fieldslikevalues) . ')';
172 unset($fieldslikevalues);
174 // Builds complete queries
175 $sql['select_fields'] = $sqlstr_select . ' * ' . $sqlstr_from . $sqlstr_where;
176 // here, I think we need to still use the COUNT clause, even for
177 // VIEWs, anyway we have a WHERE clause that should limit results
178 $sql['select_count'] = $sqlstr_select . ' COUNT(*) AS `count`' . $sqlstr_from . $sqlstr_where;
179 $sql['delete'] = $sqlstr_delete . $sqlstr_from . $sqlstr_where;
182 } // end of the "PMA_getSearchSqls()" function
186 * Displays the results
188 $this_url_params = array(
189 'db' => $GLOBALS['db'],
190 'goto' => 'db_sql.php',
192 'is_js_confirmed' => 0,
195 // Displays search string
197 .'<table class="data">' . "\n"
198 .'<caption class="tblHeaders">' . "\n"
199 .sprintf(__('Search results for "<i>%s</i>" %s:'),
200 $searched, $option_str) . "\n"
201 .'</caption>' . "\n";
203 $num_search_result_total = 0;
206 foreach ($tables_selected as $each_table) {
207 // Gets the SQL statements
208 $newsearchsqls = PMA_getSearchSqls($each_table, (! empty($field_str) ?
$field_str : ''), $search_str, $search_option);
210 // Executes the "COUNT" statement
211 $res_cnt = PMA_DBI_fetch_value($newsearchsqls['select_count']);
212 $num_search_result_total +
= $res_cnt;
214 $sql_query .= $newsearchsqls['select_count'];
216 echo '<tr class="noclick ' . ($odd_row ?
'odd' : 'even') . '">'
217 .'<td>' . sprintf(_ngettext('%s match inside table <i>%s</i>', '%s matches inside table <i>%s</i>', $res_cnt), $res_cnt,
218 htmlspecialchars($each_table)) . "</td>\n";
221 $this_url_params['sql_query'] = $newsearchsqls['select_fields'];
222 $browse_result_path = 'sql.php' . PMA_generate_common_url($this_url_params);
224 <td
> <a name
="browse_search" href
="<?php echo $browse_result_path; ?>" onclick
="loadResult('<?php echo $browse_result_path ?> ',' <?php echo $each_table?> ' , '<?php echo PMA_generate_common_url($GLOBALS['db'], $each_table)?>','<?php echo ($GLOBALS['cfg']['AjaxEnable']); ?>');return false;" ><?php
echo __('Browse') ?
></a
> </td
>
226 $this_url_params['sql_query'] = $newsearchsqls['delete'];
227 $delete_result_path = 'sql.php' . PMA_generate_common_url($this_url_params);
229 <td
> <a name
="delete_search" href
="<?php echo $delete_result_path; ?>" onclick
="deleteResult('<?php echo $delete_result_path ?>' , ' <?php printf(__('Delete the matches for the %s table?'), htmlspecialchars($each_table)); ?>','<?php echo ($GLOBALS['cfg']['AjaxEnable']); ?>');return false;" ><?php
echo __('Delete') ?
></a
> </td
>
232 echo '<td> </td>' . "\n"
233 .'<td> </td>' . "\n";
235 $odd_row = ! $odd_row;
239 echo '</table>' . "\n";
241 if (count($tables_selected) > 1) {
242 echo '<p>' . sprintf(_ngettext('<b>Total:</b> <i>%s</i> match', '<b>Total:</b> <i>%s</i> matches', $num_search_result_total),
243 $num_search_result_total) . '</p>' . "\n";
248 * If we are in an Ajax request, we need to exit after displaying all the HTML
250 if ($GLOBALS['is_ajax_request'] == true) {
254 echo '</div>';//end searchresults div
258 * 2. Displays the main search form
261 <a name
="db_search"></a
>
262 <form id
="db_search_form"<?php
echo ($GLOBALS['cfg']['AjaxEnable'] ?
' class="ajax"' : ''); ?
> method
="post" action
="db_search.php" name
="db_search">
263 <?php
echo PMA_generate_common_hidden_inputs($GLOBALS['db']); ?
>
265 <legend
><?php
echo __('Search in database'); ?
></legend
>
267 <table
class="formlayout">
268 <tr
><td
><?php
echo __('Words or values to search for (wildcard: "%"):'); ?
></td
>
269 <td
><input type
="text" name
="search_str" size
="60"
270 value
="<?php echo $searched; ?>" /></td
>
272 <tr
><td align
="right" valign
="top">
273 <?php
echo __('Find:'); ?
></td
>
277 '1' => __('at least one of the words') . PMA_showHint(__('Words are separated by a space character (" ").')),
278 '2' => __('all words') . PMA_showHint(__('Words are separated by a space character (" ").')),
279 '3' => __('the exact phrase'),
280 '4' => __('as regular expression') . ' ' . PMA_showMySQLDocu('Regexp', 'Regexp')
282 // 4th parameter set to true to add line breaks
283 // 5th parameter set to false to avoid htmlspecialchars() escaping in the label
284 // since we have some HTML in some labels
285 PMA_display_html_radio('search_option', $choices, $search_option, true, false);
290 <tr
><td align
="right" valign
="top">
291 <?php
echo __('Inside tables:'); ?
></td
>
294 echo ' <select name="table_select[]" size="6" multiple="multiple">' . "\n";
295 foreach ($tables_names_only as $each_table) {
296 if (in_array($each_table, $tables_selected)) {
297 $is_selected = ' selected="selected"';
302 echo ' <option value="' . htmlspecialchars($each_table) . '"'
304 . str_replace(' ', ' ', htmlspecialchars($each_table)) . '</option>' . "\n";
307 echo ' </select>' . "\n";
309 '<a href="db_search.php' . PMA_generate_common_url(array_merge($url_params, array('selectall' => 1))) . '#db_search"'
310 . ' onclick="setSelectOptions(\'db_search\', \'table_select[]\', true); return false;">' . __('Select All') . '</a>'
312 . '<a href="db_search.php' . PMA_generate_common_url(array_merge($url_params, array('unselectall' => 1))) . '#db_search"'
313 . ' onclick="setSelectOptions(\'db_search\', \'table_select[]\', false); return false;">' . __('Unselect All') . '</a>';
317 <tr
><td align
="right" valign
="bottom">
318 <?php
echo $alter_select; ?
></td
>
320 <tr
><td align
="right">
321 <?php
echo __('Inside column:'); ?
></td
>
322 <td
><input type
="text" name
="field_str" size
="60"
323 value
="<?php echo ! empty($field_str) ? htmlspecialchars($field_str) : ''; ?>" /></td
>
327 <fieldset
class="tblFooters">
328 <input type
="submit" name
="submit_search" value
="<?php echo __('Go'); ?>"
333 <!-- These two table
-image
and table
-link elements display the table name in browse search results
-->
334 <div id
='table-info'>
335 <a
class="item" id
="table-link" ></a
>
337 <div id
="browse-results">
338 <!-- this browse
-results div is used to load the browse
and delete results in the db search
-->
340 <br
class="clearfloat" />
341 <div id
="sqlqueryform">
342 <!-- this sqlqueryform div is used to load the delete form in the db search
-->
344 <!-- toggle query box link
-->
345 <a id
="togglequerybox"></a
>
349 * Displays the footer
351 require './libraries/footer.inc.php';