Total Complexity | 73 |
Total Lines | 813 |
Duplicated Lines | 0 % |
Changes | 0 |
Complex classes like TblpropertiesController often do a lot of different things. To break such a class down, we need to identify a cohesive component within that class. A common approach to find such a component is to look for fields/methods that share the same prefixes, or suffixes.
Once you have determined the fields that belong together, you can apply the Extract Class refactoring. If the component makes sense as a sub-class, Extract Subclass is also a candidate, and is often faster.
While breaking up the class, it is a good idea to analyze how other classes use TblpropertiesController, and based on these observations, apply Extract Interface, too.
1 | <?php |
||
16 | class TblpropertiesController extends BaseController |
||
17 | { |
||
18 | use \PHPPgAdmin\Traits\ExportTrait; |
||
19 | public $controller_title = 'strtables'; |
||
20 | |||
21 | /** |
||
22 | * Default method to render the controller according to the action parameter. |
||
23 | */ |
||
24 | public function render() |
||
97 | } |
||
98 | |||
99 | /** |
||
100 | * Show default list of columns in the table. |
||
101 | * |
||
102 | * @param mixed $msg |
||
103 | */ |
||
104 | public function doDefault($msg = '') |
||
105 | { |
||
106 | $misc = $this->misc; |
||
107 | $this->data = $misc->getDatabaseAccessor(); |
||
108 | |||
109 | $this->printTrail('table'); |
||
110 | $this->printTabs('table', 'columns'); |
||
111 | $this->printMsg($msg); |
||
112 | |||
113 | // Get table |
||
114 | $tdata = $this->data->getTable($_REQUEST['table']); |
||
115 | // Get columns |
||
116 | $attrs = $this->data->getTableAttributes($_REQUEST['table']); |
||
117 | // Get constraints keys |
||
118 | $ck = $this->data->getConstraintsWithFields($_REQUEST['table']); |
||
119 | |||
120 | // Show comment if any |
||
121 | if (null !== $tdata->fields['relcomment']) { |
||
122 | echo '<p class="comment">', $misc->printVal($tdata->fields['relcomment']), '</p>'.PHP_EOL; |
||
123 | } |
||
124 | $this->_printTable($ck, $attrs); |
||
125 | |||
126 | $navlinks = [ |
||
127 | 'browse' => [ |
||
128 | 'attr' => [ |
||
129 | 'href' => [ |
||
130 | 'url' => 'display', |
||
131 | 'urlvars' => [ |
||
132 | 'server' => $_REQUEST['server'], |
||
133 | 'database' => $_REQUEST['database'], |
||
134 | 'schema' => $_REQUEST['schema'], |
||
135 | 'table' => $_REQUEST['table'], |
||
136 | 'subject' => 'table', |
||
137 | 'return' => 'table', |
||
138 | ], |
||
139 | ], |
||
140 | ], |
||
141 | 'content' => $this->lang['strbrowse'], |
||
142 | ], |
||
143 | 'select' => [ |
||
144 | 'attr' => [ |
||
145 | 'href' => [ |
||
146 | 'url' => 'tables', |
||
147 | 'urlvars' => [ |
||
148 | 'action' => 'confselectrows', |
||
149 | 'server' => $_REQUEST['server'], |
||
150 | 'database' => $_REQUEST['database'], |
||
151 | 'schema' => $_REQUEST['schema'], |
||
152 | 'table' => $_REQUEST['table'], |
||
153 | ], |
||
154 | ], |
||
155 | ], |
||
156 | 'content' => $this->lang['strselect'], |
||
157 | ], |
||
158 | 'insert' => [ |
||
159 | 'attr' => [ |
||
160 | 'href' => [ |
||
161 | 'url' => 'tables', |
||
162 | 'urlvars' => [ |
||
163 | 'action' => 'confinsertrow', |
||
164 | 'server' => $_REQUEST['server'], |
||
165 | 'database' => $_REQUEST['database'], |
||
166 | 'schema' => $_REQUEST['schema'], |
||
167 | 'table' => $_REQUEST['table'], |
||
168 | ], |
||
169 | ], |
||
170 | ], |
||
171 | 'content' => $this->lang['strinsert'], |
||
172 | ], |
||
173 | 'empty' => [ |
||
174 | 'attr' => [ |
||
175 | 'href' => [ |
||
176 | 'url' => 'tables', |
||
177 | 'urlvars' => [ |
||
178 | 'action' => 'confirm_empty', |
||
179 | 'server' => $_REQUEST['server'], |
||
180 | 'database' => $_REQUEST['database'], |
||
181 | 'schema' => $_REQUEST['schema'], |
||
182 | 'table' => $_REQUEST['table'], |
||
183 | ], |
||
184 | ], |
||
185 | ], |
||
186 | 'content' => $this->lang['strempty'], |
||
187 | ], |
||
188 | 'drop' => [ |
||
189 | 'attr' => [ |
||
190 | 'href' => [ |
||
191 | 'url' => 'tables', |
||
192 | 'urlvars' => [ |
||
193 | 'action' => 'confirm_drop', |
||
194 | 'server' => $_REQUEST['server'], |
||
195 | 'database' => $_REQUEST['database'], |
||
196 | 'schema' => $_REQUEST['schema'], |
||
197 | 'table' => $_REQUEST['table'], |
||
198 | ], |
||
199 | ], |
||
200 | ], |
||
201 | 'content' => $this->lang['strdrop'], |
||
202 | ], |
||
203 | 'addcolumn' => [ |
||
204 | 'attr' => [ |
||
205 | 'href' => [ |
||
206 | 'url' => 'tblproperties', |
||
207 | 'urlvars' => [ |
||
208 | 'action' => 'add_column', |
||
209 | 'server' => $_REQUEST['server'], |
||
210 | 'database' => $_REQUEST['database'], |
||
211 | 'schema' => $_REQUEST['schema'], |
||
212 | 'table' => $_REQUEST['table'], |
||
213 | ], |
||
214 | ], |
||
215 | ], |
||
216 | 'content' => $this->lang['straddcolumn'], |
||
217 | ], |
||
218 | 'alter' => [ |
||
219 | 'attr' => [ |
||
220 | 'href' => [ |
||
221 | 'url' => 'tblproperties', |
||
222 | 'urlvars' => [ |
||
223 | 'action' => 'confirm_alter', |
||
224 | 'server' => $_REQUEST['server'], |
||
225 | 'database' => $_REQUEST['database'], |
||
226 | 'schema' => $_REQUEST['schema'], |
||
227 | 'table' => $_REQUEST['table'], |
||
228 | ], |
||
229 | ], |
||
230 | ], |
||
231 | 'content' => $this->lang['stralter'], |
||
232 | ], |
||
233 | ]; |
||
234 | $this->printNavLinks($navlinks, 'tblproperties-tblproperties', get_defined_vars()); |
||
235 | } |
||
236 | |||
237 | public function doTree() |
||
238 | { |
||
239 | $misc = $this->misc; |
||
240 | $data = $misc->getDatabaseAccessor(); |
||
241 | |||
242 | $columns = $data->getTableAttributes($_REQUEST['table']); |
||
243 | $reqvars = $misc->getRequestVars('column'); |
||
244 | |||
245 | $attrs = [ |
||
246 | 'text' => Decorator::field('attname'), |
||
247 | 'action' => Decorator::actionurl( |
||
248 | 'colproperties', |
||
249 | $reqvars, |
||
250 | [ |
||
251 | 'table' => $_REQUEST['table'], |
||
252 | 'column' => Decorator::field('attname'), |
||
253 | ] |
||
254 | ), |
||
255 | 'icon' => 'Column', |
||
256 | 'iconAction' => Decorator::url( |
||
257 | 'display', |
||
258 | $reqvars, |
||
259 | [ |
||
260 | 'table' => $_REQUEST['table'], |
||
261 | 'column' => Decorator::field('attname'), |
||
262 | 'query' => Decorator::replace( |
||
263 | 'SELECT "%column%", count(*) AS "count" FROM "%table%" GROUP BY "%column%" ORDER BY "%column%"', |
||
264 | [ |
||
265 | '%column%' => Decorator::field('attname'), |
||
266 | '%table%' => $_REQUEST['table'], |
||
267 | ] |
||
268 | ), |
||
269 | ] |
||
270 | ), |
||
271 | 'toolTip' => Decorator::field('comment'), |
||
272 | ]; |
||
273 | |||
274 | return $this->printTree($columns, $attrs, 'tblcolumns'); |
||
275 | } |
||
276 | |||
277 | public function doSaveAlter() |
||
278 | { |
||
279 | $misc = $this->misc; |
||
280 | $data = $misc->getDatabaseAccessor(); |
||
281 | |||
282 | // For databases that don't allow owner change |
||
283 | $this->coalesceArr($_POST, 'owner', ''); |
||
284 | |||
285 | // Default tablespace to null if it isn't set |
||
286 | $this->coalesceArr($_POST, 'tablespace', null); |
||
287 | |||
288 | $this->coalesceArr($_POST, 'newschema', null); |
||
289 | |||
290 | $status = $data->alterTable($_POST['table'], $_POST['name'], $_POST['owner'], $_POST['newschema'], $_POST['comment'], $_POST['tablespace']); |
||
291 | if (0 == $status) { |
||
292 | // If table has been renamed, need to change to the new name and |
||
293 | // reload the browser frame. |
||
294 | if ($_POST['table'] != $_POST['name']) { |
||
295 | // Jump them to the new table name |
||
296 | $_REQUEST['table'] = $_POST['name']; |
||
297 | // Force a browser reload |
||
298 | $misc->setReloadBrowser(true); |
||
299 | } |
||
300 | // If schema has changed, need to change to the new schema and reload the browser |
||
301 | if (!empty($_POST['newschema']) && ($_POST['newschema'] != $data->_schema)) { |
||
302 | // Jump them to the new sequence schema |
||
303 | $misc->setCurrentSchema($_POST['newschema']); |
||
304 | $misc->setReloadBrowser(true); |
||
305 | } |
||
306 | $this->doDefault($this->lang['strtablealtered']); |
||
307 | } else { |
||
308 | $this->doAlter($this->lang['strtablealteredbad']); |
||
309 | } |
||
310 | } |
||
311 | |||
312 | /** |
||
313 | * Function to allow altering of a table. |
||
314 | * |
||
315 | * @param mixed $msg |
||
316 | */ |
||
317 | public function doAlter($msg = '') |
||
318 | { |
||
319 | $misc = $this->misc; |
||
320 | $data = $misc->getDatabaseAccessor(); |
||
321 | |||
322 | $this->printTrail('table'); |
||
323 | $this->printTitle($this->lang['stralter'], 'pg.table.alter'); |
||
324 | $this->printMsg($msg); |
||
325 | |||
326 | // Fetch table info |
||
327 | $table = $data->getTable($_REQUEST['table']); |
||
328 | // Fetch all users |
||
329 | $users = $data->getUsers(); |
||
330 | $tablespaces = null; |
||
331 | // Fetch all tablespaces from the database |
||
332 | if ($data->hasTablespaces()) { |
||
333 | $tablespaces = $data->getTablespaces(true); |
||
334 | } |
||
335 | |||
336 | if ($table->recordCount() > 0) { |
||
337 | $this->coalesceArr($_POST, 'name', $table->fields['relname']); |
||
338 | |||
339 | $this->coalesceArr($_POST, 'owner', $table->fields['relowner']); |
||
340 | |||
341 | $this->coalesceArr($_POST, 'newschema', $table->fields['nspname']); |
||
342 | |||
343 | $this->coalesceArr($_POST, 'comment', $table->fields['relcomment']); |
||
344 | |||
345 | if ($data->hasTablespaces() && !isset($_POST['tablespace'])) { |
||
346 | $_POST['tablespace'] = $table->fields['tablespace']; |
||
347 | } |
||
348 | |||
349 | echo '<form action="'.\SUBFOLDER.'/src/views/tblproperties" method="post">'.PHP_EOL; |
||
350 | echo '<table>'.PHP_EOL; |
||
351 | echo "<tr><th class=\"data left required\">{$this->lang['strname']}</th>".PHP_EOL; |
||
352 | echo '<td class="data1">'; |
||
353 | echo "<input name=\"name\" size=\"32\" maxlength=\"{$data->_maxNameLen}\" value=\"", |
||
354 | htmlspecialchars($_POST['name'], ENT_QUOTES), '" /></td></tr>'.PHP_EOL; |
||
355 | |||
356 | if ($data->isSuperUser()) { |
||
357 | echo "<tr><th class=\"data left required\">{$this->lang['strowner']}</th>".PHP_EOL; |
||
358 | echo '<td class="data1"><select name="owner">'; |
||
359 | while (!$users->EOF) { |
||
360 | $uname = $users->fields['usename']; |
||
361 | echo '<option value="', htmlspecialchars($uname), '"', |
||
362 | ($uname == $_POST['owner']) ? ' selected="selected"' : '', '>', htmlspecialchars($uname), '</option>'.PHP_EOL; |
||
363 | $users->moveNext(); |
||
364 | } |
||
365 | echo '</select></td></tr>'.PHP_EOL; |
||
366 | } |
||
367 | |||
368 | if ($data->hasAlterTableSchema()) { |
||
369 | $schemas = $data->getSchemas(); |
||
370 | echo "<tr><th class=\"data left required\">{$this->lang['strschema']}</th>".PHP_EOL; |
||
371 | echo '<td class="data1"><select name="newschema">'; |
||
372 | while (!$schemas->EOF) { |
||
373 | $schema = $schemas->fields['nspname']; |
||
374 | echo '<option value="', htmlspecialchars($schema), '"', |
||
375 | ($schema == $_POST['newschema']) ? ' selected="selected"' : '', '>', htmlspecialchars($schema), '</option>'.PHP_EOL; |
||
376 | $schemas->moveNext(); |
||
377 | } |
||
378 | echo '</select></td></tr>'.PHP_EOL; |
||
379 | } |
||
380 | |||
381 | // Tablespace (if there are any) |
||
382 | if ($data->hasTablespaces() && $tablespaces->recordCount() > 0) { |
||
383 | echo "\t<tr>\n\t\t<th class=\"data left\">{$this->lang['strtablespace']}</th>".PHP_EOL; |
||
384 | echo "\t\t<td class=\"data1\">\n\t\t\t<select name=\"tablespace\">".PHP_EOL; |
||
385 | // Always offer the default (empty) option |
||
386 | echo "\t\t\t\t<option value=\"\"", |
||
387 | ('' == $_POST['tablespace']) ? ' selected="selected"' : '', '></option>'.PHP_EOL; |
||
388 | // Display all other tablespaces |
||
389 | while (!$tablespaces->EOF) { |
||
390 | $spcname = htmlspecialchars($tablespaces->fields['spcname']); |
||
391 | echo "\t\t\t\t<option value=\"{$spcname}\"", |
||
392 | ($spcname == $_POST['tablespace']) ? ' selected="selected"' : '', ">{$spcname}</option>".PHP_EOL; |
||
393 | $tablespaces->moveNext(); |
||
394 | } |
||
395 | echo "\t\t\t</select>\n\t\t</td>\n\t</tr>".PHP_EOL; |
||
396 | } |
||
397 | |||
398 | echo "<tr><th class=\"data left\">{$this->lang['strcomment']}</th>".PHP_EOL; |
||
399 | echo '<td class="data1">'; |
||
400 | echo '<textarea rows="3" cols="32" name="comment">', |
||
401 | htmlspecialchars($_POST['comment']), '</textarea></td></tr>'.PHP_EOL; |
||
402 | echo '</table>'.PHP_EOL; |
||
403 | echo '<p><input type="hidden" name="action" value="alter" />'.PHP_EOL; |
||
404 | echo '<input type="hidden" name="table" value="', htmlspecialchars($_REQUEST['table']), '" />'.PHP_EOL; |
||
405 | echo $misc->form; |
||
406 | echo "<input type=\"submit\" name=\"alter\" value=\"{$this->lang['stralter']}\" />".PHP_EOL; |
||
407 | echo "<input type=\"submit\" name=\"cancel\" value=\"{$this->lang['strcancel']}\" /></p>".PHP_EOL; |
||
408 | echo '</form>'.PHP_EOL; |
||
409 | } else { |
||
410 | echo "<p>{$this->lang['strnodata']}</p>".PHP_EOL; |
||
411 | } |
||
412 | } |
||
413 | |||
414 | public function doExport($msg = '') |
||
439 | } |
||
440 | |||
441 | public function doImport($msg = '') |
||
442 | { |
||
443 | $misc = $this->misc; |
||
444 | |||
445 | $this->printTrail('table'); |
||
446 | $this->printTabs('table', 'import'); |
||
447 | $this->printMsg($msg); |
||
448 | |||
449 | // Check that file uploads are enabled |
||
450 | if (!ini_get('file_uploads')) { |
||
451 | echo "<p>{$this->lang['strnouploads']}</p>".PHP_EOL; |
||
452 | |||
453 | return; |
||
454 | } |
||
455 | // Don't show upload option if max size of uploads is zero |
||
456 | $max_size = $misc->inisizeToBytes(ini_get('upload_max_filesize')); |
||
457 | if (is_double($max_size) && $max_size > 0) { |
||
458 | echo '<form action="'.\SUBFOLDER.'/src/views/dataimport" method="post" enctype="multipart/form-data">'.PHP_EOL; |
||
459 | echo '<table>'.PHP_EOL; |
||
460 | echo "\t<tr>\n\t\t<th class=\"data left required\">{$this->lang['strformat']}</th>".PHP_EOL; |
||
461 | echo "\t\t<td><select name=\"format\">".PHP_EOL; |
||
462 | echo "\t\t\t<option value=\"auto\">{$this->lang['strauto']}</option>".PHP_EOL; |
||
463 | echo "\t\t\t<option value=\"csv\">CSV</option>".PHP_EOL; |
||
464 | echo "\t\t\t<option value=\"tab\">{$this->lang['strtabbed']}</option>".PHP_EOL; |
||
465 | if (function_exists('xml_parser_create')) { |
||
466 | echo "\t\t\t<option value=\"xml\">XML</option>".PHP_EOL; |
||
467 | } |
||
468 | echo "\t\t</select></td>\n\t</tr>".PHP_EOL; |
||
469 | echo "\t<tr>\n\t\t<th class=\"data left required\">{$this->lang['strallowednulls']}</th>".PHP_EOL; |
||
470 | echo "\t\t<td><label><input type=\"checkbox\" name=\"allowednulls[0]\" value=\"\\N\" checked=\"checked\" />{$this->lang['strbackslashn']}</label><br />".PHP_EOL; |
||
471 | echo "\t\t<label><input type=\"checkbox\" name=\"allowednulls[1]\" value=\"NULL\" />NULL</label><br />".PHP_EOL; |
||
472 | echo "\t\t<label><input type=\"checkbox\" name=\"allowednulls[2]\" value=\"\" />{$this->lang['stremptystring']}</label></td>\n\t</tr>".PHP_EOL; |
||
473 | echo "\t<tr>\n\t\t<th class=\"data left required\">{$this->lang['strfile']}</th>".PHP_EOL; |
||
474 | echo "\t\t<td><input type=\"hidden\" name=\"MAX_FILE_SIZE\" value=\"{$max_size}\" />"; |
||
475 | echo "<input type=\"file\" name=\"source\" /></td>\n\t</tr>".PHP_EOL; |
||
476 | echo '</table>'.PHP_EOL; |
||
477 | echo '<p><input type="hidden" name="action" value="import" />'.PHP_EOL; |
||
478 | echo $misc->form; |
||
479 | echo '<input type="hidden" name="table" value="', htmlspecialchars($_REQUEST['table']), '" />'.PHP_EOL; |
||
480 | echo "<input type=\"submit\" value=\"{$this->lang['strimport']}\" /></p>".PHP_EOL; |
||
481 | echo '</form>'.PHP_EOL; |
||
482 | } |
||
483 | } |
||
484 | |||
485 | /** |
||
486 | * Displays a screen where they can add a column. |
||
487 | * |
||
488 | * @param mixed $msg |
||
489 | */ |
||
490 | public function doAddColumn($msg = '') |
||
491 | { |
||
492 | $misc = $this->misc; |
||
493 | $data = $misc->getDatabaseAccessor(); |
||
494 | |||
495 | $this->coalesceArr($_REQUEST, 'stage', 1); |
||
496 | |||
497 | switch ($_REQUEST['stage']) { |
||
498 | case 1: |
||
499 | // Set variable defaults |
||
500 | $this->coalesceArr($_POST, 'field', ''); |
||
501 | |||
502 | $this->coalesceArr($_POST, 'type', ''); |
||
503 | |||
504 | $this->coalesceArr($_POST, 'array', ''); |
||
505 | |||
506 | $this->coalesceArr($_POST, 'length', ''); |
||
507 | |||
508 | $this->coalesceArr($_POST, 'default', ''); |
||
509 | |||
510 | $this->coalesceArr($_POST, 'comment', ''); |
||
511 | |||
512 | // Fetch all available types |
||
513 | $types = $data->getTypes(true, false, true); |
||
514 | $types_for_js = []; |
||
515 | |||
516 | $this->printTrail('table'); |
||
517 | $this->printTitle($this->lang['straddcolumn'], 'pg.column.add'); |
||
518 | $this->printMsg($msg); |
||
519 | |||
520 | echo '<script src="'.\SUBFOLDER.'/assets/js/tables.js" type="text/javascript"></script>'; |
||
521 | echo '<form action="'.\SUBFOLDER.'/src/views/tblproperties" method="post">'.PHP_EOL; |
||
522 | |||
523 | // Output table header |
||
524 | echo '<table>'.PHP_EOL; |
||
525 | echo "<tr><th class=\"data required\">{$this->lang['strname']}</th>\n<th colspan=\"2\" class=\"data required\">{$this->lang['strtype']}</th>".PHP_EOL; |
||
526 | echo "<th class=\"data\">{$this->lang['strlength']}</th>".PHP_EOL; |
||
527 | if ($data->hasCreateFieldWithConstraints()) { |
||
528 | echo "<th class=\"data\">{$this->lang['strnotnull']}</th>\n<th class=\"data\">{$this->lang['strdefault']}</th>".PHP_EOL; |
||
529 | } |
||
530 | |||
531 | echo "<th class=\"data\">{$this->lang['strcomment']}</th></tr>".PHP_EOL; |
||
532 | |||
533 | echo "<tr><td><input name=\"field\" size=\"16\" maxlength=\"{$data->_maxNameLen}\" value=\"", |
||
534 | htmlspecialchars($_POST['field']), '" /></td>'.PHP_EOL; |
||
535 | echo "<td><select class=\"select2\" name=\"type\" id=\"type\" onchange=\"checkLengths(document.getElementById('type').value,'');\">".PHP_EOL; |
||
536 | // Output any "magic" types. This came in with the alter column type so we'll check that |
||
537 | if ($data->hasMagicTypes()) { |
||
538 | foreach ($data->extraTypes as $v) { |
||
539 | $types_for_js[] = strtolower($v); |
||
540 | echo "\t<option value=\"", htmlspecialchars($v), '"', |
||
541 | ($v == $_POST['type']) ? ' selected="selected"' : '', '>', |
||
542 | $misc->printVal($v), '</option>'.PHP_EOL; |
||
543 | } |
||
544 | } |
||
545 | while (!$types->EOF) { |
||
546 | $typname = $types->fields['typname']; |
||
547 | $types_for_js[] = $typname; |
||
548 | echo "\t<option value=\"", htmlspecialchars($typname), '"', ($typname == $_POST['type']) ? ' selected="selected"' : '', '>', |
||
549 | $misc->printVal($typname), '</option>'.PHP_EOL; |
||
550 | $types->moveNext(); |
||
551 | } |
||
552 | echo '</select></td>'.PHP_EOL; |
||
553 | |||
554 | // Output array type selector |
||
555 | echo '<td><select name="array">'.PHP_EOL; |
||
556 | echo "\t<option value=\"\"", ('' == $_POST['array']) ? ' selected="selected"' : '', '></option>'.PHP_EOL; |
||
557 | echo "\t<option value=\"[]\"", ('[]' == $_POST['array']) ? ' selected="selected"' : '', '>[ ]</option>'.PHP_EOL; |
||
558 | echo '</select></td>'.PHP_EOL; |
||
559 | $predefined_size_types = array_intersect($data->predefined_size_types, $types_for_js); |
||
560 | $escaped_predef_types = []; // the JS escaped array elements |
||
561 | foreach ($predefined_size_types as $value) { |
||
562 | $escaped_predef_types[] = "'{$value}'"; |
||
563 | } |
||
564 | |||
565 | echo '<td><input name="length" id="lengths" size="8" value="', |
||
566 | htmlspecialchars($_POST['length']), '" /></td>'.PHP_EOL; |
||
567 | // Support for adding column with not null and default |
||
568 | if ($data->hasCreateFieldWithConstraints()) { |
||
569 | echo '<td><input type="checkbox" name="notnull"', |
||
570 | (isset($_REQUEST['notnull'])) ? ' checked="checked"' : '', ' /></td>'.PHP_EOL; |
||
571 | echo '<td><input name="default" size="20" value="', |
||
572 | htmlspecialchars($_POST['default']), '" /></td>'.PHP_EOL; |
||
573 | } |
||
574 | echo '<td><input name="comment" size="40" value="', |
||
575 | htmlspecialchars($_POST['comment']), '" /></td></tr>'.PHP_EOL; |
||
576 | echo '</table>'.PHP_EOL; |
||
577 | echo '<p><input type="hidden" name="action" value="add_column" />'.PHP_EOL; |
||
578 | echo '<input type="hidden" name="stage" value="2" />'.PHP_EOL; |
||
579 | echo $misc->form; |
||
580 | echo '<input type="hidden" name="table" value="', htmlspecialchars($_REQUEST['table']), '" />'.PHP_EOL; |
||
581 | if (!$data->hasCreateFieldWithConstraints()) { |
||
582 | echo '<input type="hidden" name="default" value="" />'.PHP_EOL; |
||
583 | } |
||
584 | echo "<input type=\"submit\" value=\"{$this->lang['stradd']}\" />".PHP_EOL; |
||
585 | echo "<input type=\"submit\" name=\"cancel\" value=\"{$this->lang['strcancel']}\" /></p>".PHP_EOL; |
||
586 | echo '</form>'.PHP_EOL; |
||
587 | echo '<script type="text/javascript">predefined_lengths = new Array('.implode(',', $escaped_predef_types).");checkLengths(document.getElementById('type').value,'');</script>".PHP_EOL; |
||
588 | |||
589 | break; |
||
590 | case 2: |
||
591 | // Check inputs |
||
592 | if ('' == trim($_POST['field'])) { |
||
593 | $_REQUEST['stage'] = 1; |
||
594 | $this->doAddColumn($this->lang['strcolneedsname']); |
||
595 | |||
596 | return; |
||
597 | } |
||
598 | $this->coalesceArr($_POST, 'length', ''); |
||
599 | |||
600 | list($status, $sql) = $data->addColumn( |
||
601 | $_POST['table'], |
||
602 | $_POST['field'], |
||
603 | $_POST['type'], |
||
604 | '' != $_POST['array'], |
||
605 | $_POST['length'], |
||
606 | isset($_POST['notnull']), |
||
607 | $_POST['default'], |
||
608 | $_POST['comment'] |
||
609 | ); |
||
610 | if (0 == $status) { |
||
611 | $misc->setReloadBrowser(true); |
||
612 | $this->doDefault(sprintf('%s %s %s', $sql, PHP_EOL, $this->lang['strcolumnadded'])); |
||
613 | } else { |
||
614 | $_REQUEST['stage'] = 1; |
||
615 | $this->doAddColumn($this->lang['strcolumnaddedbad']); |
||
616 | |||
617 | return; |
||
618 | } |
||
619 | |||
620 | break; |
||
621 | default: |
||
622 | echo "<p>{$this->lang['strinvalidparam']}</p>".PHP_EOL; |
||
623 | } |
||
624 | } |
||
625 | |||
626 | /** |
||
627 | * Show confirmation of drop column and perform actual drop. |
||
628 | * |
||
629 | * @param bool $confirm true to ask for confirmation, false to actually drop |
||
630 | */ |
||
631 | public function doDrop($confirm = true) |
||
632 | { |
||
633 | $misc = $this->misc; |
||
634 | $data = $misc->getDatabaseAccessor(); |
||
635 | |||
636 | if ($confirm) { |
||
637 | $this->printTrail('column'); |
||
638 | $this->printTitle($this->lang['strdrop'], 'pg.column.drop'); |
||
639 | |||
640 | echo '<p>'.sprintf($this->lang['strconfdropcolumn'], $misc->printVal($_REQUEST['column']), $misc->printVal($_REQUEST['table'])).'</p>'.PHP_EOL; |
||
641 | |||
642 | echo '<form action="'.\SUBFOLDER.'/src/views/tblproperties" method="post">'.PHP_EOL; |
||
643 | echo '<input type="hidden" name="action" value="drop" />'.PHP_EOL; |
||
644 | echo '<input type="hidden" name="table" value="', htmlspecialchars($_REQUEST['table']), '" />'.PHP_EOL; |
||
645 | echo '<input type="hidden" name="column" value="', htmlspecialchars($_REQUEST['column']), '" />'.PHP_EOL; |
||
646 | echo $misc->form; |
||
647 | echo "<p><input type=\"checkbox\" id=\"cascade\" name=\"cascade\"> <label for=\"cascade\">{$this->lang['strcascade']}</label></p>".PHP_EOL; |
||
648 | echo "<input type=\"submit\" name=\"drop\" value=\"{$this->lang['strdrop']}\" />".PHP_EOL; |
||
649 | echo "<input type=\"submit\" name=\"cancel\" value=\"{$this->lang['strcancel']}\" />".PHP_EOL; |
||
650 | echo '</form>'.PHP_EOL; |
||
651 | } else { |
||
652 | list($status, $sql) = $data->dropColumn($_POST['table'], $_POST['column'], isset($_POST['cascade'])); |
||
653 | if (0 == $status) { |
||
654 | $misc->setReloadBrowser(true); |
||
655 | $this->doDefault(sprintf('%s %s %s', $sql, PHP_EOL, $this->lang['strcolumndropped'])); |
||
656 | } else { |
||
657 | $this->doDefault($this->lang['strcolumndroppedbad']); |
||
658 | } |
||
659 | } |
||
660 | } |
||
661 | |||
662 | private function _getAttPre($data) |
||
663 | { |
||
664 | $attPre = function (&$rowdata, $actions) use ($data) { |
||
665 | $rowdata->fields['+type'] = $data->formatType($rowdata->fields['type'], $rowdata->fields['atttypmod']); |
||
666 | $attname = $rowdata->fields['attname']; |
||
667 | $table = $_REQUEST['table']; |
||
668 | $data->fieldClean($attname); |
||
669 | $data->fieldClean($table); |
||
670 | |||
671 | $actions['browse']['attr']['href']['urlvars']['query'] = "SELECT \"{$attname}\", count(*) AS \"count\" |
||
672 | FROM \"{$table}\" GROUP BY \"{$attname}\" ORDER BY \"{$attname}\""; |
||
673 | |||
674 | return $actions; |
||
675 | }; |
||
676 | |||
677 | return $attPre; |
||
678 | } |
||
679 | |||
680 | private function _getCstrRender($misc, $data) |
||
681 | { |
||
682 | $cstrRender = function ($s, $p) use ($misc, $data) { |
||
683 | $str = ''; |
||
684 | foreach ($p['keys'] as $k => $c) { |
||
685 | if (is_null($p['keys'][$k]['consrc'])) { |
||
686 | $atts = $data->getAttributeNames($_REQUEST['table'], explode(' ', $p['keys'][$k]['indkey'])); |
||
687 | $c['consrc'] = ('u' == $c['contype'] ? 'UNIQUE (' : 'PRIMARY KEY (').join(',', $atts).')'; |
||
688 | } |
||
689 | |||
690 | if ($c['p_field'] == $s) { |
||
691 | switch ($c['contype']) { |
||
692 | case 'p': |
||
693 | $str .= '<a href="constraints?'.$misc->href.'&table='.urlencode($c['p_table']).'&schema='.urlencode($c['p_schema']).'"><img src="'. |
||
694 | $misc->icon('PrimaryKey').'" alt="[pk]" title="'.htmlentities($c['consrc'], ENT_QUOTES, 'UTF-8').'" /></a>'; |
||
695 | |||
696 | break; |
||
697 | case 'f': |
||
698 | $str .= '<a href="tblproperties?'.$misc->href.'&table='.urlencode($c['f_table']).'&schema='.urlencode($c['f_schema']).'"><img src="'. |
||
699 | $misc->icon('ForeignKey').'" alt="[fk]" title="'.htmlentities($c['consrc'], ENT_QUOTES, 'UTF-8').'" /></a>'; |
||
700 | |||
701 | break; |
||
702 | case 'u': |
||
703 | $str .= '<a href="constraints?'.$misc->href.'&table='.urlencode($c['p_table']).'&schema='.urlencode($c['p_schema']).'"><img src="'. |
||
704 | $misc->icon('UniqueConstraint').'" alt="[uniq]" title="'.htmlentities($c['consrc'], ENT_QUOTES, 'UTF-8').'" /></a>'; |
||
705 | |||
706 | break; |
||
707 | case 'c': |
||
708 | $str .= '<a href="constraints?'.$misc->href.'&table='.urlencode($c['p_table']).'&schema='.urlencode($c['p_schema']).'"><img src="'. |
||
709 | $misc->icon('CheckConstraint').'" alt="[check]" title="'.htmlentities($c['consrc'], ENT_QUOTES, 'UTF-8').'" /></a>'; |
||
710 | } |
||
711 | } |
||
712 | } |
||
713 | |||
714 | return $str; |
||
715 | }; |
||
716 | |||
717 | return $cstrRender; |
||
718 | } |
||
719 | |||
720 | private function _printTable($ck, $attrs) |
||
829 | } |
||
830 | } |
||
831 |