Czech translation update.
[phpmyadmin/last10db.git] / libraries / tbl_replace_fields.inc.php
blob7577be730960eb3200fc86c7535abe1a9b6d5586
1 <?php
2 /* vim: set expandtab sw=4 ts=4 sts=4: */
3 /**
4 * handle field values (possibly uploaded from a file)
6 * garvin: original if-clause checked, whether input was stored in a possible
7 * fields_upload_XX var. Now check, if the field is set. If it is empty or a
8 * malicious file, do not alter fields contents. If an empty or invalid file is
9 * specified, the binary data gets deleter. Maybe a nice new text-variable is
10 * appropriate to document this behaviour.
12 * garvin: security cautions! You could trick the form and submit any file the
13 * webserver has access to for upload to a binary field. Shouldn't be that easy! ;)
15 * garvin: default is to advance to the field-value parsing. Will only be set to
16 * true when a binary file is uploaded, thus bypassing further manipulation of $val.
18 * note: grab_globals has extracted the fields from _FILES or HTTP_POST_FILES
20 * @version $Id$
22 * @uses $_REQUEST
23 * @uses defined()
24 * @uses define()
25 * @uses bin2hex()
26 * @uses strlen()
27 * @uses md5()
28 * @uses implode()
29 * @uses PMA_NO_VARIABLES_IMPORT
30 * @uses PMA_sqlAddslashes()
33 /**
34 * do not import request variable into global scope
36 if (! defined('PMA_NO_VARIABLES_IMPORT')) {
37 define('PMA_NO_VARIABLES_IMPORT', true);
39 /**
40 * Gets some core libraries
42 require_once './libraries/common.inc.php';
43 require_once './libraries/File.class.php';
45 $file_to_insert = new PMA_File();
46 $file_to_insert->checkTblChangeForm($key, $rowcount);
48 $possibly_uploaded_val = $file_to_insert->getContent();
50 if ($file_to_insert->isError()) {
51 $message .= $file_to_insert->getError();
53 $file_to_insert->cleanUp();
55 if (false !== $possibly_uploaded_val) {
56 $seen_binary = true;
57 $val = $possibly_uploaded_val;
58 } else {
60 // f i e l d v a l u e i n t h e f o r m
62 if (isset($me_fields_type[$key])) {
63 $type = $me_fields_type[$key];
64 } else {
65 $type = '';
68 $f = 'field_' . md5($key);
70 if (0 === strlen($val)) {
71 // default
72 $val = "''";
74 switch ($type) {
75 case 'enum':
76 // if we have an enum, then construct the value
77 case 'set':
78 // if we have a set, then construct the value
79 case 'foreign':
80 // if we have a foreign key, then construct the value
81 if (! empty($_REQUEST[$f]['multi_edit'][$rowcount])) {
82 $val = implode(',', $_REQUEST[$f]['multi_edit'][$rowcount]);
83 $val = "'" . PMA_sqlAddslashes($val) . "'";
85 break;
86 case 'protected':
87 // here we are in protected mode (asked in the config)
88 // so tbl_change has put this special value in the
89 // fields array, so we do not change the field value
90 // but we can still handle field upload
92 // garvin: when in UPDATE mode, do not alter field's contents. When in INSERT
93 // mode, insert empty field because no values were submitted. If protected
94 // blobs where set, insert original fields content.
95 if (! empty($prot_row[$key])) {
96 $val = '0x' . bin2hex($prot_row[$key]);
97 $seen_binary = true;
98 } else {
99 $val = '';
102 break;
103 default:
104 // best way to avoid problems in strict mode (works also in non-strict mode)
105 if (isset($me_auto_increment) && isset($me_auto_increment[$key])) {
106 $val = 'NULL';
108 break;
110 } elseif ($type == 'bit') {
111 $val = preg_replace('/[^01]/', '0', $val);
112 $val = "b'" . PMA_sqlAddslashes($val) . "'";
113 } elseif (! ($type == 'timestamp' && $val == 'CURRENT_TIMESTAMP')) {
114 $val = "'" . PMA_sqlAddslashes($val) . "'";
117 // Was the Null checkbox checked for this field?
118 // (if there is a value, we ignore the Null checkbox: this could
119 // be possible if Javascript is disabled in the browser)
120 if (isset($me_fields_null[$key])
121 && $val == "''") {
122 $val = 'NULL';
125 // The Null checkbox was unchecked for this field
126 if (empty($val) && isset($me_fields_null_prev[$key]) && ! isset($me_fields_null[$key])) {
127 $val = "''";
129 } // end else (field value in the form)
130 unset($type, $f);