2 /* vim: set expandtab sw=4 ts=4 sts=4: */
4 * Handles table zoom search tab
6 * display table zoom search form, create SQL queries from form data
11 * Gets some core libraries
13 require_once './libraries/common.inc.php';
14 require_once './libraries/mysql_charsets.lib.php';
15 require_once './libraries/tbl_select.lib.php';
16 require_once './libraries/relation.lib.php';
17 require_once './libraries/tbl_info.inc.php';
19 $GLOBALS['js_include'][] = 'makegrid.js';
20 $GLOBALS['js_include'][] = 'sql.js';
21 $GLOBALS['js_include'][] = 'functions.js';
22 $GLOBALS['js_include'][] = 'tbl_zoom_plot.js';
23 $GLOBALS['js_include'][] = 'date.js';
24 $GLOBALS['js_include'][] = 'highcharts/highcharts.js';
25 /* Files required for chart exporting */
26 $GLOBALS['js_include'][] = 'highcharts/exporting.js';
27 $GLOBALS['js_include'][] = 'canvg/canvg.js';
28 $GLOBALS['js_include'][] = 'jquery/jquery-ui-1.8.custom.js';
29 $GLOBALS['js_include'][] = 'jquery/timepicker.js';
33 * Handle AJAX request for data row on point select
34 * @var post_params Object containing parameters for the POST request
37 if (isset($_REQUEST['get_data_row']) && $_REQUEST['get_data_row'] == true) {
39 $extra_data = array();
40 $row_info_query = 'SELECT * FROM `' . $_REQUEST['db'] . '`.`' . $_REQUEST['table'] . '` WHERE ' . $_REQUEST['where_clause'];
41 $result = PMA_DBI_query( $row_info_query . ";" , null, PMA_DBI_QUERY_STORE
);
42 $fields_meta = PMA_DBI_get_fields_meta($result);
43 while ($row = PMA_DBI_fetch_assoc($result))
44 $extra_data['row_info'] = $row;
46 PMA_ajaxResponse(NULL, true, $extra_data);
49 $titles['Browse'] = PMA_tbl_setTitle($GLOBALS['cfg']['PropertiesIconic'], $pmaThemeImage);
51 * Not selection yet required -> displays the selection form
54 // Gets some core libraries
55 require_once './libraries/tbl_common.php';
56 //$err_url = 'tbl_select.php' . $err_url;
57 $url_query .= '&goto=tbl_select.php&back=tbl_select.php';
60 * Gets tables informations
62 require_once './libraries/tbl_info.inc.php';
65 * Displays top menu links
67 require_once './libraries/tbl_links.inc.php';
70 $goto = $GLOBALS['cfg']['DefaultTabTable'];
72 // Defines the url to return to in case of error in the next sql statement
73 $err_url = $goto . '?' . PMA_generate_common_url($db, $table);
75 // Gets the list and number of fields
77 list($fields_list, $fields_type, $fields_collation, $fields_null) = PMA_tbl_getFields($table,$db);
78 $fields_cnt = count($fields_list);
80 // retrieve keys into foreign fields, if any
81 // check also foreigners even if relwork is FALSE (to get
82 // foreign keys from innodb)
83 $foreigners = PMA_getForeigners($db, $table);
85 $tbl_fields_type = $tbl_fields_collation = $tbl_fields_null = array();
86 if(!isset($zoom_submit) && !isset($inputs))
87 $dataLabel = PMA_getDisplayField($db,$table);
92 <div id
="sqlqueryresults"></div
>
93 <fieldset id
="fieldset_subtab">
95 $url_params = array();
96 $url_params['db'] = $db;
97 $url_params['table'] = $table;
98 echo PMA_generate_html_tabs(PMA_tbl_getSubTabs(), $url_params);
101 * Set the field name,type,collation and whether null on select of a coulmn
103 if(isset($inputs) && ($inputs[0] != __('pma_null') ||
$inputs[1] != __('pma_null')))
106 for($i = 0 ; $i < 4 ; $i++
)
108 if($inputs[$i] != __('pma_null'))
110 $key = array_search($inputs[$i],$fields_list);
111 $tbl_fields_type[$i] = $fields_type[$key];
112 $tbl_fields_collation[$i] = $fields_collation[$key];
113 $tbl_fields_null[$i] = $fields_null[$key];
125 * Form for input criteria
129 <form method
="post" action
="tbl_zoom_select.php" name
="zoomInputForm" id
="zoom_search_form" <?php
echo ($GLOBALS['cfg']['AjaxEnable'] ?
' class="ajax"' : ''); ?
>>
130 <?php
echo PMA_generate_common_hidden_inputs($db, $table); ?
>
131 <input type
="hidden" name
="goto" value
="<?php echo $goto; ?>" />
132 <input type
="hidden" name
="back" value
="tbl_zoom_select.php" />
133 <input type
="hidden" name
="flag" id
="id_flag" value
=<?php
echo $flag; ?
> />
138 <fieldset id
="inputSection">
140 <legend
><?php
echo __('Do a "query by example" (wildcard: "%") for two different columns') ?
></legend
>
142 <?php
echo PMA_tbl_setTableHeader();?
>
147 for($i = 0 ; $i < 4 ; $i++
){
151 echo __("Additional search criteria");
156 <tr
class="noclick <?php echo $odd_row ? 'odd' : 'even'; $odd_row = ! $odd_row; ?>">
157 <th
><select name
="inputs[]" id
=<?php
echo 'tableid_' . $i?
> >
158 <option value
= <?php
echo __('pma_null')?
>><?php
echo __('None'); ?
> </option
>
160 for ($j = 0 ; $j < $fields_cnt ; $j++
){
161 if(isset($inputs[$i]) && $inputs[$i] == htmlspecialchars($fields_list[$j])){?
>
162 <option value
=<?php
echo htmlspecialchars($fields_list[$j]);?
> Selected
> <?php
echo htmlspecialchars($fields_list[$j]);?
></option
>
166 <option value
=<?php
echo htmlspecialchars($fields_list[$j]);?
> > <?php
echo htmlspecialchars($fields_list[$j]);?
></option
>
171 <td
><?php
if(isset($tbl_fields_type[$i]))echo $tbl_fields_type[$i]; ?
></td
>
172 <td
><?php
if(isset($tbl_fields_collation[$i]))echo $tbl_fields_collation[$i]; ?
></td
>
175 <?php
if(isset($inputs) && $inputs[$i] != __('pma_null')){ ?
>
176 <select name
="zoomFunc[]">
179 if (strncasecmp($tbl_fields_type[$i], 'enum', 4) == 0) {
180 foreach ($GLOBALS['cfg']['EnumOperators'] as $fc) {
181 if(isset($zoomFunc[$i]) && $zoomFunc[$i] == htmlspecialchars($fc)){
183 . '<option value="' . htmlspecialchars($fc) . '" Selected>'
184 . htmlspecialchars($fc) . '</option>';
188 . '<option value="' . htmlspecialchars($fc) . '">'
189 . htmlspecialchars($fc) . '</option>';
192 } elseif (preg_match('@char|blob|text|set@i', $tbl_fields_type[$i])) {
193 foreach ($GLOBALS['cfg']['TextOperators'] as $fc) {
194 if(isset($zoomFunc[$i]) && $zoomFunc[$i] == $fc){
196 . '<option value="' . htmlspecialchars($fc) . '" Selected>'
197 . htmlspecialchars($fc) . '</option>';
201 . '<option value="' . htmlspecialchars($fc) . '">'
202 . htmlspecialchars($fc) . '</option>';
206 foreach ($GLOBALS['cfg']['NumOperators'] as $fc) {
207 if(isset($zoomFunc[$i]) && $zoomFunc[$i] == $fc){
209 . '<option value="' . htmlspecialchars($fc) . '" Selected>'
210 . htmlspecialchars($fc) . '</option>';
214 . '<option value="' . htmlspecialchars($fc) . '">'
215 . htmlspecialchars($fc) . '</option>';
218 } // end if... else...
220 if ($tbl_fields_null[$i]) {
221 foreach ($GLOBALS['cfg']['NullOperators'] as $fc) {
222 if(isset($zoomFunc[$i]) && $zoomFunc[$i] == $fc){
224 . '<option value="' . htmlspecialchars($fc) . '" Selected>'
225 . htmlspecialchars($fc) . '</option>';
229 . '<option value="' . htmlspecialchars($fc) . '">'
230 . htmlspecialchars($fc) . '</option>';
239 $field = $inputs[$i];
241 $foreignData = PMA_getForeignData($foreigners, $field, false, '', '');
243 echo PMA_getForeignFields_Values($foreigners, $foreignData, $field, $tbl_fields_type, $i ,$db, $table, $titles, $GLOBALS['cfg']['ForeignKeyMaxLimit'], $fields);
245 echo PMA_getForeignFields_Values($foreigners, $foreignData, $field, $tbl_fields_type, $i ,$db, $table, $titles, $GLOBALS['cfg']['ForeignKeyMaxLimit'], '');
257 <input type
="hidden" name
="types[<?php echo $i; ?>]" id
="types_<?php echo $i; ?>"
258 value
="<?php if(isset($tbl_fields_type[$i]))echo $tbl_fields_type[$i]; ?>" />
259 <input type
="hidden" name
="collations[<?php echo $i; ?>]"
260 value
="<?php if(isset($tbl_fields_collation[$i]))echo $tbl_fields_collation[$i]; ?>" />
271 * Other inputs like data label and mode go after selection of column criteria
274 //Set default datalabel if not selected
275 if(isset($zoom_submit) && $inputs[0] != __('pma_null') && $inputs[1] != __('pma_null')) {
276 if ($dataLabel == '')
277 $dataLabel = PMA_getDisplayField($db,$table);
281 <tr
><td
><label
for="label"><?php
echo __("Data Label"); ?
></label
> 
 
 
 
 
 
 
 
</td
>
282 <td
><select name
="dataLabel" id
='dataLabel' >
283 <option value
= ''> <?php
echo __('None'); ?
> </option
>
285 for ($j = 0 ; $j < $fields_cnt ; $j++
){
286 if(isset($dataLabel) && $dataLabel == htmlspecialchars($fields_list[$j])){?
>
287 <option value
=<?php
echo htmlspecialchars($fields_list[$j]);?
> Selected
> <?php
echo htmlspecialchars($fields_list[$j]);?
></option
>
291 <option value
=<?php
echo htmlspecialchars($fields_list[$j]);?
> > <?php
echo htmlspecialchars($fields_list[$j]);?
></option
>
297 <tr
><td
><label
for="label"><?php
echo __("Maximum rows to plot"); ?
></label
></td
>
299 <?php
if(isset($maxPlotLimit)) { ?
>
300 <input type
="text" name
="maxPlotLimit" value
="<?php echo $maxPlotLimit; ?>" /></td
></tr
>
304 <input type
="text" name
="maxPlotLimit" value
="<?php echo $GLOBALS['cfg']['maxRowPlotLimit']; ?>" /></td
></tr
>
310 <fieldset
class="tblFooters">
311 <input type
="hidden" name
="max_number_of_fields"
312 value
="<?php echo $fields_cnt; ?>" />
313 <input type
="submit" name
="zoom_submit" id
="inputFormSubmitId" value
="<?php echo __('Go'); ?>" />
320 * Handle the input criteria and gerate the query result
321 * Form for displaying query results
323 if(isset($zoom_submit) && $inputs[0] != __('pma_null') && $inputs[1] != __('pma_null') && $inputs[0] != $inputs[1]) {
326 * Query generation part
328 $w = $data = array();
329 $sql_query = 'SELECT *';
333 $sql_query .= ' FROM ' . PMA_backquote($table);
334 for($i = 0 ; $i < 4 ; $i++
){
335 if($inputs[$i] == __('pma_null'))
340 $cnt_func = count($zoomFunc[$i]);
341 $func_type = $zoomFunc[$i];
342 list($charsets[$i]) = explode('_', $collations[$i]);
343 $unaryFlag = (isset($GLOBALS['cfg']['UnaryOperators'][$func_type]) && $GLOBALS['cfg']['UnaryOperators'][$func_type] == 1) ?
true : false;
344 $whereClause = PMA_tbl_search_getWhereClause($fields[$i],$inputs[$i], $types[$i], $collations[$i], $func_type, $unaryFlag);
350 $sql_query .= ' WHERE ' . implode(' AND ', $w);
352 $sql_query .= ' LIMIT ' . $maxPlotLimit;
355 * Query execution part
357 $result = PMA_DBI_query( $sql_query . ";" , null, PMA_DBI_QUERY_STORE
);
358 $fields_meta = PMA_DBI_get_fields_meta($result);
359 while ($row = PMA_DBI_fetch_assoc($result)) {
360 //Need a row with indexes as 0,1,2 for the PMA_getUniqueCondition hence using a temporary array
362 foreach($row as $val)
364 //Get unique conditon on each row (will be needed for row update)
365 $uniqueCondition = PMA_getUniqueCondition($result, $fields_cnt, $fields_meta, $tmpRow, true);
367 //Append it to row array as where_clause
368 $row['where_clause'] = $uniqueCondition[0];
369 if($dataLabel == $inputs[0] ||
$dataLabel == $inputs[1])
370 $data[] = array($inputs[0] => $row[$inputs[0]], $inputs[1] => $row[$inputs[1]], 'where_clause' => $uniqueCondition[0]);
372 $data[] = array($inputs[0] => $row[$inputs[0]], $inputs[1] => $row[$inputs[1]], $dataLabel => $row[$dataLabel], 'where_clause' => $uniqueCondition[0]);
379 * Form for displaying point data and also the scatter plot
382 <form method
="post" action
="tbl_zoom_select.php" name
="displayResultForm" id
="zoom_display_form" <?php
echo ($GLOBALS['cfg']['AjaxEnable'] ?
' class="ajax"' : ''); ?
>>
383 <?php
echo PMA_generate_common_hidden_inputs($db, $table); ?
>
384 <input type
="hidden" name
="goto" value
="<?php echo $goto; ?>" />
385 <input type
="hidden" name
="back" value
="tbl_zoom_select.php" />
387 <fieldset id
="displaySection">
388 <legend
><?php
echo __('Browse/Edit the points') ?
></legend
>
391 //JSON encode the data(query result)
392 if(isset($zoom_submit) && !empty($data)){ ?
>
393 <div id
='resizer' style
="width:600px;height:400px">
394 <?php
if (isset($data)) ?
><center
> <a href
="#" onClick
="displayHelp();"><?php
echo __('How to use'); ?
></a
> </center
>
395 <div id
="querydata" style
="display:none">
396 <?php
if(isset($data)) echo json_encode($data); ?
>
398 <div id
="querychart" style
="float:right"></div
>
403 <fieldset id
='dataDisplay' style
="display:none">
408 <th
> <?php
echo __('Column'); ?
> </th
>
409 <th
> <?php
echo __('Null'); ?
> </th
>
410 <th
> <?php
echo __('Value'); ?
> </th
>
416 for ($i = 4; $i < $fields_cnt +
4 ; $i++
) {
417 $tbl_fields_type[$i] = $fields_type[$i - 4];
418 $fieldpopup = $fields_list[$i - 4];
419 $foreignData = PMA_getForeignData($foreigners, $fieldpopup, false, '', '');
421 <tr
class="noclick <?php echo $odd_row ? 'odd' : 'even'; $odd_row = ! $odd_row; ?>">
422 <th
><?php
echo htmlspecialchars($fields_list[$i - 4]); ?
></th
>
423 <th
><?php
echo '<input type="checkbox" class="checkbox_null" name="fields_null[ ' . $i . ' ]" id="fields_null_id_' . $i . '" />'; ?
></th
>
424 <th
><?php
echo PMA_getForeignFields_Values($foreigners, $foreignData, $fieldpopup, $tbl_fields_type, $i, $db, $table, $titles,$GLOBALS['cfg']['ForeignKeyMaxLimit'], '' ); ?
> </th
>
431 <fieldset
class="tblFooters">
432 <input type
="submit" id
="submitForm" name
="edit_point" value
="<?php echo __('Submit'); ?>" />
437 <input type
="hidden" id
="queryID" name
="sql_query" />
445 require './libraries/footer.inc.php';