Total Complexity | 74 |
Total Lines | 884 |
Duplicated Lines | 0 % |
Changes | 3 | ||
Bugs | 0 | Features | 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 |
||
14 | class TblpropertiesController extends BaseController |
||
15 | { |
||
16 | use \PHPPgAdmin\Traits\ExportTrait; |
||
|
|||
17 | |||
18 | public $controller_title = 'strtables'; |
||
19 | |||
20 | /** |
||
21 | * Default method to render the controller according to the action parameter. |
||
22 | */ |
||
23 | public function render() |
||
24 | { |
||
25 | if ('tree' === $this->action) { |
||
26 | return $this->doTree(); |
||
27 | } |
||
28 | |||
29 | $header_template = 'header.twig'; |
||
30 | |||
31 | \ob_start(); |
||
32 | |||
33 | switch ($this->action) { |
||
34 | case 'alter': |
||
35 | if (null !== $this->getPostParam('alter')) { |
||
36 | $this->doSaveAlter(); |
||
37 | } else { |
||
38 | $this->doDefault(); |
||
39 | } |
||
40 | |||
41 | break; |
||
42 | case 'confirm_alter': |
||
43 | $this->doAlter(); |
||
44 | |||
45 | break; |
||
46 | case 'import': |
||
47 | $this->doImport(); |
||
48 | |||
49 | break; |
||
50 | case 'export': |
||
51 | $this->doExport(); |
||
52 | |||
53 | break; |
||
54 | case 'add_column': |
||
55 | if (null !== $this->getPostParam('cancel')) { |
||
56 | $this->doDefault(); |
||
57 | } else { |
||
58 | $header_template = 'header_select2.twig'; |
||
59 | $this->doAddColumn(); |
||
60 | } |
||
61 | |||
62 | break; |
||
63 | /*case 'properties': |
||
64 | if($this->getPostParam('cancel')!==null){ |
||
65 | $this->doDefault(); |
||
66 | } else { |
||
67 | $this->doProperties(); |
||
68 | }*/ |
||
69 | |||
70 | break; |
||
71 | case 'drop': |
||
72 | if (null !== $this->getPostParam('drop')) { |
||
73 | $this->doDrop(false); |
||
74 | } else { |
||
75 | $this->doDefault(); |
||
76 | } |
||
77 | |||
78 | break; |
||
79 | case 'confirm_drop': |
||
80 | $this->doDrop(true); |
||
81 | |||
82 | break; |
||
83 | |||
84 | default: |
||
85 | $this->doDefault(); |
||
86 | |||
87 | break; |
||
88 | } |
||
89 | |||
90 | $output = \ob_get_clean(); |
||
91 | |||
92 | $this->printHeader($this->headerTitle('', '', $_REQUEST['table']), null, true, $header_template); |
||
93 | $this->printBody(); |
||
94 | |||
95 | echo $output; |
||
96 | |||
97 | return $this->printFooter(); |
||
98 | } |
||
99 | |||
100 | /** |
||
101 | * Show default list of columns in the table. |
||
102 | * |
||
103 | * @param mixed $msg |
||
104 | */ |
||
105 | public function doDefault($msg = ''): void |
||
106 | { |
||
107 | $misc = $this->misc; |
||
108 | $this->data = $misc->getDatabaseAccessor(); |
||
109 | |||
110 | $this->printTrail('table'); |
||
111 | $this->printTabs('table', 'columns'); |
||
112 | $this->printMsg($msg); |
||
113 | |||
114 | // Get table |
||
115 | $tdata = $this->data->getTable($_REQUEST['table']); |
||
116 | // Get columns |
||
117 | $attrs = $this->data->getTableAttributes($_REQUEST['table']); |
||
118 | // Get constraints keys |
||
119 | $ck = $this->data->getConstraintsWithFields($_REQUEST['table']); |
||
120 | |||
121 | // Show comment if any |
||
122 | if (null !== $tdata->fields['relcomment']) { |
||
123 | echo '<p class="comment">', $misc->printVal($tdata->fields['relcomment']), '</p>' . \PHP_EOL; |
||
124 | } |
||
125 | $this->_printTable($ck, $attrs); |
||
126 | |||
127 | $navlinks = [ |
||
128 | 'browse' => [ |
||
129 | 'attr' => [ |
||
130 | 'href' => [ |
||
131 | 'url' => 'display', |
||
132 | 'urlvars' => [ |
||
133 | 'server' => $_REQUEST['server'], |
||
134 | 'database' => $_REQUEST['database'], |
||
135 | 'schema' => $_REQUEST['schema'], |
||
136 | 'table' => $_REQUEST['table'], |
||
137 | 'subject' => 'table', |
||
138 | 'return' => 'table', |
||
139 | ], |
||
140 | ], |
||
141 | ], |
||
142 | 'content' => $this->lang['strbrowse'], |
||
143 | ], |
||
144 | 'select' => [ |
||
145 | 'attr' => [ |
||
146 | 'href' => [ |
||
147 | 'url' => 'tables', |
||
148 | 'urlvars' => [ |
||
149 | 'action' => 'confselectrows', |
||
150 | 'server' => $_REQUEST['server'], |
||
151 | 'database' => $_REQUEST['database'], |
||
152 | 'schema' => $_REQUEST['schema'], |
||
153 | 'table' => $_REQUEST['table'], |
||
154 | ], |
||
155 | ], |
||
156 | ], |
||
157 | 'content' => $this->lang['strselect'], |
||
158 | ], |
||
159 | 'insert' => [ |
||
160 | 'attr' => [ |
||
161 | 'href' => [ |
||
162 | 'url' => 'tables', |
||
163 | 'urlvars' => [ |
||
164 | 'action' => 'confinsertrow', |
||
165 | 'server' => $_REQUEST['server'], |
||
166 | 'database' => $_REQUEST['database'], |
||
167 | 'schema' => $_REQUEST['schema'], |
||
168 | 'table' => $_REQUEST['table'], |
||
169 | ], |
||
170 | ], |
||
171 | ], |
||
172 | 'content' => $this->lang['strinsert'], |
||
173 | ], |
||
174 | 'empty' => [ |
||
175 | 'attr' => [ |
||
176 | 'href' => [ |
||
177 | 'url' => 'tables', |
||
178 | 'urlvars' => [ |
||
179 | 'action' => 'confirm_empty', |
||
180 | 'server' => $_REQUEST['server'], |
||
181 | 'database' => $_REQUEST['database'], |
||
182 | 'schema' => $_REQUEST['schema'], |
||
183 | 'table' => $_REQUEST['table'], |
||
184 | ], |
||
185 | ], |
||
186 | ], |
||
187 | 'content' => $this->lang['strempty'], |
||
188 | ], |
||
189 | 'drop' => [ |
||
190 | 'attr' => [ |
||
191 | 'href' => [ |
||
192 | 'url' => 'tables', |
||
193 | 'urlvars' => [ |
||
194 | 'action' => 'confirm_drop', |
||
195 | 'server' => $_REQUEST['server'], |
||
196 | 'database' => $_REQUEST['database'], |
||
197 | 'schema' => $_REQUEST['schema'], |
||
198 | 'table' => $_REQUEST['table'], |
||
199 | ], |
||
200 | ], |
||
201 | ], |
||
202 | 'content' => $this->lang['strdrop'], |
||
203 | ], |
||
204 | 'addcolumn' => [ |
||
205 | 'attr' => [ |
||
206 | 'href' => [ |
||
207 | 'url' => 'tblproperties', |
||
208 | 'urlvars' => [ |
||
209 | 'action' => 'add_column', |
||
210 | 'server' => $_REQUEST['server'], |
||
211 | 'database' => $_REQUEST['database'], |
||
212 | 'schema' => $_REQUEST['schema'], |
||
213 | 'table' => $_REQUEST['table'], |
||
214 | ], |
||
215 | ], |
||
216 | ], |
||
217 | 'content' => $this->lang['straddcolumn'], |
||
218 | ], |
||
219 | 'alter' => [ |
||
220 | 'attr' => [ |
||
221 | 'href' => [ |
||
222 | 'url' => 'tblproperties', |
||
223 | 'urlvars' => [ |
||
224 | 'action' => 'confirm_alter', |
||
225 | 'server' => $_REQUEST['server'], |
||
226 | 'database' => $_REQUEST['database'], |
||
227 | 'schema' => $_REQUEST['schema'], |
||
228 | 'table' => $_REQUEST['table'], |
||
229 | ], |
||
230 | ], |
||
231 | ], |
||
232 | 'content' => $this->lang['stralter'], |
||
233 | ], |
||
234 | ]; |
||
235 | $this->printNavLinks($navlinks, 'tblproperties-tblproperties', \get_defined_vars()); |
||
236 | } |
||
237 | |||
238 | public function doTree() |
||
276 | } |
||
277 | |||
278 | public function doSaveAlter(): void |
||
279 | { |
||
280 | $misc = $this->misc; |
||
281 | $data = $misc->getDatabaseAccessor(); |
||
282 | |||
283 | // For databases that don't allow owner change |
||
284 | $this->coalesceArr($_POST, 'owner', ''); |
||
285 | |||
286 | // Default tablespace to null if it isn't set |
||
287 | $this->coalesceArr($_POST, 'tablespace', null); |
||
288 | |||
289 | $this->coalesceArr($_POST, 'newschema', null); |
||
290 | $with_oids = (bool) ($this->getPostParam('with_oids', false)); |
||
291 | |||
292 | $status = $data->alterTable( |
||
293 | $this->getPostParam('table'), |
||
294 | $this->getPostParam('name'), |
||
295 | $this->getPostParam('owner'), |
||
296 | $this->getPostParam('newschema'), |
||
297 | $this->getPostParam('comment'), |
||
298 | $this->getPostParam('tablespace'), |
||
299 | $with_oids |
||
300 | ); |
||
301 | |||
302 | if (0 === $status) { |
||
303 | // If table has been renamed, need to change to the new name and |
||
304 | // reload the browser frame. |
||
305 | if ($_POST['table'] !== $_POST['name']) { |
||
306 | // Jump them to the new table name |
||
307 | $_REQUEST['table'] = $_POST['name']; |
||
308 | // Force a browser reload |
||
309 | $this->view->setReloadBrowser(true); |
||
310 | } |
||
311 | // If schema has changed, need to change to the new schema and reload the browser |
||
312 | if (!empty($_POST['newschema']) && ($_POST['newschema'] !== $data->_schema)) { |
||
313 | // Jump them to the new sequence schema |
||
314 | $misc->setCurrentSchema($_POST['newschema']); |
||
315 | $this->view->setReloadBrowser(true); |
||
316 | } |
||
317 | $this->doDefault($this->lang['strtablealtered']); |
||
318 | } else { |
||
319 | $this->doAlter($this->lang['strtablealteredbad']); |
||
320 | } |
||
321 | } |
||
322 | |||
323 | /** |
||
324 | * Function to allow altering of a table. |
||
325 | * |
||
326 | * @param mixed $msg |
||
327 | */ |
||
328 | public function doAlter($msg = ''): void |
||
329 | { |
||
330 | $misc = $this->misc; |
||
331 | $data = $misc->getDatabaseAccessor(); |
||
332 | |||
333 | $this->printTrail('table'); |
||
334 | $this->printTitle($this->lang['stralter'], 'pg.table.alter'); |
||
335 | $this->printMsg($msg); |
||
336 | |||
337 | // Fetch table info |
||
338 | $table = $data->getTable($_REQUEST['table']); |
||
339 | // Fetch all users |
||
340 | $users = $data->getUsers(); |
||
341 | $tablespaces = null; |
||
342 | // Fetch all tablespaces from the database |
||
343 | if ($data->hasTablespaces()) { |
||
344 | $tablespaces = $data->getTablespaces(true); |
||
345 | } |
||
346 | |||
347 | if (0 < $table->recordCount()) { |
||
348 | $this->coalesceArr($_POST, 'name', $table->fields['relname']); |
||
349 | |||
350 | $this->coalesceArr($_POST, 'owner', $table->fields['relowner']); |
||
351 | |||
352 | $this->coalesceArr($_POST, 'newschema', $table->fields['nspname']); |
||
353 | |||
354 | $this->coalesceArr($_POST, 'comment', $table->fields['relcomment']); |
||
355 | |||
356 | if ($data->hasTablespaces() && !isset($_POST['tablespace'])) { |
||
357 | $_POST['tablespace'] = $table->fields['tablespace']; |
||
358 | } |
||
359 | |||
360 | echo '<form action="' . \containerInstance()->subFolder . '/src/views/tblproperties" method="post">' . \PHP_EOL; |
||
361 | echo '<table>' . \PHP_EOL; |
||
362 | echo "<tr><th class=\"data left required\">{$this->lang['strname']}</th>" . \PHP_EOL; |
||
363 | echo '<td class="data1">'; |
||
364 | echo "<input name=\"name\" size=\"32\" maxlength=\"{$data->_maxNameLen}\" value=\"", |
||
365 | \htmlspecialchars($_POST['name'], \ENT_QUOTES), |
||
366 | '" /></td></tr>' . \PHP_EOL; |
||
367 | |||
368 | if ($data->isSuperUser()) { |
||
369 | echo "<tr><th class=\"data left required\">{$this->lang['strowner']}</th>" . \PHP_EOL; |
||
370 | echo '<td class="data1"><select name="owner">'; |
||
371 | |||
372 | while (!$users->EOF) { |
||
373 | $uname = $users->fields['usename']; |
||
374 | echo '<option value="', \htmlspecialchars($uname), '"', |
||
375 | ($uname === $_POST['owner']) ? ' selected="selected"' : '', |
||
376 | '>', |
||
377 | \htmlspecialchars($uname), |
||
378 | '</option>' . \PHP_EOL; |
||
379 | $users->moveNext(); |
||
380 | } |
||
381 | echo '</select></td></tr>' . \PHP_EOL; |
||
382 | } |
||
383 | |||
384 | if ($data->hasAlterTableSchema()) { |
||
385 | $schemas = $data->getSchemas(); |
||
386 | echo "<tr><th class=\"data left required\">{$this->lang['strschema']}</th>" . \PHP_EOL; |
||
387 | echo '<td class="data1"><select name="newschema">'; |
||
388 | |||
389 | while (!$schemas->EOF) { |
||
390 | $schema = $schemas->fields['nspname']; |
||
391 | echo '<option value="', \htmlspecialchars($schema), '"', |
||
392 | ($schema === $_POST['newschema']) ? ' selected="selected"' : '', |
||
393 | '>', |
||
394 | \htmlspecialchars($schema), |
||
395 | '</option>' . \PHP_EOL; |
||
396 | $schemas->moveNext(); |
||
397 | } |
||
398 | echo '</select></td></tr>' . \PHP_EOL; |
||
399 | } |
||
400 | |||
401 | // Tablespace (if there are any) |
||
402 | if ($data->hasTablespaces() && 0 < $tablespaces->recordCount()) { |
||
403 | echo "\t<tr>\n\t\t<th class=\"data left\">{$this->lang['strtablespace']}</th>" . \PHP_EOL; |
||
404 | echo "\t\t<td class=\"data1\">\n\t\t\t<select name=\"tablespace\">" . \PHP_EOL; |
||
405 | // Always offer the default (empty) option |
||
406 | echo "\t\t\t\t<option value=\"\"", |
||
407 | ('' === $_POST['tablespace']) ? ' selected="selected"' : '', |
||
408 | '></option>' . \PHP_EOL; |
||
409 | // Display all other tablespaces |
||
410 | while (!$tablespaces->EOF) { |
||
411 | $spcname = \htmlspecialchars($tablespaces->fields['spcname']); |
||
412 | echo "\t\t\t\t<option value=\"{$spcname}\"", |
||
413 | ($spcname === $_POST['tablespace']) ? ' selected="selected"' : '', |
||
414 | ">{$spcname}</option>" . \PHP_EOL; |
||
415 | $tablespaces->moveNext(); |
||
416 | } |
||
417 | echo "\t\t\t</select>\n\t\t</td>\n\t</tr>" . \PHP_EOL; |
||
418 | } |
||
419 | echo '<tr><th class="data left"> </th>' . \PHP_EOL; |
||
420 | echo '<td class="data1">'; |
||
421 | echo \sprintf('<input type="checkbox" name="with_oids" value="1" %s /> %s', $data->hasObjectID($table->fields['relname']) ? 'checked' : '', ' WITH OIDS'); |
||
422 | |||
423 | echo '</td></tr>'; |
||
424 | |||
425 | echo "<tr><th class=\"data left\">{$this->lang['strcomment']}</th>" . \PHP_EOL; |
||
426 | echo '<td class="data1">'; |
||
427 | echo \sprintf('<textarea rows="3" cols="62" name="comment">%s</textarea>', \htmlspecialchars($_POST['comment'])); |
||
428 | echo \sprintf('</td></tr>%s</table>%s', \PHP_EOL, \PHP_EOL); |
||
429 | echo '<p><input type="hidden" name="action" value="alter" />' . \PHP_EOL; |
||
430 | echo \sprintf('<input type="hidden" name="table" value="%s" />%s', \htmlspecialchars($_REQUEST['table']), \PHP_EOL); |
||
431 | |||
432 | echo $this->view->form; |
||
433 | echo "<input type=\"submit\" name=\"alter\" value=\"{$this->lang['stralter']}\" />" . \PHP_EOL; |
||
434 | echo \sprintf('<input type="submit" name="cancel" value="%s" /></p>%s', $this->lang['strcancel'], \PHP_EOL); |
||
435 | echo '</form>' . \PHP_EOL; |
||
436 | } else { |
||
437 | echo "<p>{$this->lang['strnodata']}</p>" . \PHP_EOL; |
||
438 | } |
||
439 | } |
||
440 | |||
441 | public function doExport($msg = ''): void |
||
465 | } |
||
466 | |||
467 | public function doImport($msg = ''): void |
||
510 | } |
||
511 | } |
||
512 | |||
513 | /** |
||
514 | * Displays a screen where they can add a column. |
||
515 | * |
||
516 | * @param mixed $msg |
||
517 | */ |
||
518 | public function doAddColumn($msg = ''): void |
||
519 | { |
||
520 | $misc = $this->misc; |
||
521 | $data = $misc->getDatabaseAccessor(); |
||
522 | |||
523 | $this->coalesceArr($_REQUEST, 'stage', 1); |
||
524 | |||
525 | switch ($_REQUEST['stage']) { |
||
526 | case 1: |
||
527 | // Set variable defaults |
||
528 | $this->coalesceArr($_POST, 'field', ''); |
||
529 | |||
530 | $this->coalesceArr($_POST, 'type', ''); |
||
531 | |||
532 | $this->coalesceArr($_POST, 'array', ''); |
||
533 | |||
534 | $this->coalesceArr($_POST, 'length', ''); |
||
535 | |||
536 | $this->coalesceArr($_POST, 'default', ''); |
||
537 | |||
538 | $this->coalesceArr($_POST, 'comment', ''); |
||
539 | |||
540 | // Fetch all available types |
||
541 | $types = $data->getTypes(true, false, true); |
||
542 | $types_for_js = []; |
||
543 | |||
544 | $this->printTrail('table'); |
||
545 | $this->printTitle($this->lang['straddcolumn'], 'pg.column.add'); |
||
546 | $this->printMsg($msg); |
||
547 | |||
548 | echo '<script src="' . \containerInstance()->subFolder . '/assets/js/tables.js" type="text/javascript"></script>'; |
||
549 | echo '<form action="' . \containerInstance()->subFolder . '/src/views/tblproperties" method="post">' . \PHP_EOL; |
||
550 | |||
551 | // Output table header |
||
552 | echo '<table>' . \PHP_EOL; |
||
553 | echo "<tr><th class=\"data required\">{$this->lang['strname']}</th>\n<th colspan=\"2\" class=\"data required\">{$this->lang['strtype']}</th>" . \PHP_EOL; |
||
554 | echo "<th class=\"data\">{$this->lang['strlength']}</th>" . \PHP_EOL; |
||
555 | |||
556 | if ($data->hasCreateFieldWithConstraints()) { |
||
557 | echo "<th class=\"data\">{$this->lang['strnotnull']}</th>\n<th class=\"data\">{$this->lang['strdefault']}</th>" . \PHP_EOL; |
||
558 | } |
||
559 | |||
560 | echo "<th class=\"data\">{$this->lang['strcomment']}</th></tr>" . \PHP_EOL; |
||
561 | |||
562 | echo "<tr><td><input name=\"field\" size=\"16\" maxlength=\"{$data->_maxNameLen}\" value=\"", |
||
563 | \htmlspecialchars($_POST['field']), |
||
564 | '" /></td>' . \PHP_EOL; |
||
565 | echo "<td><select class=\"select2\" name=\"type\" id=\"type\" onchange=\"checkLengths(document.getElementById('type').value,'');\">" . \PHP_EOL; |
||
566 | // Output any "magic" types. This came in with the alter column type so we'll check that |
||
567 | if ($data->hasMagicTypes()) { |
||
568 | foreach ($data->extraTypes as $v) { |
||
569 | $types_for_js[] = \mb_strtolower($v); |
||
570 | echo "\t<option value=\"", \htmlspecialchars($v), '"', |
||
571 | ($v === $_POST['type']) ? ' selected="selected"' : '', |
||
572 | '>', |
||
573 | $misc->printVal($v), |
||
574 | '</option>' . \PHP_EOL; |
||
575 | } |
||
576 | } |
||
577 | |||
578 | while (!$types->EOF) { |
||
579 | $typname = $types->fields['typname']; |
||
580 | $types_for_js[] = $typname; |
||
581 | echo "\t<option value=\"", \htmlspecialchars($typname), '"', ($typname === $_POST['type']) ? ' selected="selected"' : '', '>', |
||
582 | $misc->printVal($typname), |
||
583 | '</option>' . \PHP_EOL; |
||
584 | $types->moveNext(); |
||
585 | } |
||
586 | echo '</select></td>' . \PHP_EOL; |
||
587 | |||
588 | // Output array type selector |
||
589 | echo '<td><select name="array">' . \PHP_EOL; |
||
590 | echo "\t<option value=\"\"", ('' === $_POST['array']) ? ' selected="selected"' : '', '></option>' . \PHP_EOL; |
||
591 | echo "\t<option value=\"[]\"", ('[]' === $_POST['array']) ? ' selected="selected"' : '', '>[ ]</option>' . \PHP_EOL; |
||
592 | echo '</select></td>' . \PHP_EOL; |
||
593 | $predefined_size_types = \array_intersect($data->predefined_size_types, $types_for_js); |
||
594 | $escaped_predef_types = []; // the JS escaped array elements |
||
595 | |||
596 | foreach ($predefined_size_types as $value) { |
||
597 | $escaped_predef_types[] = "'{$value}'"; |
||
598 | } |
||
599 | |||
600 | echo '<td><input name="length" id="lengths" size="8" value="', |
||
601 | \htmlspecialchars($_POST['length']), |
||
602 | '" /></td>' . \PHP_EOL; |
||
603 | // Support for adding column with not null and default |
||
604 | if ($data->hasCreateFieldWithConstraints()) { |
||
605 | echo '<td><input type="checkbox" name="notnull"', |
||
606 | (isset($_REQUEST['notnull'])) ? ' checked="checked"' : '', |
||
607 | ' /></td>' . \PHP_EOL; |
||
608 | echo '<td><input name="default" size="20" value="', |
||
609 | \htmlspecialchars($_POST['default']), |
||
610 | '" /></td>' . \PHP_EOL; |
||
611 | } |
||
612 | echo '<td><input name="comment" size="40" value="', |
||
613 | \htmlspecialchars($_POST['comment']), |
||
614 | '" /></td></tr>' . \PHP_EOL; |
||
615 | echo '</table>' . \PHP_EOL; |
||
616 | echo '<p><input type="hidden" name="action" value="add_column" />' . \PHP_EOL; |
||
617 | echo '<input type="hidden" name="stage" value="2" />' . \PHP_EOL; |
||
618 | echo $this->view->form; |
||
619 | echo \sprintf('<input type="hidden" name="table" value="%s" />%s', \htmlspecialchars($_REQUEST['table']), \PHP_EOL); |
||
620 | |||
621 | if (!$data->hasCreateFieldWithConstraints()) { |
||
622 | echo '<input type="hidden" name="default" value="" />' . \PHP_EOL; |
||
623 | } |
||
624 | echo "<input type=\"submit\" value=\"{$this->lang['stradd']}\" />" . \PHP_EOL; |
||
625 | echo \sprintf('<input type="submit" name="cancel" value="%s" /></p>%s', $this->lang['strcancel'], \PHP_EOL); |
||
626 | echo '</form>' . \PHP_EOL; |
||
627 | echo '<script type="text/javascript">predefined_lengths = new Array(' . \implode(',', $escaped_predef_types) . ");checkLengths(document.getElementById('type').value,'');</script>" . \PHP_EOL; |
||
628 | |||
629 | break; |
||
630 | case 2: |
||
631 | // Check inputs |
||
632 | if ('' === \trim($_POST['field'])) { |
||
633 | $_REQUEST['stage'] = 1; |
||
634 | $this->doAddColumn($this->lang['strcolneedsname']); |
||
635 | |||
636 | return; |
||
637 | } |
||
638 | $this->coalesceArr($_POST, 'length', ''); |
||
639 | |||
640 | [$status, $sql] = $data->addColumn( |
||
641 | $_POST['table'], |
||
642 | $_POST['field'], |
||
643 | $_POST['type'], |
||
644 | '' !== $_POST['array'], |
||
645 | $_POST['length'], |
||
646 | isset($_POST['notnull']), |
||
647 | $_POST['default'], |
||
648 | $_POST['comment'] |
||
649 | ); |
||
650 | |||
651 | if (0 === $status) { |
||
652 | $this->view->setReloadBrowser(true); |
||
653 | $this->doDefault(\sprintf('%s %s %s', $sql, \PHP_EOL, $this->lang['strcolumnadded'])); |
||
654 | } else { |
||
655 | $_REQUEST['stage'] = 1; |
||
656 | $this->doAddColumn($this->lang['strcolumnaddedbad']); |
||
657 | |||
658 | return; |
||
659 | } |
||
660 | |||
661 | break; |
||
662 | |||
663 | default: |
||
664 | echo "<p>{$this->lang['strinvalidparam']}</p>" . \PHP_EOL; |
||
665 | } |
||
666 | } |
||
667 | |||
668 | /** |
||
669 | * Show confirmation of drop column and perform actual drop. |
||
670 | * |
||
671 | * @param bool $confirm true to ask for confirmation, false to actually drop |
||
672 | */ |
||
673 | public function doDrop($confirm = true): void |
||
674 | { |
||
675 | $misc = $this->misc; |
||
676 | $data = $misc->getDatabaseAccessor(); |
||
677 | |||
678 | if ($confirm) { |
||
679 | $this->printTrail('column'); |
||
680 | $this->printTitle($this->lang['strdrop'], 'pg.column.drop'); |
||
681 | |||
682 | echo '<p>' . \sprintf($this->lang['strconfdropcolumn'], $misc->printVal($_REQUEST['column']), $misc->printVal($_REQUEST['table'])) . '</p>' . \PHP_EOL; |
||
683 | |||
684 | echo '<form action="' . \containerInstance()->subFolder . '/src/views/tblproperties" method="post">' . \PHP_EOL; |
||
685 | echo '<input type="hidden" name="action" value="drop" />' . \PHP_EOL; |
||
686 | echo \sprintf('<input type="hidden" name="table" value="%s" />%s', \htmlspecialchars($_REQUEST['table']), \PHP_EOL); |
||
687 | echo '<input type="hidden" name="column" value="', \htmlspecialchars($_REQUEST['column']), '" />' . \PHP_EOL; |
||
688 | echo $this->view->form; |
||
689 | echo "<p><input type=\"checkbox\" id=\"cascade\" name=\"cascade\"> <label for=\"cascade\">{$this->lang['strcascade']}</label></p>" . \PHP_EOL; |
||
690 | echo "<input type=\"submit\" name=\"drop\" value=\"{$this->lang['strdrop']}\" />" . \PHP_EOL; |
||
691 | echo "<input type=\"submit\" name=\"cancel\" value=\"{$this->lang['strcancel']}\" />" . \PHP_EOL; |
||
692 | echo '</form>' . \PHP_EOL; |
||
693 | } else { |
||
694 | [$status, $sql] = $data->dropColumn($_POST['table'], $_POST['column'], isset($_POST['cascade'])); |
||
695 | |||
696 | if (0 === $status) { |
||
697 | $this->view->setReloadBrowser(true); |
||
698 | $this->doDefault(\sprintf('%s %s %s', $sql, \PHP_EOL, $this->lang['strcolumndropped'])); |
||
699 | } else { |
||
700 | $this->doDefault($this->lang['strcolumndroppedbad']); |
||
701 | } |
||
702 | } |
||
703 | } |
||
704 | |||
705 | private function _getAttPre($data) |
||
706 | { |
||
707 | $attPre = static function (&$rowdata, $actions) use ($data) { |
||
708 | $rowdata->fields['+type'] = $data->formatType($rowdata->fields['type'], $rowdata->fields['atttypmod']); |
||
709 | $attname = $rowdata->fields['attname']; |
||
710 | $table = $_REQUEST['table']; |
||
711 | $data->fieldClean($attname); |
||
712 | $data->fieldClean($table); |
||
713 | |||
714 | $actions['browse']['attr']['href']['urlvars']['query'] = "SELECT \"{$attname}\", count(*) AS \"count\" |
||
715 | FROM \"{$table}\" GROUP BY \"{$attname}\" ORDER BY \"{$attname}\""; |
||
716 | |||
717 | return $actions; |
||
718 | }; |
||
719 | |||
720 | return $attPre; |
||
721 | } |
||
722 | |||
723 | private function _getCstrRender($misc, $data) |
||
724 | { |
||
725 | $view = $this->view; |
||
726 | $cstrRender = static function ($s, $p) use ($misc, $data, $view) { |
||
727 | $str = ''; |
||
728 | |||
729 | foreach ($p['keys'] as $k => $c) { |
||
730 | if (null === $p['keys'][$k]['consrc']) { |
||
731 | $atts = $data->getAttributeNames($_REQUEST['table'], \explode(' ', $p['keys'][$k]['indkey'])); |
||
732 | $c['consrc'] = ('u' === $c['contype'] ? 'UNIQUE (' : 'PRIMARY KEY (') . \implode(',', $atts) . ')'; |
||
733 | } |
||
734 | $consrc = \htmlentities($c['consrc'], \ENT_QUOTES, 'UTF-8'); |
||
735 | $table_key = 'p_table'; |
||
736 | $schema_key = 'p_schema'; |
||
737 | |||
738 | if ($c['p_field'] !== $s) { |
||
739 | continue; |
||
740 | } |
||
741 | |||
742 | switch ($c['contype']) { |
||
743 | case 'p': |
||
744 | $type = 'pk'; |
||
745 | |||
746 | $icon = 'PrimaryKey'; |
||
747 | |||
748 | break; |
||
749 | case 'f': |
||
750 | $table_key = 'f_table'; |
||
751 | $icon = 'ForeignKey'; |
||
752 | $schema_key = 'f_schema'; |
||
753 | $type = 'fk'; |
||
754 | |||
755 | break; |
||
756 | case 'u': |
||
757 | $type = 'uniq'; |
||
758 | |||
759 | $icon = 'UniqueConstraint'; |
||
760 | |||
761 | break; |
||
762 | case 'c': |
||
763 | $type = 'check'; |
||
764 | |||
765 | $icon = 'CheckConstraint'; |
||
766 | } |
||
767 | $str .= \sprintf( |
||
768 | '<a href="tblproperties?%s&table=%s&schema=%s">', |
||
769 | $misc->href, |
||
770 | \urlencode($c[$table_key]), |
||
771 | \urlencode($c[$schema_key]) |
||
772 | ); |
||
773 | |||
774 | $str .= \sprintf( |
||
775 | ' |
||
776 | <img src="%s" alt="[%s]" title="%s" /></a>', |
||
777 | $view->icon($icon), |
||
778 | $type, |
||
779 | $consrc |
||
780 | ); |
||
781 | } |
||
782 | |||
783 | return $str; |
||
784 | }; |
||
785 | |||
786 | return $cstrRender; |
||
787 | } |
||
788 | |||
789 | private function _printTable($ck, $attrs): void |
||
898 | } |
||
899 | } |
||
900 |