2 /* vim: set expandtab sw=4 ts=4 sts=4: */
4 * manipulation of table data like inserting, replacing and updating
6 * usally called as form action from tbl_change.php to insert or update table rows
10 * @todo 'edit_next' tends to not work as expected if used ... at least there is no order by
11 * it needs the original query and the row number and than replace the LIMIT clause
12 * @uses PMA_checkParameters()
13 * @uses PMA_DBI_select_db()
14 * @uses PMA_DBI_query()
15 * @uses PMA_DBI_fetch_row()
16 * @uses PMA_DBI_get_fields_meta()
17 * @uses PMA_DBI_free_result()
18 * @uses PMA_DBI_try_query()
19 * @uses PMA_DBI_getError()
20 * @uses PMA_DBI_affected_rows()
21 * @uses PMA_DBI_insert_id()
22 * @uses PMA_backquote()
23 * @uses PMA_getUniqueCondition()
24 * @uses PMA_sqlAddslashes()
25 * @uses PMA_securePath()
26 * @uses PMA_sendHeaderLocation()
32 * @uses preg_replace()
34 * @uses $GLOBALS['db']
35 * @uses $GLOBALS['table']
36 * @uses $GLOBALS['goto']
37 * @uses $GLOBALS['sql_query']
38 * @uses PMA_File::getRecentBLOBReference()
43 * do not import request variable into global scope
45 * cannot be used as long as it could happen that the $goto file that is included
46 * at the end of this script is not updated to work without imported request variables
48 * @todo uncomment this if all possible included files to rely on import request variables
49 if (! defined('PMA_NO_VARIABLES_IMPORT')) {
50 define('PMA_NO_VARIABLES_IMPORT', true);
54 * Gets some core libraries
56 require_once './libraries/common.inc.php';
59 PMA_checkParameters(array('db', 'table', 'goto'));
61 PMA_DBI_select_db($GLOBALS['db']);
64 * Initializes some variables
66 $goto_include = false;
68 if (isset($_REQUEST['insert_rows']) && is_numeric($_REQUEST['insert_rows']) && $_REQUEST['insert_rows'] != $cfg['InsertRows']) {
69 $cfg['InsertRows'] = $_REQUEST['insert_rows'];
70 $GLOBALS['js_include'][] = 'tbl_change.js';
71 require_once './libraries/header.inc.php';
72 require './tbl_change.php';
76 if (isset($_REQUEST['after_insert'])
77 && in_array($_REQUEST['after_insert'], array('new_insert', 'same_insert', 'edit_next'))) {
78 $url_params['after_insert'] = $_REQUEST['after_insert'];
79 //$GLOBALS['goto'] = 'tbl_change.php';
80 $goto_include = 'tbl_change.php';
82 if (isset($_REQUEST['primary_key'])) {
83 if ($_REQUEST['after_insert'] == 'same_insert') {
84 foreach ($_REQUEST['primary_key'] as $pk) {
85 $url_params['primary_key'][] = $pk;
87 } elseif ($_REQUEST['after_insert'] == 'edit_next') {
88 foreach ($_REQUEST['primary_key'] as $pk) {
89 $local_query = 'SELECT * FROM ' . PMA_backquote($GLOBALS['db']) . '.' . PMA_backquote($GLOBALS['table'])
90 . ' WHERE ' . str_replace('` =', '` >', $pk)
92 $res = PMA_DBI_query($local_query);
93 $row = PMA_DBI_fetch_row($res);
94 $meta = PMA_DBI_get_fields_meta($res);
95 // must find a unique condition based on unique key,
96 // not a combination of all fields
97 if ($tmp = PMA_getUniqueCondition($res, count($meta), $meta, $row, true)) {
98 $_SESSION['edit_next'] = $tmp;
104 } elseif (! empty($GLOBALS['goto'])) {
105 if (! preg_match('@^[a-z_]+\.php$@', $GLOBALS['goto'])) {
106 // this should NOT happen
107 //$GLOBALS['goto'] = false;
108 $goto_include = false;
110 $goto_include = $GLOBALS['goto'];
112 if ($GLOBALS['goto'] == 'db_sql.php' && strlen($GLOBALS['table'])) {
113 $GLOBALS['table'] = '';
117 if (! $goto_include) {
118 if (! strlen($GLOBALS['table'])) {
119 $goto_include = 'db_sql.php';
121 $goto_include = 'tbl_sql.php';
125 // Defines the url to return in case of failure of the query
126 if (isset($_REQUEST['err_url'])) {
127 $err_url = $_REQUEST['err_url'];
129 $err_url = 'tbl_change.php' . PMA_generate_common_url($url_params);
133 * Prepares the update/insert of a row
135 if (isset($_REQUEST['primary_key'])) {
136 // we were editing something => use primary key
137 $loop_array = (is_array($_REQUEST['primary_key']) ?
$_REQUEST['primary_key'] : array($_REQUEST['primary_key']));
139 $is_insert = ($_REQUEST['submit_type'] == $GLOBALS['strInsertAsNewRow']);
141 // new row => use indexes
142 $loop_array = array();
143 foreach ($_REQUEST['fields']['multi_edit'] as $key => $dummy) {
144 $loop_array[] = $key;
151 $value_sets = array();
152 $func_no_param = array(
165 foreach ($loop_array as $rowcount => $primary_key) {
166 // skip fields to be ignored
167 if (! $using_key && isset($_REQUEST['insert_ignore_' . $primary_key])) {
171 // Defines the SET part of the sql query
172 $query_values = array();
174 // Map multi-edit keys to single-level arrays, dependent on how we got the fields
176 isset($_REQUEST['fields']['multi_edit'][$rowcount])
177 ?
$_REQUEST['fields']['multi_edit'][$rowcount]
180 isset($_REQUEST['fields_prev']['multi_edit'][$rowcount])
181 ?
$_REQUEST['fields_prev']['multi_edit'][$rowcount]
184 isset($_REQUEST['funcs']['multi_edit'][$rowcount])
185 ?
$_REQUEST['funcs']['multi_edit'][$rowcount]
188 isset($_REQUEST['fields_type']['multi_edit'][$rowcount])
189 ?
$_REQUEST['fields_type']['multi_edit'][$rowcount]
192 isset($_REQUEST['fields_null']['multi_edit'][$rowcount])
193 ?
$_REQUEST['fields_null']['multi_edit'][$rowcount]
195 $me_fields_null_prev =
196 isset($_REQUEST['fields_null_prev']['multi_edit'][$rowcount])
197 ?
$_REQUEST['fields_null_prev']['multi_edit'][$rowcount]
200 isset($_REQUEST['auto_increment']['multi_edit'][$rowcount])
201 ?
$_REQUEST['auto_increment']['multi_edit'][$rowcount]
204 $primary_field = PMA_BS_GetPrimaryField($GLOBALS['db'], $GLOBALS['table']);
206 foreach ($me_fields as $key => $val) {
208 require './libraries/tbl_replace_fields.inc.php';
210 // rajk - for blobstreaming
211 if (NULL != $primary_field ||
strlen($primary_field) > 0)
213 $remove_blob_repo = isset($_REQUEST['remove_blob_repo_' . $key]) ?
$_REQUEST['remove_blob_repo_' . $key] : NULL;
214 $upload_blob_repo = isset($_REQUEST['upload_blob_repo_' . $key]) ?
$_REQUEST['upload_blob_repo_' . $key] : NULL;
216 // checks if an existing blob repository reference should be removed
217 if (isset($remove_blob_repo) && !isset($upload_blob_repo))
219 $remove_blob_reference = $_REQUEST['remove_blob_ref_' . $key];
221 if (isset($remove_blob_reference))
225 // checks if this field requires a bs reference attached to it
226 $requires_bs_reference = isset($upload_blob_repo);
228 if ($requires_bs_reference)
230 // get the most recent BLOB reference
231 $bs_reference = PMA_File
::getRecentBLOBReference();
233 // if the most recent BLOB reference exists, set it as a field value
234 if (!is_null($bs_reference))
235 $val = "'" . PMA_sqlAddslashes($bs_reference) . "'";
239 if (empty($me_funcs[$key])) {
241 } elseif ('UNIX_TIMESTAMP' === $me_funcs[$key] && $val != "''") {
242 $cur_value = $me_funcs[$key] . '(' . $val . ')';
243 } elseif (in_array($me_funcs[$key], $func_no_param)) {
244 $cur_value = $me_funcs[$key] . '()';
246 $cur_value = $me_funcs[$key] . '(' . $val . ')';
251 // no need to add column into the valuelist
252 if (strlen($cur_value)) {
253 $query_values[] = $cur_value;
254 // first inserted row so prepare the list of fields
255 if (empty($value_sets)) {
256 $query_fields[] = PMA_backquote($key);
261 } elseif (!empty($me_fields_null_prev[$key])
262 && !isset($me_fields_null[$key])) {
263 // field had the null checkbox before the update
264 // field no longer has the null checkbox
265 $query_values[] = PMA_backquote($key) . ' = ' . $cur_value;
266 } elseif (empty($me_funcs[$key])
267 && isset($me_fields_prev[$key])
268 && ("'" . PMA_sqlAddslashes($me_fields_prev[$key]) . "'" == $val)) {
269 // No change for this column and no MySQL function is used -> next column
271 } elseif (! empty($val)) {
272 // avoid setting a field to NULL when it's already NULL
273 // (field had the null checkbox before the update
274 // field still has the null checkbox)
275 if (!(! empty($me_fields_null_prev[$key])
276 && isset($me_fields_null[$key]))) {
277 $query_values[] = PMA_backquote($key) . ' = ' . $cur_value;
280 } // end foreach ($me_fields as $key => $val)
282 if (count($query_values) > 0) {
284 $value_sets[] = implode(', ', $query_values);
286 // build update query
287 $query[] = 'UPDATE ' . PMA_backquote($GLOBALS['db']) . '.' . PMA_backquote($GLOBALS['table'])
288 . ' SET ' . implode(', ', $query_values) . ' WHERE ' . str_replace(']', ']', $primary_key) . ' LIMIT 1';
292 } // end foreach ($loop_array as $primary_key)
293 unset($me_fields_prev, $me_funcs, $me_fields_type, $me_fields_null, $me_fields_null_prev,
294 $me_auto_increment, $cur_value, $key, $val, $loop_array, $primary_key, $using_key,
298 // Builds the sql query
299 if ($is_insert && count($value_sets) > 0) {
300 $query[] = 'INSERT INTO ' . PMA_backquote($GLOBALS['db']) . '.' . PMA_backquote($GLOBALS['table'])
301 . ' (' . implode(', ', $query_fields) . ') VALUES (' . implode('), (', $value_sets) . ')';
303 unset($query_fields, $value_sets);
305 $message = PMA_Message
::success('strRowsInserted');
306 } elseif (! empty($query)) {
307 $message = PMA_Message
::success('strRowsAffected');
309 // No change -> move back to the calling script
310 $message = PMA_Message
::success('strNoModification');
311 $GLOBALS['js_include'][] = 'functions.js';
312 $active_page = $goto_include;
313 require_once './libraries/header.inc.php';
314 require './' . PMA_securePath($goto_include);
317 unset($me_fields, $is_insert);
320 * Executes the sql query and get the result, then move back to the calling
323 if (! empty($GLOBALS['sql_query'])) {
324 $url_params['sql_query'] = $GLOBALS['sql_query'];
325 $return_to_sql_query = $GLOBALS['sql_query'];
327 $GLOBALS['sql_query'] = implode('; ', $query) . ';';
328 $total_affected_rows = 0;
329 $last_messages = array();
330 $warning_messages = array();
331 $error_messages = array();
333 foreach ($query as $single_query) {
334 if ($GLOBALS['cfg']['IgnoreMultiSubmitErrors']) {
335 $result = PMA_DBI_try_query($single_query);
337 $result = PMA_DBI_query($single_query);
341 $error_messages[] = PMA_DBI_getError();
343 if (@PMA_DBI_affected_rows
()) {
344 $total_affected_rows +
= @PMA_DBI_affected_rows
();
347 $insert_id = PMA_DBI_insert_id();
348 if ($insert_id != 0) {
349 // insert_id is id of FIRST record inserted in one insert, so if we
350 // inserted multiple rows, we had to increment this
352 if ($total_affected_rows > 0) {
353 $insert_id = $insert_id +
$total_affected_rows - 1;
355 $last_message = PMA_Message
::notice('strInsertedRowId');
356 $last_message->addParam($insert_id);
357 $last_messages[] = $last_message;
359 PMA_DBI_free_result($result);
362 foreach (PMA_DBI_get_warnings() as $warning) {
363 $warning_messages[] = $warning['Level'] . ': #' . $warning['Code']
364 . ' ' . $warning['Message'];
369 unset($single_query, $query);
371 $message->addParam($total_affected_rows);
372 $message->addMessages($last_messages, '<br />');
374 if (! empty($warning_messages)) {
376 * @todo use a <div class="warning"> in PMA_showMessage() for this part of
379 $message->addMessages($warning_messages, '<br />');
380 $message->isWarning(true);
382 if (! empty($error_messages)) {
383 $message->addMessages($error_messages);
384 $message->isError(true);
386 unset($error_messages, $warning_messages, $total_affected_rows, $last_messages, $last_message);
388 if (isset($return_to_sql_query)) {
389 $disp_query = $GLOBALS['sql_query'];
390 $disp_message = $message;
392 $GLOBALS['sql_query'] = $return_to_sql_query;
395 $GLOBALS['js_include'][] = 'tbl_change.js';
396 $GLOBALS['js_include'][] = 'functions.js';
397 // in case we call sql.php which needs those:
398 $GLOBALS['js_include'][] = 'mootools.js';
400 $active_page = $goto_include;
404 require_once './libraries/header.inc.php';
408 require './' . PMA_securePath($goto_include);