| Total Complexity | 153 |
| Total Lines | 1345 |
| Duplicated Lines | 0 % |
| Changes | 2 | ||
| Bugs | 0 | Features | 0 |
Complex classes like FunctionsController 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 FunctionsController, and based on these observations, apply Extract Interface, too.
| 1 | <?php |
||
| 14 | class FunctionsController extends BaseController |
||
| 15 | { |
||
| 16 | public $table_place = 'functions-functions'; |
||
| 17 | |||
| 18 | public $controller_title = 'strfunctions'; |
||
| 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_datatables.twig'; |
||
| 30 | $footer_template = 'footer.twig'; |
||
| 31 | \ob_start(); |
||
| 32 | |||
| 33 | switch ($this->action) { |
||
| 34 | case 'save_create': |
||
| 35 | if (null !== $this->getPostParam('cancel')) { |
||
| 36 | $this->doDefault(); |
||
| 37 | } else { |
||
| 38 | $this->doSaveCreate(); |
||
| 39 | } |
||
| 40 | |||
| 41 | break; |
||
| 42 | case 'create': |
||
| 43 | $header_template = 'header_select2.twig'; |
||
| 44 | $this->doCreate(); |
||
| 45 | |||
| 46 | break; |
||
| 47 | case 'drop': |
||
| 48 | if (null !== $this->getPostParam('drop')) { |
||
| 49 | $this->doDrop(false); |
||
| 50 | } else { |
||
| 51 | $this->doDefault(); |
||
| 52 | } |
||
| 53 | |||
| 54 | break; |
||
| 55 | case 'confirm_drop': |
||
| 56 | $this->doDrop(true); |
||
| 57 | |||
| 58 | break; |
||
| 59 | case 'save_edit': |
||
| 60 | if (null !== $this->getPostParam('cancel')) { |
||
| 61 | $this->doDefault(); |
||
| 62 | } else { |
||
| 63 | $this->doSaveEdit(); |
||
| 64 | } |
||
| 65 | |||
| 66 | break; |
||
| 67 | case 'edit': |
||
| 68 | $header_template = 'header_sqledit.twig'; |
||
| 69 | $footer_template = 'footer_sqledit.twig'; |
||
| 70 | $this->doEdit(); |
||
| 71 | |||
| 72 | break; |
||
| 73 | case 'properties': |
||
| 74 | $header_template = 'header_highlight.twig'; |
||
| 75 | $this->doProperties(); |
||
| 76 | |||
| 77 | break; |
||
| 78 | case 'show': |
||
| 79 | if (isset($_GET['function'], $_GET['function_oid'])) { |
||
| 80 | $header_template = 'header_highlight.twig'; |
||
| 81 | $this->showDefinition(); |
||
|
|
|||
| 82 | } else { |
||
| 83 | $this->doDefault(); |
||
| 84 | } |
||
| 85 | |||
| 86 | break; |
||
| 87 | |||
| 88 | default: |
||
| 89 | $this->doDefault(); |
||
| 90 | |||
| 91 | break; |
||
| 92 | } |
||
| 93 | $output = \ob_get_clean(); |
||
| 94 | |||
| 95 | $this->printHeader($this->headerTitle(), null, true, $header_template); |
||
| 96 | $this->printBody(); |
||
| 97 | echo $output; |
||
| 98 | $this->printFooter(true, $footer_template); |
||
| 99 | } |
||
| 100 | |||
| 101 | /** |
||
| 102 | * Show default list of functions in the database. |
||
| 103 | * |
||
| 104 | * @param mixed $msg |
||
| 105 | */ |
||
| 106 | public function doDefault($msg = ''): void |
||
| 107 | { |
||
| 108 | $data = $this->misc->getDatabaseAccessor(); |
||
| 109 | |||
| 110 | $this->printTrail('schema'); |
||
| 111 | $this->printTabs('schema', 'functions'); |
||
| 112 | $this->printMsg($msg); |
||
| 113 | |||
| 114 | $funcs = $data->getFunctions(); |
||
| 115 | |||
| 116 | $columns = [ |
||
| 117 | 'function' => [ |
||
| 118 | 'title' => $this->lang['strfunction'], |
||
| 119 | 'field' => Decorator::field('proproto'), |
||
| 120 | 'url' => \containerInstance()->subFolder . "/redirect/function?action=properties&{$this->misc->href}&", |
||
| 121 | 'vars' => ['function' => 'proproto', 'function_oid' => 'prooid'], |
||
| 122 | ], |
||
| 123 | 'returns' => [ |
||
| 124 | 'title' => $this->lang['strreturns'], |
||
| 125 | 'field' => Decorator::field('proreturns'), |
||
| 126 | ], |
||
| 127 | 'owner' => [ |
||
| 128 | 'title' => $this->lang['strowner'], |
||
| 129 | 'field' => Decorator::field('proowner'), |
||
| 130 | ], |
||
| 131 | 'proglanguage' => [ |
||
| 132 | 'title' => $this->lang['strproglanguage'], |
||
| 133 | 'field' => Decorator::field('prolanguage'), |
||
| 134 | ], |
||
| 135 | 'actions' => [ |
||
| 136 | 'title' => $this->lang['stractions'], |
||
| 137 | ], |
||
| 138 | 'comment' => [ |
||
| 139 | 'title' => $this->lang['strcomment'], |
||
| 140 | 'field' => Decorator::field('procomment'), |
||
| 141 | ], |
||
| 142 | ]; |
||
| 143 | |||
| 144 | $actions = [ |
||
| 145 | 'multiactions' => [ |
||
| 146 | 'keycols' => ['function' => 'proproto', 'function_oid' => 'prooid'], |
||
| 147 | 'url' => 'functions', |
||
| 148 | ], |
||
| 149 | 'alter' => [ |
||
| 150 | 'content' => $this->lang['stralter'], |
||
| 151 | 'attr' => [ |
||
| 152 | 'href' => [ |
||
| 153 | 'url' => 'functions', |
||
| 154 | 'urlvars' => [ |
||
| 155 | 'action' => 'edit', |
||
| 156 | 'function' => Decorator::field('proproto'), |
||
| 157 | 'function_oid' => Decorator::field('prooid'), |
||
| 158 | ], |
||
| 159 | ], |
||
| 160 | ], |
||
| 161 | ], |
||
| 162 | 'drop' => [ |
||
| 163 | 'multiaction' => 'confirm_drop', |
||
| 164 | 'content' => $this->lang['strdrop'], |
||
| 165 | 'attr' => [ |
||
| 166 | 'href' => [ |
||
| 167 | 'url' => 'functions', |
||
| 168 | 'urlvars' => [ |
||
| 169 | 'action' => 'confirm_drop', |
||
| 170 | 'function' => Decorator::field('proproto'), |
||
| 171 | 'function_oid' => Decorator::field('prooid'), |
||
| 172 | ], |
||
| 173 | ], |
||
| 174 | ], |
||
| 175 | ], |
||
| 176 | 'privileges' => [ |
||
| 177 | 'content' => $this->lang['strprivileges'], |
||
| 178 | 'attr' => [ |
||
| 179 | 'href' => [ |
||
| 180 | 'url' => 'privileges', |
||
| 181 | 'urlvars' => [ |
||
| 182 | 'subject' => 'function', |
||
| 183 | 'function' => Decorator::field('proproto'), |
||
| 184 | 'function_oid' => Decorator::field('prooid'), |
||
| 185 | ], |
||
| 186 | ], |
||
| 187 | ], |
||
| 188 | ], |
||
| 189 | ]; |
||
| 190 | |||
| 191 | echo $this->printTable($funcs, $columns, $actions, $this->table_place, $this->lang['strnofunctions']); |
||
| 192 | |||
| 193 | $this->_printNavLinks('functions-functions'); |
||
| 194 | } |
||
| 195 | |||
| 196 | /** |
||
| 197 | * Generate XML for the browser tree. |
||
| 198 | */ |
||
| 199 | public function doTree() |
||
| 200 | { |
||
| 201 | $data = $this->misc->getDatabaseAccessor(); |
||
| 202 | |||
| 203 | $funcs = $data->getFunctions(); |
||
| 204 | |||
| 205 | $proto = Decorator::concat(Decorator::field('proname'), ' (', Decorator::field('proarguments'), ')'); |
||
| 206 | |||
| 207 | $reqvars = $this->misc->getRequestVars('function'); |
||
| 208 | |||
| 209 | $attrs = [ |
||
| 210 | 'text' => $proto, |
||
| 211 | 'icon' => 'Function', |
||
| 212 | 'toolTip' => Decorator::field('procomment'), |
||
| 213 | 'action' => Decorator::redirecturl( |
||
| 214 | 'redirect', |
||
| 215 | $reqvars, |
||
| 216 | [ |
||
| 217 | 'action' => 'properties', |
||
| 218 | 'function' => $proto, |
||
| 219 | 'function_oid' => Decorator::field('prooid'), |
||
| 220 | ] |
||
| 221 | ), |
||
| 222 | ]; |
||
| 223 | |||
| 224 | return $this->printTree($funcs, $attrs, 'functions'); |
||
| 225 | } |
||
| 226 | |||
| 227 | /** |
||
| 228 | * Function to save after editing a function. |
||
| 229 | */ |
||
| 230 | public function doSaveEdit(): void |
||
| 231 | { |
||
| 232 | $data = $this->misc->getDatabaseAccessor(); |
||
| 233 | |||
| 234 | $fnlang = \mb_strtolower($_POST['original_lang']); |
||
| 235 | |||
| 236 | if ('c' === $fnlang) { |
||
| 237 | $def = [$_POST['formObjectFile'], $_POST['formLinkSymbol']]; |
||
| 238 | } elseif ('internal' === $fnlang) { |
||
| 239 | $def = $_POST['formLinkSymbol']; |
||
| 240 | } else { |
||
| 241 | $def = $_POST['formDefinition']; |
||
| 242 | } |
||
| 243 | |||
| 244 | if (!$data->hasFunctionAlterSchema()) { |
||
| 245 | $_POST['formFuncSchema'] = ''; |
||
| 246 | } |
||
| 247 | |||
| 248 | $status = $data->setFunction( |
||
| 249 | $_POST['original_function'], |
||
| 250 | $_POST['formFunction'], |
||
| 251 | $_POST['original_arguments'], |
||
| 252 | $_POST['original_returns'], |
||
| 253 | $def, |
||
| 254 | $_POST['original_lang'], |
||
| 255 | $_POST['formProperties'], |
||
| 256 | isset($_POST['original_setof']), |
||
| 257 | $_POST['original_owner'], |
||
| 258 | $_POST['formFuncOwn'], |
||
| 259 | $_POST['original_schema'], |
||
| 260 | $_POST['formFuncSchema'], |
||
| 261 | $_POST['formCost'] ?? null, |
||
| 262 | $_POST['formRows'] ?? 0, |
||
| 263 | $_POST['formComment'] |
||
| 264 | ); |
||
| 265 | |||
| 266 | if (0 === $status) { |
||
| 267 | // If function has had schema altered, need to change to the new schema |
||
| 268 | // and reload the browser frame. |
||
| 269 | if (!empty($_POST['formFuncSchema']) && ($_POST['formFuncSchema'] !== $_POST['original_schema'])) { |
||
| 270 | // Jump them to the new function schema |
||
| 271 | $this->misc->setCurrentSchema($_POST['formFuncSchema']); |
||
| 272 | // Force a browser reload |
||
| 273 | $this->view->setReloadBrowser(true); |
||
| 274 | } |
||
| 275 | $this->doProperties($this->lang['strfunctionupdated']); |
||
| 276 | } else { |
||
| 277 | $this->doEdit($this->lang['strfunctionupdatedbad']); |
||
| 278 | } |
||
| 279 | } |
||
| 280 | |||
| 281 | /** |
||
| 282 | * Function to allow editing of a Function. |
||
| 283 | * |
||
| 284 | * @param mixed $msg |
||
| 285 | */ |
||
| 286 | public function doEdit($msg = ''): void |
||
| 287 | { |
||
| 288 | $data = $this->misc->getDatabaseAccessor(); |
||
| 289 | |||
| 290 | $this->printTrail('function'); |
||
| 291 | $this->printTabs('function', 'definition'); |
||
| 292 | $this->printTitle($this->lang['stralter'], 'pg.function.alter'); |
||
| 293 | $this->printMsg($msg); |
||
| 294 | |||
| 295 | $fndata = $data->getFunction($_REQUEST['function_oid']); |
||
| 296 | |||
| 297 | if (0 >= $fndata->recordCount()) { |
||
| 298 | echo "<p>{$this->lang['strnodata']}</p>" . \PHP_EOL; |
||
| 299 | |||
| 300 | return; |
||
| 301 | } |
||
| 302 | $fndata->fields['proretset'] = $data->phpBool($fndata->fields['proretset']); |
||
| 303 | |||
| 304 | // Initialise variables |
||
| 305 | $_POST['formDefinition'] = $this->getPostParam('formDefinition', $fndata->fields['prosrc']); |
||
| 306 | |||
| 307 | $_POST['formProperties'] = $this->getPostParam('formProperties', $data->getFunctionProperties($fndata->fields)); |
||
| 308 | |||
| 309 | $_POST['formFunction'] = $this->getPostParam('formFunction', $fndata->fields['proname']); |
||
| 310 | |||
| 311 | $_POST['formComment'] = $this->getPostParam('formComment', $fndata->fields['procomment']); |
||
| 312 | |||
| 313 | $_POST['formObjectFile'] = $this->getPostParam('formObjectFile', $fndata->fields['probin']); |
||
| 314 | |||
| 315 | $_POST['formLinkSymbol'] = $this->getPostParam('formLinkSymbol', $fndata->fields['prosrc']); |
||
| 316 | |||
| 317 | $_POST['formFuncOwn'] = $this->getPostParam('formFuncOwn', $fndata->fields['proowner']); |
||
| 318 | |||
| 319 | $_POST['formFuncSchema'] = $this->getPostParam('formFuncSchema', $fndata->fields['proschema']); |
||
| 320 | |||
| 321 | if ($data->hasFunctionCosting()) { |
||
| 322 | $_POST['formCost'] = $this->getPostParam('formCost', $fndata->fields['procost']); |
||
| 323 | |||
| 324 | $_POST['formRows'] = $this->getPostParam('formRows', $fndata->fields['prorows']); |
||
| 325 | } |
||
| 326 | |||
| 327 | // Deal with named parameters |
||
| 328 | if ($data->hasNamedParams()) { |
||
| 329 | $args = $this->_getNamedParamsArgs($data, $fndata); |
||
| 330 | } else { |
||
| 331 | $args = $fndata->fields['proarguments']; |
||
| 332 | } |
||
| 333 | |||
| 334 | echo '<form action="' . \containerInstance()->subFolder . '/src/views/functions" method="post">' . \PHP_EOL; |
||
| 335 | echo '<table style="width: 95%">' . \PHP_EOL; |
||
| 336 | echo '<tr>' . \PHP_EOL; |
||
| 337 | echo "<th class=\"data required\">{$this->lang['strschema']}</th>" . \PHP_EOL; |
||
| 338 | echo "<th class=\"data required\">{$this->lang['strfunction']}</th>" . \PHP_EOL; |
||
| 339 | echo "<th class=\"data\">{$this->lang['strarguments']}</th>" . \PHP_EOL; |
||
| 340 | echo "<th class=\"data required\">{$this->lang['strreturns']}</th>" . \PHP_EOL; |
||
| 341 | echo "<th class=\"data required\">{$this->lang['strproglanguage']}</th>" . \PHP_EOL; |
||
| 342 | echo '</tr>' . \PHP_EOL; |
||
| 343 | |||
| 344 | echo '<tr>' . \PHP_EOL; |
||
| 345 | echo '<td class="data1">'; |
||
| 346 | echo '<input type="hidden" name="original_schema" value="', \htmlspecialchars($fndata->fields['proschema']), '" />' . \PHP_EOL; |
||
| 347 | |||
| 348 | if ($data->hasFunctionAlterSchema()) { |
||
| 349 | $schemas = $data->getSchemas(); |
||
| 350 | echo '<select name="formFuncSchema">'; |
||
| 351 | |||
| 352 | while (!$schemas->EOF) { |
||
| 353 | $schema = $schemas->fields['nspname']; |
||
| 354 | echo '<option value="', \htmlspecialchars($schema), '"', |
||
| 355 | ($schema === $_POST['formFuncSchema']) ? ' selected="selected"' : '', '>', \htmlspecialchars($schema), '</option>' . \PHP_EOL; |
||
| 356 | $schemas->moveNext(); |
||
| 357 | } |
||
| 358 | echo '</select>' . \PHP_EOL; |
||
| 359 | } else { |
||
| 360 | echo $fndata->fields['proschema']; |
||
| 361 | } |
||
| 362 | |||
| 363 | echo '</td>' . \PHP_EOL; |
||
| 364 | echo '<td class="data1">'; |
||
| 365 | echo '<input type="hidden" name="original_function" value="', \htmlspecialchars($fndata->fields['proname']), '" />' . \PHP_EOL; |
||
| 366 | echo "<input name=\"formFunction\" style=\"width: 100%; box-sizing: border-box;\" maxlength=\"{$data->_maxNameLen}\" value=\"", \htmlspecialchars($_POST['formFunction']), '" />'; |
||
| 367 | echo '</td>' . \PHP_EOL; |
||
| 368 | |||
| 369 | echo '<td class="data1">', $this->misc->printVal($args), \PHP_EOL; |
||
| 370 | echo '<input type="hidden" name="original_arguments" value="', \htmlspecialchars($args), '" />' . \PHP_EOL; |
||
| 371 | echo '</td>' . \PHP_EOL; |
||
| 372 | |||
| 373 | echo '<td class="data1">'; |
||
| 374 | |||
| 375 | if ($fndata->fields['proretset']) { |
||
| 376 | echo 'setof '; |
||
| 377 | } |
||
| 378 | |||
| 379 | echo $this->misc->printVal($fndata->fields['proresult']), \PHP_EOL; |
||
| 380 | echo '<input type="hidden" name="original_returns" value="', \htmlspecialchars($fndata->fields['proresult']), '" />' . \PHP_EOL; |
||
| 381 | |||
| 382 | if ($fndata->fields['proretset']) { |
||
| 383 | echo '<input type="hidden" name="original_setof" value="yes" />' . \PHP_EOL; |
||
| 384 | } |
||
| 385 | |||
| 386 | echo '</td>' . \PHP_EOL; |
||
| 387 | |||
| 388 | echo '<td class="data1">', $this->misc->printVal($fndata->fields['prolanguage']), \PHP_EOL; |
||
| 389 | echo '<input type="hidden" name="original_lang" value="', \htmlspecialchars($fndata->fields['prolanguage']), '" />' . \PHP_EOL; |
||
| 390 | echo '</td>' . \PHP_EOL; |
||
| 391 | echo '</tr>' . \PHP_EOL; |
||
| 392 | |||
| 393 | $fnlang = \mb_strtolower($fndata->fields['prolanguage']); |
||
| 394 | |||
| 395 | if ('c' === $fnlang) { |
||
| 396 | echo "<tr><th class=\"data required\" colspan=\"2\">{$this->lang['strobjectfile']}</th>" . \PHP_EOL; |
||
| 397 | echo "<th class=\"data\" colspan=\"2\">{$this->lang['strlinksymbol']}</th></tr>" . \PHP_EOL; |
||
| 398 | echo '<tr><td class="data1" colspan="2"><input type="text" name="formObjectFile" style="width:100%" value="', |
||
| 399 | \htmlspecialchars($_POST['formObjectFile']), '" /></td>' . \PHP_EOL; |
||
| 400 | echo '<td class="data1" colspan="2"><input type="text" name="formLinkSymbol" style="width:100%" value="', |
||
| 401 | \htmlspecialchars($_POST['formLinkSymbol']), '" /></td></tr>' . \PHP_EOL; |
||
| 402 | } elseif ('internal' === $fnlang) { |
||
| 403 | echo "<tr><th class=\"data\" colspan=\"5\">{$this->lang['strlinksymbol']}</th></tr>" . \PHP_EOL; |
||
| 404 | echo '<tr><td class="data1" colspan="5"><input type="text" name="formLinkSymbol" style="width:100%" value="', |
||
| 405 | \htmlspecialchars($_POST['formLinkSymbol']), '" /></td></tr>' . \PHP_EOL; |
||
| 406 | } else { |
||
| 407 | echo "<tr><th class=\"data required\" colspan=\"5\">{$this->lang['strdefinition']}</th></tr>" . \PHP_EOL; |
||
| 408 | echo '<tr><td class="data1" colspan="5">'; |
||
| 409 | $textarea_id = ('sql' === $fnlang || 'plpgsql' === $fnlang) ? 'query' : 'formDefinition'; |
||
| 410 | echo '<textarea style="width:100%;" rows="20" cols="50" id="' . $textarea_id . '" name="formDefinition">'; |
||
| 411 | echo \htmlspecialchars($_POST['formDefinition']); |
||
| 412 | echo '</textarea></td></tr>' . \PHP_EOL; |
||
| 413 | } |
||
| 414 | |||
| 415 | // Display function comment |
||
| 416 | echo "<tr><th class=\"data\" colspan=\"5\">{$this->lang['strcomment']}</th></tr>" . \PHP_EOL; |
||
| 417 | echo '<tr><td class="data1" colspan="5">'; |
||
| 418 | echo '<textarea style="width:100%;" name="formComment" rows="3" cols="50">'; |
||
| 419 | echo \htmlspecialchars($_POST['formComment']); |
||
| 420 | echo '</textarea></td></tr>' . \PHP_EOL; |
||
| 421 | |||
| 422 | // Display function cost options |
||
| 423 | if ($data->hasFunctionCosting()) { |
||
| 424 | echo "<tr><th class=\"data required\" colspan=\"5\">{$this->lang['strfunctioncosting']}</th></tr>" . \PHP_EOL; |
||
| 425 | echo "<td class=\"data1\" colspan=\"2\">{$this->lang['strexecutioncost']}: <input name=\"formCost\" size=\"16\" value=\"" . |
||
| 426 | \htmlspecialchars($_POST['formCost']) . '" /></td>'; |
||
| 427 | echo "<td class=\"data1\" colspan=\"2\">{$this->lang['strresultrows']}: <input name=\"formRows\" size=\"16\" value=\"", |
||
| 428 | \htmlspecialchars($_POST['formRows']), '"', (!$fndata->fields['proretset']) ? 'disabled' : '', '/></td>'; |
||
| 429 | } |
||
| 430 | |||
| 431 | // Display function properties |
||
| 432 | if (\is_array($data->funcprops) && 0 < \count($data->funcprops)) { |
||
| 433 | echo "<tr><th class=\"data\" colspan=\"5\">{$this->lang['strproperties']}</th></tr>" . \PHP_EOL; |
||
| 434 | echo '<tr><td class="data1" colspan="5">' . \PHP_EOL; |
||
| 435 | $i = 0; |
||
| 436 | |||
| 437 | foreach ($data->funcprops as $k => $v) { |
||
| 438 | echo "<select name=\"formProperties[{$i}]\">" . \PHP_EOL; |
||
| 439 | |||
| 440 | foreach ($v as $p) { |
||
| 441 | echo '<option value="', \htmlspecialchars($p), '"', |
||
| 442 | ($_POST['formProperties'][$i] === $p) ? ' selected="selected"' : '', |
||
| 443 | '>', $this->misc->printVal($p), '</option>' . \PHP_EOL; |
||
| 444 | } |
||
| 445 | echo '</select><br />' . \PHP_EOL; |
||
| 446 | ++$i; |
||
| 447 | } |
||
| 448 | echo '</td></tr>' . \PHP_EOL; |
||
| 449 | } |
||
| 450 | |||
| 451 | // function owner |
||
| 452 | if ($data->hasFunctionAlterOwner()) { |
||
| 453 | $users = $data->getUsers(); |
||
| 454 | echo "<tr><td class=\"data1\" colspan=\"5\">{$this->lang['strowner']}: <select name=\"formFuncOwn\">"; |
||
| 455 | |||
| 456 | while (!$users->EOF) { |
||
| 457 | $uname = $users->fields['usename']; |
||
| 458 | echo '<option value="', \htmlspecialchars($uname), '"', |
||
| 459 | ($uname === $_POST['formFuncOwn']) ? ' selected="selected"' : '', '>', \htmlspecialchars($uname), '</option>' . \PHP_EOL; |
||
| 460 | $users->moveNext(); |
||
| 461 | } |
||
| 462 | echo '</select>' . \PHP_EOL; |
||
| 463 | echo '<input type="hidden" name="original_owner" value="', \htmlspecialchars($fndata->fields['proowner']), '" />' . \PHP_EOL; |
||
| 464 | echo '</td></tr>' . \PHP_EOL; |
||
| 465 | } |
||
| 466 | echo '</table>' . \PHP_EOL; |
||
| 467 | echo '<p><input type="hidden" name="action" value="save_edit" />' . \PHP_EOL; |
||
| 468 | echo '<input type="hidden" name="function" value="', \htmlspecialchars($_REQUEST['function']), '" />' . \PHP_EOL; |
||
| 469 | echo '<input type="hidden" name="function_oid" value="', \htmlspecialchars($_REQUEST['function_oid']), '" />' . \PHP_EOL; |
||
| 470 | echo $this->view->form; |
||
| 471 | echo "<input type=\"submit\" value=\"{$this->lang['stralter']}\" />" . \PHP_EOL; |
||
| 472 | echo \sprintf('<input type="submit" name="cancel" value="%s" /></p>%s', $this->lang['strcancel'], \PHP_EOL); |
||
| 473 | echo '</form>' . \PHP_EOL; |
||
| 474 | } |
||
| 475 | |||
| 476 | /** |
||
| 477 | * Show the creation sentence for this function. |
||
| 478 | * |
||
| 479 | * @param string $fname The function name |
||
| 480 | * @param int $function_oid The function oid |
||
| 481 | * |
||
| 482 | * @return string the navlinks to print at the bottom |
||
| 483 | */ |
||
| 484 | public function showDefinition($fname, $function_oid) |
||
| 532 | } |
||
| 533 | |||
| 534 | /** |
||
| 535 | * Show read only properties of a function. |
||
| 536 | * |
||
| 537 | * @param mixed $msg |
||
| 538 | */ |
||
| 539 | public function doProperties($msg = '') |
||
| 626 | } |
||
| 627 | |||
| 628 | /** |
||
| 629 | * Show confirmation of drop and perform actual drop. |
||
| 630 | * |
||
| 631 | * @param mixed $confirm |
||
| 632 | */ |
||
| 633 | public function doDrop($confirm) |
||
| 713 | } |
||
| 714 | } |
||
| 715 | } |
||
| 716 | } |
||
| 717 | |||
| 718 | /** |
||
| 719 | * Displays a screen where they can enter a new function. |
||
| 720 | * |
||
| 721 | * @param string $msg message to display |
||
| 722 | * @param mixed $szJS |
||
| 723 | */ |
||
| 724 | public function doCreate($msg = '', $szJS = ''): void |
||
| 725 | { |
||
| 726 | $data = $this->misc->getDatabaseAccessor(); |
||
| 727 | |||
| 728 | $this->printTrail('schema'); |
||
| 729 | $_POST['formFunction'] = $this->getPostParam('formFunction', ''); |
||
| 730 | |||
| 731 | $_POST['formArguments'] = $this->getPostParam('formArguments', ''); |
||
| 732 | |||
| 733 | $_POST['formReturns'] = $this->getPostParam('formReturns', ''); |
||
| 734 | |||
| 735 | $this->coalesceArr($_POST, 'formLanguage', $_REQUEST['language'] ?? 'sql'); |
||
| 736 | |||
| 737 | $_POST['formDefinition'] = $this->getPostParam('formDefinition', ''); |
||
| 738 | |||
| 739 | $_POST['formObjectFile'] = $this->getPostParam('formObjectFile', ''); |
||
| 740 | |||
| 741 | $_POST['formLinkSymbol'] = $this->getPostParam('formLinkSymbol', ''); |
||
| 742 | |||
| 743 | $_POST['formProperties'] = $this->getPostParam('formProperties', $data->defaultprops); |
||
| 744 | |||
| 745 | $_POST['formSetOf'] = $this->getPostParam('formSetOf', ''); |
||
| 746 | |||
| 747 | $_POST['formArray'] = $this->getPostParam('formArray', ''); |
||
| 748 | |||
| 749 | $_POST['formCost'] = $this->getPostParam('formCost', ''); |
||
| 750 | |||
| 751 | $_POST['formRows'] = $this->getPostParam('formRows', ''); |
||
| 752 | |||
| 753 | $_POST['formComment'] = $this->getPostParam('formComment', ''); |
||
| 754 | |||
| 755 | $types = $data->getTypes(true, true, true); |
||
| 756 | $langs = $data->getLanguages(true); |
||
| 757 | $fnlang = \mb_strtolower($_POST['formLanguage']); |
||
| 758 | |||
| 759 | switch ($fnlang) { |
||
| 760 | case 'c': |
||
| 761 | $this->printTitle($this->lang['strcreatecfunction'], 'pg.function.create.c'); |
||
| 762 | |||
| 763 | break; |
||
| 764 | case 'internal': |
||
| 765 | $this->printTitle($this->lang['strcreateinternalfunction'], 'pg.function.create.internal'); |
||
| 766 | |||
| 767 | break; |
||
| 768 | |||
| 769 | default: |
||
| 770 | $this->printTitle($this->lang['strcreateplfunction'], 'pg.function.create.pl'); |
||
| 771 | |||
| 772 | break; |
||
| 773 | } |
||
| 774 | $this->printMsg($msg); |
||
| 775 | |||
| 776 | // Create string for return type list |
||
| 777 | $szTypes = ''; |
||
| 778 | |||
| 779 | while (!$types->EOF) { |
||
| 780 | $szSelected = ''; |
||
| 781 | |||
| 782 | if ($types->fields['typname'] === $_POST['formReturns']) { |
||
| 783 | $szSelected = ' selected="selected"'; |
||
| 784 | } |
||
| 785 | // this variable is include in the JS code bellow, so we need to ENT_QUOTES |
||
| 786 | $szTypes .= '<option value="' . \htmlspecialchars($types->fields['typname'], \ENT_QUOTES) . "\"{$szSelected}>"; |
||
| 787 | $szTypes .= \htmlspecialchars($types->fields['typname'], \ENT_QUOTES) . '</option>'; |
||
| 788 | $types->moveNext(); |
||
| 789 | } |
||
| 790 | |||
| 791 | $szFunctionName = "<td class=\"data1\"><input name=\"formFunction\" size=\"16\" maxlength=\"{$data->_maxNameLen}\" value=\"" . |
||
| 792 | \htmlspecialchars($_POST['formFunction']) . '" /></td>'; |
||
| 793 | |||
| 794 | $szArguments = '<td class="data1"><input name="formArguments" style="width:100%;" size="16" value="' . |
||
| 795 | \htmlspecialchars($_POST['formArguments']) . '" /></td>'; |
||
| 796 | |||
| 797 | $szSetOfSelected = ''; |
||
| 798 | $szNotSetOfSelected = ''; |
||
| 799 | |||
| 800 | if ('' === $_POST['formSetOf']) { |
||
| 801 | $szNotSetOfSelected = ' selected="selected"'; |
||
| 802 | } elseif ('SETOF' === $_POST['formSetOf']) { |
||
| 803 | $szSetOfSelected = ' selected="selected"'; |
||
| 804 | } |
||
| 805 | $szReturns = '<td class="data1" colspan="2">'; |
||
| 806 | $szReturns .= '<select name="formSetOf">'; |
||
| 807 | $szReturns .= "<option value=\"\"{$szNotSetOfSelected}></option>"; |
||
| 808 | $szReturns .= "<option value=\"SETOF\"{$szSetOfSelected}>SETOF</option>"; |
||
| 809 | $szReturns .= '</select>'; |
||
| 810 | |||
| 811 | $szReturns .= '<select class="select2" name="formReturns">' . $szTypes . '</select>'; |
||
| 812 | |||
| 813 | // Create string array type selector |
||
| 814 | |||
| 815 | $szArraySelected = ''; |
||
| 816 | $szNotArraySelected = ''; |
||
| 817 | |||
| 818 | if ('' === $_POST['formArray']) { |
||
| 819 | $szNotArraySelected = ' selected="selected"'; |
||
| 820 | } elseif ('[]' === $_POST['formArray']) { |
||
| 821 | $szArraySelected = ' selected="selected"'; |
||
| 822 | } |
||
| 823 | |||
| 824 | $szReturns .= '<select name="formArray">'; |
||
| 825 | $szReturns .= "<option value=\"\"{$szNotArraySelected}></option>"; |
||
| 826 | $szReturns .= "<option value=\"[]\"{$szArraySelected}>[ ]</option>"; |
||
| 827 | $szReturns .= "</select>\n</td>"; |
||
| 828 | |||
| 829 | // Create string for language |
||
| 830 | $szLanguage = '<td class="data1">'; |
||
| 831 | |||
| 832 | if ('c' === $fnlang || 'internal' === $fnlang) { |
||
| 833 | $szLanguage .= $_POST['formLanguage'] . \PHP_EOL; |
||
| 834 | $szLanguage .= "<input type=\"hidden\" name=\"formLanguage\" value=\"{$_POST['formLanguage']}\" />" . \PHP_EOL; |
||
| 835 | } else { |
||
| 836 | $szLanguage .= '<select name="formLanguage">' . \PHP_EOL; |
||
| 837 | |||
| 838 | while (!$langs->EOF) { |
||
| 839 | $szSelected = ''; |
||
| 840 | |||
| 841 | if ($langs->fields['lanname'] === $_POST['formLanguage']) { |
||
| 842 | $szSelected = ' selected="selected"'; |
||
| 843 | } |
||
| 844 | |||
| 845 | if ('c' !== \mb_strtolower($langs->fields['lanname']) && 'internal' !== \mb_strtolower($langs->fields['lanname'])) { |
||
| 846 | $szLanguage .= '<option value="' . \htmlspecialchars($langs->fields['lanname']) . "\"{$szSelected}>\n" . |
||
| 847 | $this->misc->printVal($langs->fields['lanname']) . '</option>'; |
||
| 848 | } |
||
| 849 | |||
| 850 | $langs->moveNext(); |
||
| 851 | } |
||
| 852 | $szLanguage .= '</select>' . \PHP_EOL; |
||
| 853 | } |
||
| 854 | |||
| 855 | $szLanguage .= '</td>'; |
||
| 856 | $szJSArguments = "<tr><th class=\"data\" colspan=\"7\">{$this->lang['strarguments']}</th></tr>"; |
||
| 857 | $arrayModes = ['IN', 'OUT', 'INOUT']; |
||
| 858 | $szModes = '<select name="formArgModes[]" style="width:100%;">'; |
||
| 859 | |||
| 860 | foreach ($arrayModes as $pV) { |
||
| 861 | $szModes .= "<option value=\"{$pV}\">{$pV}</option>"; |
||
| 862 | } |
||
| 863 | $szModes .= '</select>'; |
||
| 864 | $szArgReturns = '<select name="formArgArray[]">'; |
||
| 865 | $szArgReturns .= '<option value=""></option>'; |
||
| 866 | $szArgReturns .= '<option value="[]">[]</option>'; |
||
| 867 | $szArgReturns .= '</select>'; |
||
| 868 | $subfolder = \containerInstance()->subFolder; |
||
| 869 | |||
| 870 | if (!empty($this->conf['theme'])) { |
||
| 871 | $szImgPath = \containerInstance()->subFolder . "/assets/images/themes/{$this->conf['theme']}"; |
||
| 872 | } else { |
||
| 873 | $szImgPath = \containerInstance()->subFolder . '/assets/images/themes/default'; |
||
| 874 | } |
||
| 875 | |||
| 876 | if (empty($msg)) { |
||
| 877 | $szJSTRArg = "<script type=\"text/javascript\" >addArg('{$subfolder}');</script>" . \PHP_EOL; |
||
| 878 | } else { |
||
| 879 | $szJSTRArg = ''; |
||
| 880 | } |
||
| 881 | $szJSAddTR = "<tr id=\"parent_add_tr\" onclick=\"addArg('{$subfolder}');\" onmouseover=\"this.style.cursor='pointer'\">" . \PHP_EOL; |
||
| 882 | $szJSAddTR .= '<td style="text-align: right" colspan="6" class="data3"><table><tr><td class="data3">'; |
||
| 883 | $szJSAddTR .= "<img src=\"{$szImgPath}/AddArguments.png\" alt=\"Add Argument\" /></td>"; |
||
| 884 | $szJSAddTR .= "<td class=\"data3\"><span style=\"font-size: 8pt\">{$this->lang['strargadd']}</span></td></tr></table></td>\n</tr>" . \PHP_EOL; |
||
| 885 | |||
| 886 | echo '<script src="' . \containerInstance()->subFolder . "/assets/js/functions.js\" type=\"text/javascript\"></script> |
||
| 887 | <script type=\"text/javascript\"> |
||
| 888 | //<![CDATA[ |
||
| 889 | var g_types_select = '<select class=\"select2\" name=\"formArgType[]\">{$szTypes}</select>{$szArgReturns}'; |
||
| 890 | var g_modes_select = '{$szModes}'; |
||
| 891 | var g_name = ''; |
||
| 892 | var g_lang_strargremove = '", \htmlspecialchars($this->lang['strargremove'], \ENT_QUOTES), "'; |
||
| 893 | var g_lang_strargnoargs = '", \htmlspecialchars($this->lang['strargnoargs'], \ENT_QUOTES), "'; |
||
| 894 | var g_lang_strargenableargs = '", \htmlspecialchars($this->lang['strargenableargs'], \ENT_QUOTES), "'; |
||
| 895 | var g_lang_strargnorowabove = '", \htmlspecialchars($this->lang['strargnorowabove'], \ENT_QUOTES), "'; |
||
| 896 | var g_lang_strargnorowbelow = '", \htmlspecialchars($this->lang['strargnorowbelow'], \ENT_QUOTES), "'; |
||
| 897 | var g_lang_strargremoveconfirm = '", \htmlspecialchars($this->lang['strargremoveconfirm'], \ENT_QUOTES), "'; |
||
| 898 | var g_lang_strargraise = '", \htmlspecialchars($this->lang['strargraise'], \ENT_QUOTES), "'; |
||
| 899 | var g_lang_strarglower = '", \htmlspecialchars($this->lang['strarglower'], \ENT_QUOTES), "'; |
||
| 900 | //]]> |
||
| 901 | </script> |
||
| 902 | "; |
||
| 903 | echo '<form action="' . \containerInstance()->subFolder . '/src/views/functions" method="post">' . \PHP_EOL; |
||
| 904 | echo '<table><tbody id="args_table">' . \PHP_EOL; |
||
| 905 | echo "<tr><th class=\"data required\">{$this->lang['strname']}</th>" . \PHP_EOL; |
||
| 906 | echo "<th class=\"data required\" colspan=\"2\">{$this->lang['strreturns']}</th>" . \PHP_EOL; |
||
| 907 | echo "<th class=\"data required\">{$this->lang['strproglanguage']}</th></tr>" . \PHP_EOL; |
||
| 908 | echo '<tr>' . \PHP_EOL; |
||
| 909 | echo "{$szFunctionName}\n"; |
||
| 910 | echo "{$szReturns}\n"; |
||
| 911 | echo "{$szLanguage}\n"; |
||
| 912 | echo '</tr>' . \PHP_EOL; |
||
| 913 | echo "{$szJSArguments}\n"; |
||
| 914 | echo '<tr>' . \PHP_EOL; |
||
| 915 | echo "<th class=\"data required\">{$this->lang['strargmode']}</th>" . \PHP_EOL; |
||
| 916 | echo "<th class=\"data required\">{$this->lang['strname']}</th>" . \PHP_EOL; |
||
| 917 | echo "<th class=\"data required\" colspan=\"2\">{$this->lang['strargtype']}</th>" . \PHP_EOL; |
||
| 918 | echo '</tr>' . \PHP_EOL; |
||
| 919 | echo "{$szJSAddTR}\n"; |
||
| 920 | |||
| 921 | if ('c' === $fnlang) { |
||
| 922 | echo "<tr><th class=\"data required\" colspan=\"2\">{$this->lang['strobjectfile']}</th>" . \PHP_EOL; |
||
| 923 | echo "<th class=\"data\" colspan=\"2\">{$this->lang['strlinksymbol']}</th></tr>" . \PHP_EOL; |
||
| 924 | echo '<tr><td class="data1" colspan="2"><input type="text" name="formObjectFile" style="width:100%" value="', |
||
| 925 | \htmlspecialchars($_POST['formObjectFile']), '" /></td>' . \PHP_EOL; |
||
| 926 | echo '<td class="data1" colspan="2"><input type="text" name="formLinkSymbol" style="width:100%" value="', |
||
| 927 | \htmlspecialchars($_POST['formLinkSymbol']), '" /></td></tr>' . \PHP_EOL; |
||
| 928 | } elseif ('internal' === $fnlang) { |
||
| 929 | echo "<tr><th class=\"data\" colspan=\"4\">{$this->lang['strlinksymbol']}</th></tr>" . \PHP_EOL; |
||
| 930 | echo '<tr><td class="data1" colspan="4"><input type="text" name="formLinkSymbol" style="width:100%" value="', |
||
| 931 | \htmlspecialchars($_POST['formLinkSymbol']), '" /></td></tr>' . \PHP_EOL; |
||
| 932 | } else { |
||
| 933 | echo "<tr><th class=\"data required\" colspan=\"4\">{$this->lang['strdefinition']}</th></tr>" . \PHP_EOL; |
||
| 934 | echo '<tr><td class="data1" colspan="4">'; |
||
| 935 | echo '<textarea style="width:100%;" rows="20" cols="50" name="formDefinition">'; |
||
| 936 | echo \htmlspecialchars($_POST['formDefinition']); |
||
| 937 | echo '</textarea></td></tr>' . \PHP_EOL; |
||
| 938 | } |
||
| 939 | |||
| 940 | // Display function comment |
||
| 941 | echo "<tr><th class=\"data\" colspan=\"4\">{$this->lang['strcomment']}</th></tr>" . \PHP_EOL; |
||
| 942 | echo '<tr><td class="data1" colspan="4"><textarea style="width:100%;" name="formComment" rows="3" cols="50">', |
||
| 943 | \htmlspecialchars($_POST['formComment']), '</textarea></td></tr>' . \PHP_EOL; |
||
| 944 | |||
| 945 | // Display function cost options |
||
| 946 | if ($data->hasFunctionCosting()) { |
||
| 947 | echo "<tr><th class=\"data required\" colspan=\"4\">{$this->lang['strfunctioncosting']}</th></tr>" . \PHP_EOL; |
||
| 948 | echo "<td class=\"data1\" colspan=\"2\">{$this->lang['strexecutioncost']}: <input name=\"formCost\" size=\"16\" value=\"" . |
||
| 949 | \htmlspecialchars($_POST['formCost']) . '" /></td>'; |
||
| 950 | echo "<td class=\"data1\" colspan=\"2\">{$this->lang['strresultrows']}: <input name=\"formRows\" size=\"16\" value=\"" . |
||
| 951 | \htmlspecialchars($_POST['formRows']) . '" /></td>'; |
||
| 952 | } |
||
| 953 | |||
| 954 | // Display function properties |
||
| 955 | if (\is_array($data->funcprops) && 0 < \count($data->funcprops)) { |
||
| 956 | echo "<tr><th class=\"data required\" colspan=\"4\">{$this->lang['strproperties']}</th></tr>" . \PHP_EOL; |
||
| 957 | echo '<tr><td class="data1" colspan="4">' . \PHP_EOL; |
||
| 958 | $i = 0; |
||
| 959 | |||
| 960 | foreach ($data->funcprops as $k => $v) { |
||
| 961 | echo "<select name=\"formProperties[{$i}]\">" . \PHP_EOL; |
||
| 962 | |||
| 963 | foreach ($v as $p) { |
||
| 964 | echo '<option value="', \htmlspecialchars($p), '"', |
||
| 965 | ($_POST['formProperties'][$i] === $p) ? ' selected="selected"' : '', |
||
| 966 | '>', $this->misc->printVal($p), '</option>' . \PHP_EOL; |
||
| 967 | } |
||
| 968 | echo '</select><br />' . \PHP_EOL; |
||
| 969 | ++$i; |
||
| 970 | } |
||
| 971 | echo '</td></tr>' . \PHP_EOL; |
||
| 972 | } |
||
| 973 | echo '</tbody></table>' . \PHP_EOL; |
||
| 974 | echo $szJSTRArg; |
||
| 975 | echo '<p><input type="hidden" name="action" value="save_create" />' . \PHP_EOL; |
||
| 976 | echo $this->view->form; |
||
| 977 | echo "<input type=\"submit\" value=\"{$this->lang['strcreate']}\" />" . \PHP_EOL; |
||
| 978 | echo \sprintf('<input type="submit" name="cancel" value="%s" /></p>%s', $this->lang['strcancel'], \PHP_EOL); |
||
| 979 | echo '</form>' . \PHP_EOL; |
||
| 980 | echo $szJS; |
||
| 981 | } |
||
| 982 | |||
| 983 | /** |
||
| 984 | * Actually creates the new function in the database. |
||
| 985 | */ |
||
| 986 | public function doSaveCreate(): void |
||
| 987 | { |
||
| 988 | $data = $this->misc->getDatabaseAccessor(); |
||
| 989 | |||
| 990 | $fnlang = \mb_strtolower($_POST['formLanguage']); |
||
| 991 | |||
| 992 | if ('c' === $fnlang) { |
||
| 993 | $def = [$_POST['formObjectFile'], $_POST['formLinkSymbol']]; |
||
| 994 | } elseif ('internal' === $fnlang) { |
||
| 995 | $def = $_POST['formLinkSymbol']; |
||
| 996 | } else { |
||
| 997 | $def = $_POST['formDefinition']; |
||
| 998 | } |
||
| 999 | |||
| 1000 | $szJS = ''; |
||
| 1001 | |||
| 1002 | echo '<script src="' . \containerInstance()->subFolder . '/assets/js/functions.js" type="text/javascript"></script>'; |
||
| 1003 | echo '<script type="text/javascript">' . $this->_buildJSData() . '</script>'; |
||
| 1004 | |||
| 1005 | if (!empty($_POST['formArgName'])) { |
||
| 1006 | $szJS = $this->_buildJSRows($this->_buildFunctionArguments($_POST)); |
||
| 1007 | } else { |
||
| 1008 | $subfolder = \containerInstance()->subFolder; |
||
| 1009 | $szJS = '<script type="text/javascript" src="' . \containerInstance()->subFolder . '/assets/js/functions.js">noArgsRebuild(addArg("' . $subfolder . '"));</script>'; |
||
| 1010 | } |
||
| 1011 | |||
| 1012 | $cost = (isset($_POST['formCost'])) ? $_POST['formCost'] : null; |
||
| 1013 | |||
| 1014 | if ('' === $cost || !\is_numeric($cost) || (int) $cost !== $cost || 0 > $cost) { |
||
| 1015 | $cost = null; |
||
| 1016 | } |
||
| 1017 | |||
| 1018 | $rows = (isset($_POST['formRows'])) ? $_POST['formRows'] : null; |
||
| 1019 | |||
| 1020 | if ('' === $rows || !\is_numeric($rows) || (int) $rows !== $rows) { |
||
| 1021 | $rows = null; |
||
| 1022 | } |
||
| 1023 | |||
| 1024 | // Check that they've given a name and a definition |
||
| 1025 | if ('' === $_POST['formFunction']) { |
||
| 1026 | $this->doCreate($this->lang['strfunctionneedsname'], $szJS); |
||
| 1027 | } elseif ('internal' !== $fnlang && !$def) { |
||
| 1028 | $this->doCreate($this->lang['strfunctionneedsdef'], $szJS); |
||
| 1029 | } else { |
||
| 1030 | // Append array symbol to type if chosen |
||
| 1031 | $status = $data->createFunction( |
||
| 1032 | $_POST['formFunction'], |
||
| 1033 | empty($_POST['nojs']) ? $this->_buildFunctionArguments($_POST) : $_POST['formArguments'], |
||
| 1034 | $_POST['formReturns'] . $_POST['formArray'], |
||
| 1035 | $def, |
||
| 1036 | $_POST['formLanguage'], |
||
| 1037 | $_POST['formProperties'], |
||
| 1038 | 'SETOF' === $_POST['formSetOf'], |
||
| 1039 | $cost, |
||
| 1040 | $rows, |
||
| 1041 | $_POST['formComment'], |
||
| 1042 | false |
||
| 1043 | ); |
||
| 1044 | |||
| 1045 | if (0 === $status) { |
||
| 1046 | $this->doDefault($this->lang['strfunctioncreated']); |
||
| 1047 | } else { |
||
| 1048 | $this->doCreate($this->lang['strfunctioncreatedbad'], $szJS); |
||
| 1049 | } |
||
| 1050 | } |
||
| 1051 | } |
||
| 1052 | |||
| 1053 | private function _printNavLinks(string $place, string $func_full = ''): void |
||
| 1054 | { |
||
| 1055 | if ('functions-properties' === $place) { |
||
| 1056 | $navlinks = [ |
||
| 1057 | 'showall' => [ |
||
| 1058 | 'attr' => [ |
||
| 1059 | 'href' => [ |
||
| 1060 | 'url' => 'functions', |
||
| 1061 | 'urlvars' => [ |
||
| 1062 | 'server' => $_REQUEST['server'], |
||
| 1063 | 'database' => $_REQUEST['database'], |
||
| 1064 | 'schema' => $_REQUEST['schema'], |
||
| 1065 | ], |
||
| 1066 | ], |
||
| 1067 | ], |
||
| 1068 | 'content' => $this->lang['strshowallfunctions'], |
||
| 1069 | ], |
||
| 1070 | 'alter' => [ |
||
| 1071 | 'attr' => [ |
||
| 1072 | 'href' => [ |
||
| 1073 | 'url' => 'functions', |
||
| 1074 | 'urlvars' => [ |
||
| 1075 | 'action' => 'edit', |
||
| 1076 | 'server' => $_REQUEST['server'], |
||
| 1077 | 'database' => $_REQUEST['database'], |
||
| 1078 | 'schema' => $_REQUEST['schema'], |
||
| 1079 | 'function' => $_REQUEST['function'], |
||
| 1080 | 'function_oid' => $_REQUEST['function_oid'], |
||
| 1081 | ], |
||
| 1082 | ], |
||
| 1083 | ], |
||
| 1084 | 'content' => $this->lang['stralter'], |
||
| 1085 | ], |
||
| 1086 | 'drop' => [ |
||
| 1087 | 'attr' => [ |
||
| 1088 | 'href' => [ |
||
| 1089 | 'url' => 'functions', |
||
| 1090 | 'urlvars' => [ |
||
| 1091 | 'action' => 'confirm_drop', |
||
| 1092 | 'server' => $_REQUEST['server'], |
||
| 1093 | 'database' => $_REQUEST['database'], |
||
| 1094 | 'schema' => $_REQUEST['schema'], |
||
| 1095 | 'function' => $func_full, |
||
| 1096 | 'function_oid' => $_REQUEST['function_oid'], |
||
| 1097 | ], |
||
| 1098 | ], |
||
| 1099 | ], |
||
| 1100 | 'content' => $this->lang['strdrop'], |
||
| 1101 | ], |
||
| 1102 | ]; |
||
| 1103 | } elseif ('functions-functions' === $place) { |
||
| 1104 | $navlinks = [ |
||
| 1105 | 'createpl' => [ |
||
| 1106 | 'attr' => [ |
||
| 1107 | 'href' => [ |
||
| 1108 | 'url' => 'functions', |
||
| 1109 | 'urlvars' => [ |
||
| 1110 | 'action' => 'create', |
||
| 1111 | 'server' => $_REQUEST['server'], |
||
| 1112 | 'database' => $_REQUEST['database'], |
||
| 1113 | 'schema' => $_REQUEST['schema'], |
||
| 1114 | ], |
||
| 1115 | ], |
||
| 1116 | ], |
||
| 1117 | 'content' => $this->lang['strcreateplfunction'], |
||
| 1118 | ], |
||
| 1119 | 'createinternal' => [ |
||
| 1120 | 'attr' => [ |
||
| 1121 | 'href' => [ |
||
| 1122 | 'url' => 'functions', |
||
| 1123 | 'urlvars' => [ |
||
| 1124 | 'action' => 'create', |
||
| 1125 | 'language' => 'internal', |
||
| 1126 | 'server' => $_REQUEST['server'], |
||
| 1127 | 'database' => $_REQUEST['database'], |
||
| 1128 | 'schema' => $_REQUEST['schema'], |
||
| 1129 | ], |
||
| 1130 | ], |
||
| 1131 | ], |
||
| 1132 | 'content' => $this->lang['strcreateinternalfunction'], |
||
| 1133 | ], |
||
| 1134 | 'createc' => [ |
||
| 1135 | 'attr' => [ |
||
| 1136 | 'href' => [ |
||
| 1137 | 'url' => 'functions', |
||
| 1138 | 'urlvars' => [ |
||
| 1139 | 'action' => 'create', |
||
| 1140 | 'language' => 'C', |
||
| 1141 | 'server' => $_REQUEST['server'], |
||
| 1142 | 'database' => $_REQUEST['database'], |
||
| 1143 | 'schema' => $_REQUEST['schema'], |
||
| 1144 | ], |
||
| 1145 | ], |
||
| 1146 | ], |
||
| 1147 | 'content' => $this->lang['strcreatecfunction'], |
||
| 1148 | ], |
||
| 1149 | ]; |
||
| 1150 | } else { |
||
| 1151 | return; |
||
| 1152 | } |
||
| 1153 | |||
| 1154 | $this->printNavLinks($navlinks, $place, \get_defined_vars()); |
||
| 1155 | } |
||
| 1156 | |||
| 1157 | private function _getNamedParamsArgs($data, $fndata) |
||
| 1207 | } |
||
| 1208 | |||
| 1209 | /** |
||
| 1210 | * Build out the function arguments string. |
||
| 1211 | * |
||
| 1212 | * @param array $arrayVars |
||
| 1213 | * |
||
| 1214 | * @return string the imploded array vars |
||
| 1215 | */ |
||
| 1216 | private function _buildFunctionArguments($arrayVars) |
||
| 1217 | { |
||
| 1218 | if (isset($_POST['formArgName'])) { |
||
| 1219 | $arrayArgs = []; |
||
| 1220 | |||
| 1221 | foreach ($arrayVars['formArgName'] as $pK => $pV) { |
||
| 1222 | $arrayArgs[] = $arrayVars['formArgModes'][$pK] . ' ' . \trim($pV) . ' ' . \trim($arrayVars['formArgType'][$pK]) . $arrayVars['formArgArray'][$pK]; |
||
| 1223 | } |
||
| 1224 | |||
| 1225 | return \implode(',', $arrayArgs); |
||
| 1226 | } |
||
| 1227 | |||
| 1228 | return ''; |
||
| 1229 | } |
||
| 1230 | |||
| 1231 | /** |
||
| 1232 | * Build out JS to re-create table rows for arguments. |
||
| 1233 | * |
||
| 1234 | * @param string $szArgs args to parse |
||
| 1235 | */ |
||
| 1236 | private function _buildJSRows($szArgs) |
||
| 1270 | } |
||
| 1271 | |||
| 1272 | private function _buildJSData() |
||
| 1294 | } |
||
| 1295 | |||
| 1296 | /** |
||
| 1297 | * Get the concatenated arguments for a function. |
||
| 1298 | * |
||
| 1299 | * @param \ADORecordSet $funcdata The funcdata record |
||
| 1300 | * |
||
| 1301 | * @return string The arguments of the function |
||
| 1302 | */ |
||
| 1303 | private function _getPropertiesArgs($funcdata) |
||
| 1361 |
This check compares calls to functions or methods with their respective definitions. If the call has less arguments than are defined, it raises an issue.
If a function is defined several times with a different number of parameters, the check may pick up the wrong definition and report false positives. One codebase where this has been known to happen is Wordpress. Please note the @ignore annotation hint above.