| Total Complexity | 267 |
| Total Lines | 2132 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
Complex classes like Misc 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 Misc, and based on these observations, apply Extract Interface, too.
| 1 | <?php |
||
| 27 | class Misc |
||
| 28 | { |
||
| 29 | use \PHPPgAdmin\HelperTrait; |
||
| 30 | |||
| 31 | private $_connection; |
||
| 32 | private $_no_db_connection = false; |
||
| 33 | private $_reload_browser = false; |
||
| 34 | private $_data; |
||
| 35 | private $_database; |
||
| 36 | private $_server_id; |
||
| 37 | private $_server_info; |
||
| 38 | private $_error_msg = ''; |
||
| 39 | |||
| 40 | public $appLangFiles = []; |
||
| 41 | public $appName = ''; |
||
| 42 | public $appVersion = ''; |
||
| 43 | public $form = ''; |
||
| 44 | public $href = ''; |
||
| 45 | public $controller_name = 'Misc'; |
||
| 46 | public $lang = []; |
||
| 47 | |||
| 48 | protected $container; |
||
| 49 | |||
| 50 | /** |
||
| 51 | * @param \Slim\Container $container The container |
||
| 52 | */ |
||
| 53 | public function __construct(\Slim\Container $container) |
||
| 54 | { |
||
| 55 | $this->container = $container; |
||
| 56 | |||
| 57 | $this->lang = $container->get('lang'); |
||
| 58 | $this->conf = $container->get('conf'); |
||
| 59 | |||
| 60 | //$this->view = $container->get('view'); |
||
| 61 | $this->plugin_manager = $container->get('plugin_manager'); |
||
| 62 | $this->appLangFiles = $container->get('appLangFiles'); |
||
| 63 | |||
| 64 | $this->appName = $container->get('settings')['appName']; |
||
| 65 | $this->appVersion = $container->get('settings')['appVersion']; |
||
| 66 | $this->postgresqlMinVer = $container->get('settings')['postgresqlMinVer']; |
||
| 67 | $this->phpMinVer = $container->get('settings')['phpMinVer']; |
||
| 68 | |||
| 69 | $base_version = $container->get('settings')['base_version']; |
||
| 70 | |||
| 71 | // Check for config file version mismatch |
||
| 72 | if (!isset($this->conf['version']) || $base_version > $this->conf['version']) { |
||
| 73 | $container->get('utils')->addError($this->lang['strbadconfig']); |
||
| 74 | } |
||
| 75 | |||
| 76 | // Check database support is properly compiled in |
||
| 77 | if (!function_exists('pg_connect')) { |
||
| 78 | $container->get('utils')->addError($this->lang['strnotloaded']); |
||
| 79 | } |
||
| 80 | |||
| 81 | // Check the version of PHP |
||
| 82 | if (version_compare(phpversion(), $this->phpMinVer, '<')) { |
||
| 83 | $container->get('utils')->addError(sprintf('Version of PHP not supported. Please upgrade to version %s or later.', $this->phpMinVer)); |
||
| 84 | } |
||
| 85 | //$this->kint_and_die($this); |
||
| 86 | |||
| 87 | $this->getServerId(); |
||
| 88 | } |
||
| 89 | |||
| 90 | public function serverToSha() |
||
| 91 | { |
||
| 92 | $request_server = $this->container->requestobj->getParam('server'); |
||
| 93 | if ($request_server === null) { |
||
| 94 | return null; |
||
| 95 | } |
||
| 96 | $srv_array = explode(':', $request_server); |
||
| 97 | if (count($srv_array) === 3) { |
||
| 98 | return sha1($request_server); |
||
| 99 | } |
||
| 100 | |||
| 101 | return $request_server; |
||
| 102 | } |
||
| 103 | |||
| 104 | public function getServerId() |
||
| 105 | { |
||
| 106 | if ($this->_server_id) { |
||
| 107 | return $this->_server_id; |
||
| 108 | } |
||
| 109 | |||
| 110 | $request_server = $this->serverToSha(); |
||
| 111 | |||
| 112 | if (count($this->conf['servers']) === 1) { |
||
| 113 | $info = $this->conf['servers'][0]; |
||
| 114 | $this->_server_id = sha1($info['host'].':'.$info['port'].':'.$info['sslmode']); |
||
| 115 | } elseif ($request_server !== null) { |
||
| 116 | $this->_server_id = $request_server; |
||
| 117 | } elseif (isset($_SESSION['webdbLogin']) && count($_SESSION['webdbLogin']) > 0) { |
||
| 118 | $this->_server_id = array_keys($_SESSION['webdbLogin'])[0]; |
||
| 119 | } |
||
| 120 | |||
| 121 | return $this->_server_id; |
||
| 122 | } |
||
| 123 | |||
| 124 | /** |
||
| 125 | * Sets the view instance property of this class. |
||
| 126 | * |
||
| 127 | * @param \Slim\Views\Twig $view [description] |
||
| 128 | */ |
||
| 129 | public function setView(\Slim\Views\Twig $view) |
||
| 130 | { |
||
| 131 | $this->view = $view; |
||
| 132 | } |
||
| 133 | |||
| 134 | /** |
||
| 135 | * Adds or modifies a key in the $conf instance property of this class. |
||
| 136 | * |
||
| 137 | * @param string $key name of the key to set |
||
| 138 | * @param mixed $value value of the key to set |
||
| 139 | * |
||
| 140 | * @return \PHPPgAdmin\Misc this class instance |
||
| 141 | */ |
||
| 142 | public function setConf(string $key, $value) |
||
| 143 | { |
||
| 144 | $this->conf[$key] = $value; |
||
| 145 | |||
| 146 | return $this; |
||
| 147 | } |
||
| 148 | |||
| 149 | /** |
||
| 150 | * gets the value of a config property, or the array of all config properties. |
||
|
1 ignored issue
–
show
|
|||
| 151 | * |
||
| 152 | * @param mixed $key value of the key to be retrieved. If null, the full array is returnes |
||
| 153 | * |
||
| 154 | * @return mixed the whole $conf array, the value of $conf[key] or null if said key does not exist |
||
| 155 | */ |
||
| 156 | public function getConf($key = null) |
||
| 157 | { |
||
| 158 | if ($key === null) { |
||
| 159 | return $this->conf; |
||
| 160 | } |
||
| 161 | if (array_key_exists($key, $this->conf)) { |
||
| 162 | return $this->conf[$key]; |
||
| 163 | } |
||
| 164 | |||
| 165 | return null; |
||
| 166 | } |
||
| 167 | |||
| 168 | /** |
||
| 169 | * Displays link to the context help. |
||
| 170 | * |
||
| 171 | * @param $str the string that the context help is related to (already escaped) |
||
| 172 | * @param $help help section identifier |
||
| 173 | * @param $do_print true to echo, false to return |
||
| 174 | */ |
||
| 175 | public function printHelp($str, $help = null, $do_print = true) |
||
| 176 | { |
||
| 177 | //\PC::debug(['str' => $str, 'help' => $help], 'printHelp'); |
||
| 178 | if ($help !== null) { |
||
| 179 | $helplink = $this->getHelpLink($help); |
||
| 180 | $str .= '<a class="help" href="'.$helplink.'" title="'.$this->lang['strhelp'].'" target="phppgadminhelp">'.$this->lang['strhelpicon'].'</a>'; |
||
| 181 | } |
||
| 182 | if ($do_print) { |
||
| 183 | echo $str; |
||
| 184 | } else { |
||
| 185 | return $str; |
||
| 186 | } |
||
| 187 | } |
||
| 188 | |||
| 189 | public function getHelpLink($help) |
||
| 190 | { |
||
| 191 | return htmlspecialchars(SUBFOLDER.'/help?help='.urlencode($help).'&server='.urlencode($this->getServerId())); |
||
| 192 | } |
||
| 193 | |||
| 194 | /** |
||
| 195 | * Internally sets the reload browser property. |
||
| 196 | * |
||
| 197 | * @param bool $flag sets internal $_reload_browser var which will be passed to the footer methods |
||
| 198 | * |
||
| 199 | * @return \PHPPgAdmin\Misc this class instance |
||
| 200 | */ |
||
| 201 | public function setReloadBrowser($flag) |
||
| 202 | { |
||
| 203 | $this->_reload_browser = (bool) $flag; |
||
| 204 | |||
| 205 | return $this; |
||
| 206 | } |
||
| 207 | |||
| 208 | public function getReloadBrowser() |
||
| 209 | { |
||
| 210 | return $this->_reload_browser; |
||
| 211 | } |
||
| 212 | |||
| 213 | /** |
||
| 214 | * Default Error Handler. This will be called with the following params. |
||
| 215 | * |
||
| 216 | * @param string $dbms the RDBMS you are connecting to |
||
| 217 | * @param string $fn the name of the calling function (in uppercase) |
||
| 218 | * @param number $errno the native error number from the database |
||
| 219 | * @param string $errmsg the native error msg from the database |
||
| 220 | * @param string $p1 $fn specific parameter - see below |
||
| 221 | * @param string $p2 parameter 2 |
||
| 222 | * @param mixed $thisConnection connection |
||
| 223 | * |
||
| 224 | * @throws \PHPPgAdmin\ADOdbException |
||
| 225 | * |
||
| 226 | * @internal param $P2 $fn specific parameter - see below |
||
| 227 | */ |
||
| 228 | public static function adodb_throw($dbms, $fn, $errno, $errmsg, $p1, $p2, $thisConnection) |
||
|
1 ignored issue
–
show
|
|||
| 229 | { |
||
| 230 | if (error_reporting() == 0) { |
||
| 231 | return; |
||
| 232 | } |
||
| 233 | |||
| 234 | $backtrace = debug_backtrace(DEBUG_BACKTRACE_IGNORE_ARGS, 2); |
||
| 235 | |||
| 236 | $btarray0 = [ |
||
| 237 | 'msg' => 'ADOdbException at ', |
||
| 238 | 'class' => $backtrace[1]['class'], |
||
| 239 | 'type' => $backtrace[1]['type'], |
||
| 240 | 'function' => $backtrace[1]['function'], |
||
| 241 | 'spacer' => ' ', |
||
| 242 | 'line' => $backtrace[0]['line'], |
||
| 243 | ]; |
||
| 244 | |||
| 245 | $errmsg = htmlentities(\PHPPgAdmin\HelperTrait::br2ln($errmsg), ENT_NOQUOTES); |
||
| 246 | $p1 = htmlentities(\PHPPgAdmin\HelperTrait::br2ln($p1), ENT_NOQUOTES); |
||
| 247 | $p2 = htmlentities(\PHPPgAdmin\HelperTrait::br2ln($p2), ENT_NOQUOTES); |
||
| 248 | |||
| 249 | switch ($fn) { |
||
| 250 | case 'EXECUTE': |
||
| 251 | $sql = str_replace( |
||
| 252 | [ |
||
| 253 | 'SELECT', |
||
| 254 | 'WHERE', |
||
| 255 | 'GROUP BY', |
||
| 256 | 'FROM', |
||
| 257 | 'HAVING', |
||
| 258 | 'LIMIT', |
||
| 259 | ], |
||
| 260 | ["\nSELECT", "\nWHERE", "\nGROUP BY", "\nFROM", "\nHAVING", "\nLIMIT"], |
||
| 261 | $p1 |
||
| 262 | ); |
||
| 263 | |||
| 264 | $inputparams = $p2; |
||
| 265 | |||
| 266 | $error_msg = '<p><b>strsqlerror</b><br />'.nl2br($errmsg).'</p> <p><b>SQL:</b><br />'.nl2br($sql).'</p> '; |
||
| 267 | |||
| 268 | echo '<table class="error" cellpadding="5"><tr><td>'.nl2br($error_msg).'</td></tr></table><br />'."\n"; |
||
| 269 | |||
| 270 | break; |
||
| 271 | case 'PCONNECT': |
||
| 272 | case 'CONNECT': |
||
| 273 | // do nothing; |
||
| 274 | break; |
||
| 275 | default: |
||
| 276 | $s = "${dbms} error: [${errno}: ${errmsg}] in ${fn}(${p1}, ${p2})\n"; |
||
| 277 | echo "<table class=\"error\" cellpadding=\"5\"><tr><td>{$s}</td></tr></table><br />\n"; |
||
| 278 | |||
| 279 | break; |
||
| 280 | } |
||
| 281 | |||
| 282 | $tag = implode('', $btarray0); |
||
| 283 | |||
| 284 | \PC::debug(['errno' => $errno, 'fn' => $fn, 'errmsg' => $errmsg], $tag); |
||
| 285 | |||
| 286 | throw new \PHPPgAdmin\ADOdbException($dbms, $fn, $errno, $errmsg, $p1, $p2, $thisConnection); |
||
| 287 | } |
||
| 288 | |||
| 289 | public function getContainer() |
||
| 290 | { |
||
| 291 | return $this->container; |
||
| 292 | } |
||
| 293 | |||
| 294 | /** |
||
| 295 | * sets $_no_db_connection boolean value, allows to render scripts that do not need an active session. |
||
|
1 ignored issue
–
show
|
|||
| 296 | * |
||
| 297 | * @param bool $flag true or false to allow unconnected clients to access the view |
||
| 298 | * |
||
| 299 | * @return \PHPPgAdmin\Misc this class instance |
||
| 300 | */ |
||
| 301 | public function setNoDBConnection($flag) |
||
| 302 | { |
||
| 303 | $this->_no_db_connection = (bool) $flag; |
||
| 304 | |||
| 305 | return $this; |
||
| 306 | } |
||
| 307 | |||
| 308 | public function getNoDBConnection() |
||
| 309 | { |
||
| 310 | return $this->_no_db_connection; |
||
| 311 | } |
||
| 312 | |||
| 313 | /** |
||
| 314 | * Sets the last error message to display afterwards instead of just dying with the error msg. |
||
| 315 | * |
||
| 316 | * @param string $msg error message string |
||
| 317 | */ |
||
| 318 | public function setErrorMsg($msg) |
||
| 319 | { |
||
| 320 | $this->_error_msg = $msg; |
||
| 321 | |||
| 322 | return $this; |
||
| 323 | } |
||
| 324 | |||
| 325 | public function getErrorMsg() |
||
| 326 | { |
||
| 327 | return $this->_error_msg; |
||
| 328 | } |
||
| 329 | |||
| 330 | /** |
||
| 331 | * Creates a database accessor. |
||
| 332 | * |
||
| 333 | * @param string $database the name of the database |
||
| 334 | * @param mixed $server_id the id of the server |
||
| 335 | */ |
||
| 336 | public function getDatabaseAccessor($database = '', $server_id = null) |
||
| 337 | { |
||
| 338 | $lang = $this->lang; |
||
| 339 | |||
| 340 | if ($server_id !== null) { |
||
| 341 | $this->_server_id = $server_id; |
||
| 342 | } |
||
| 343 | //$this->prtrace($this->_server_id); |
||
| 344 | |||
| 345 | $server_info = $this->getServerInfo($this->_server_id); |
||
| 346 | |||
| 347 | if ($this->_no_db_connection || !isset($server_info['username'])) { |
||
| 348 | return null; |
||
| 349 | } |
||
| 350 | |||
| 351 | if ($this->_data === null) { |
||
| 352 | try { |
||
| 353 | $_connection = $this->getConnection($database, $this->_server_id); |
||
| 354 | } catch (\Exception $e) { |
||
| 355 | $this->setServerInfo(null, null, $this->_server_id); |
||
| 356 | $this->setNoDBConnection(true); |
||
| 357 | $this->setErrorMsg($e->getMessage()); |
||
| 358 | |||
| 359 | return null; |
||
| 360 | } |
||
| 361 | |||
| 362 | //$this->prtrace('_connection', $_connection); |
||
| 363 | if (!$_connection) { |
||
| 364 | $this->container->utils->addError($lang['strloginfailed']); |
||
| 365 | $this->setErrorMsg($lang['strloginfailed']); |
||
| 366 | |||
| 367 | return null; |
||
| 368 | } |
||
| 369 | // Get the name of the database driver we need to use. |
||
| 370 | // The description of the server is returned in $platform. |
||
| 371 | $_type = $_connection->getDriver($platform); |
||
| 372 | |||
| 373 | //$this->prtrace(['type' => $_type, 'platform' => $platform, 'pgVersion' => $_connection->conn->pgVersion]); |
||
| 374 | |||
| 375 | if ($_type === null) { |
||
| 376 | $errormsg = sprintf($lang['strpostgresqlversionnotsupported'], $this->postgresqlMinVer); |
||
| 377 | $this->container->utils->addError($errormsg); |
||
| 378 | $this->setErrorMsg($errormsg); |
||
| 379 | |||
| 380 | return null; |
||
| 381 | } |
||
| 382 | $_type = '\PHPPgAdmin\Database\\'.$_type; |
||
| 383 | |||
| 384 | $this->setServerInfo('platform', $platform, $this->_server_id); |
||
| 385 | $this->setServerInfo('pgVersion', $_connection->conn->pgVersion, $this->_server_id); |
||
| 386 | |||
| 387 | // Create a database wrapper class for easy manipulation of the |
||
| 388 | // connection. |
||
| 389 | |||
| 390 | $this->_data = new $_type($_connection->conn, $this->container, $server_info); |
||
| 391 | $this->_data->platform = $_connection->platform; |
||
| 392 | |||
| 393 | //$this->_data->getHelpPages(); |
||
| 394 | |||
| 395 | //$this->prtrace('help_page has ' . count($this->_data->help_page) . ' items'); |
||
| 396 | |||
| 397 | /* we work on UTF-8 only encoding */ |
||
| 398 | $this->_data->execute("SET client_encoding TO 'UTF-8'"); |
||
| 399 | |||
| 400 | if ($this->_data->hasByteaHexDefault()) { |
||
| 401 | $this->_data->execute('SET bytea_output TO escape'); |
||
| 402 | } |
||
| 403 | } |
||
| 404 | |||
| 405 | if ($this->_no_db_connection === false && $this->getDatabase() !== null && isset($_REQUEST['schema'])) { |
||
| 406 | $status = $this->_data->setSchema($_REQUEST['schema']); |
||
| 407 | |||
| 408 | if ($status != 0) { |
||
| 409 | $this->container->utils->addError($this->lang['strbadschema']); |
||
| 410 | $this->setErrorMsg($this->lang['strbadschema']); |
||
| 411 | |||
| 412 | return null; |
||
| 413 | } |
||
| 414 | } |
||
| 415 | |||
| 416 | return $this->_data; |
||
| 417 | } |
||
| 418 | |||
| 419 | public function getConnection($database = '', $server_id = null) |
||
| 420 | { |
||
| 421 | $lang = $this->lang; |
||
| 422 | |||
| 423 | if ($this->_connection === null) { |
||
| 424 | if ($server_id !== null) { |
||
| 425 | $this->_server_id = $server_id; |
||
| 426 | } |
||
| 427 | $server_info = $this->getServerInfo($this->_server_id); |
||
| 428 | $database_to_use = $this->getDatabase($database); |
||
| 429 | |||
| 430 | // Perform extra security checks if this config option is set |
||
| 431 | if ($this->conf['extra_login_security']) { |
||
| 432 | // Disallowed logins if extra_login_security is enabled. |
||
| 433 | // These must be lowercase. |
||
| 434 | $bad_usernames = [ |
||
| 435 | 'pgsql' => 'pgsql', |
||
| 436 | 'postgres' => 'postgres', |
||
| 437 | 'root' => 'root', |
||
| 438 | 'administrator' => 'administrator', |
||
| 439 | ]; |
||
| 440 | |||
| 441 | if (isset($server_info['username']) && array_key_exists(strtolower($server_info['username']), $bad_usernames)) { |
||
| 442 | $msg = $lang['strlogindisallowed']; |
||
| 443 | |||
| 444 | throw new \Exception($msg); |
||
| 445 | } |
||
| 446 | |||
| 447 | if (!isset($server_info['password']) || $server_info['password'] == '') { |
||
| 448 | $msg = $lang['strlogindisallowed']; |
||
| 449 | |||
| 450 | throw new \Exception($msg); |
||
| 451 | } |
||
| 452 | } |
||
| 453 | |||
| 454 | try { |
||
| 455 | // Create the connection object and make the connection |
||
| 456 | $this->_connection = new \PHPPgAdmin\Database\Connection( |
||
| 457 | $server_info, |
||
| 458 | $database_to_use, |
||
| 459 | $this->container |
||
| 460 | ); |
||
| 461 | } catch (\PHPPgAdmin\ADOdbException $e) { |
||
| 462 | throw new \Exception($lang['strloginfailed']); |
||
| 463 | } |
||
| 464 | } |
||
| 465 | |||
| 466 | return $this->_connection; |
||
| 467 | } |
||
| 468 | |||
| 469 | /** |
||
| 470 | * Validate and retrieve information on a server. |
||
| 471 | * If the parameter isn't supplied then the currently |
||
| 472 | * connected server is returned. |
||
| 473 | * |
||
| 474 | * @param $server_id A server identifier (host:port) |
||
| 475 | * |
||
| 476 | * @return An associative array of server properties |
||
| 477 | */ |
||
| 478 | public function getServerInfo($server_id = null) |
||
| 479 | { |
||
| 480 | //\PC::debug(['$server_id' => $server_id]); |
||
| 481 | |||
| 482 | if ($server_id !== null) { |
||
| 483 | $this->_server_id = $server_id; |
||
| 484 | } elseif ($this->_server_info !== null) { |
||
| 485 | return $this->_server_info; |
||
| 486 | } |
||
| 487 | |||
| 488 | // Check for the server in the logged-in list |
||
| 489 | if (isset($_SESSION['webdbLogin'][$this->_server_id])) { |
||
| 490 | $this->_server_info = $_SESSION['webdbLogin'][$this->_server_id]; |
||
| 491 | |||
| 492 | return $this->_server_info; |
||
| 493 | } |
||
| 494 | |||
| 495 | // Otherwise, look for it in the conf file |
||
| 496 | foreach ($this->conf['servers'] as $idx => $info) { |
||
| 497 | $server_string = $info['host'].':'.$info['port'].':'.$info['sslmode']; |
||
| 498 | $server_sha = sha1($server_string); |
||
| 499 | |||
| 500 | if ($this->_server_id === $server_string || $this->_server_id === $server_sha) { |
||
| 501 | if (isset($info['username'])) { |
||
| 502 | $this->setServerInfo(null, $info, $this->_server_id); |
||
| 503 | } elseif (isset($_SESSION['sharedUsername'])) { |
||
| 504 | $info['username'] = $_SESSION['sharedUsername']; |
||
| 505 | $info['password'] = $_SESSION['sharedPassword']; |
||
| 506 | $this->setReloadBrowser(true); |
||
| 507 | $this->setServerInfo(null, $info, $this->_server_id); |
||
| 508 | } |
||
| 509 | $this->_server_info = $info; |
||
| 510 | |||
| 511 | return $this->_server_info; |
||
| 512 | } |
||
| 513 | } |
||
| 514 | |||
| 515 | if ($server_id === null) { |
||
| 516 | $this->_server_info = null; |
||
| 517 | |||
| 518 | return $this->_server_info; |
||
| 519 | } |
||
| 520 | |||
| 521 | $this->prtrace('Invalid server param'); |
||
| 522 | $this->_server_info = null; |
||
| 523 | // Unable to find a matching server, are we being hacked? |
||
| 524 | return $this->halt($this->lang['strinvalidserverparam']); |
||
| 525 | } |
||
| 526 | |||
| 527 | /** |
||
| 528 | * Set server information. |
||
| 529 | * |
||
| 530 | * @param $key parameter name to set, or null to replace all |
||
| 531 | * params with the assoc-array in $value |
||
| 532 | * @param $value the new value, or null to unset the parameter |
||
| 533 | * @param $server_id the server identifier, or null for current server |
||
| 534 | */ |
||
| 535 | public function setServerInfo($key, $value, $server_id = null) |
||
| 536 | { |
||
| 537 | //\PC::debug('setsetverinfo'); |
||
| 538 | if ($server_id === null) { |
||
| 539 | $server_id = $this->container->requestobj->getParam('server'); |
||
| 540 | } |
||
| 541 | |||
| 542 | if ($key === null) { |
||
| 543 | if ($value === null) { |
||
| 544 | unset($_SESSION['webdbLogin'][$server_id]); |
||
| 545 | } else { |
||
| 546 | //\PC::debug(['server_id' => $server_id, 'value' => $value], 'webdbLogin null key'); |
||
| 547 | $_SESSION['webdbLogin'][$server_id] = $value; |
||
| 548 | } |
||
| 549 | } else { |
||
| 550 | if ($value === null) { |
||
| 551 | unset($_SESSION['webdbLogin'][$server_id][$key]); |
||
| 552 | } else { |
||
| 553 | //\PC::debug(['server_id' => $server_id, 'key' => $key, 'value' => $value], __FILE__ . ' ' . __LINE__ . ' webdbLogin key ' . $key); |
||
| 554 | $_SESSION['webdbLogin'][$server_id][$key] = $value; |
||
| 555 | } |
||
| 556 | } |
||
| 557 | } |
||
| 558 | |||
| 559 | public function getDatabase($database = '') |
||
| 560 | { |
||
| 561 | if ($this->_server_id === null && !isset($_REQUEST['database'])) { |
||
| 562 | return null; |
||
| 563 | } |
||
| 564 | |||
| 565 | $server_info = $this->getServerInfo($this->_server_id); |
||
| 566 | |||
| 567 | if ($this->_server_id !== null && isset($server_info['useonlydefaultdb']) && $server_info['useonlydefaultdb'] === true) { |
||
| 568 | $this->_database = $server_info['defaultdb']; |
||
| 569 | } elseif ($database !== '') { |
||
| 570 | $this->_database = $database; |
||
| 571 | } elseif (isset($_REQUEST['database'])) { |
||
| 572 | // Connect to the current database |
||
| 573 | $this->_database = $_REQUEST['database']; |
||
| 574 | } else { |
||
| 575 | // or if one is not specified then connect to the default database. |
||
| 576 | $this->_database = $server_info['defaultdb']; |
||
| 577 | } |
||
| 578 | |||
| 579 | return $this->_database; |
||
| 580 | } |
||
| 581 | |||
| 582 | /** |
||
| 583 | * Set the current schema. |
||
| 584 | * |
||
| 585 | * @param $schema The schema name |
||
| 586 | * |
||
| 587 | * @return int 0 on success |
||
| 588 | */ |
||
| 589 | public function setCurrentSchema($schema) |
||
| 590 | { |
||
| 591 | $data = $this->getDatabaseAccessor(); |
||
| 592 | |||
| 593 | $status = $data->setSchema($schema); |
||
| 594 | if ($status != 0) { |
||
| 595 | return $status; |
||
| 596 | } |
||
| 597 | |||
| 598 | $_REQUEST['schema'] = $schema; |
||
| 599 | $this->container->offsetSet('schema', $schema); |
||
| 600 | $this->setHREF(); |
||
| 601 | |||
| 602 | return 0; |
||
| 603 | } |
||
| 604 | |||
| 605 | /** |
||
| 606 | * Checks if dumps are properly set up. |
||
| 607 | * |
||
| 608 | * @param $all (optional) True to check pg_dumpall, false to just check pg_dump |
||
| 609 | * |
||
| 610 | * @return True, dumps are set up, false otherwise |
||
| 611 | */ |
||
| 612 | public function isDumpEnabled($all = false) |
||
| 613 | { |
||
| 614 | $info = $this->getServerInfo(); |
||
| 615 | |||
| 616 | return !empty($info[$all ? 'pg_dumpall_path' : 'pg_dump_path']); |
||
| 617 | } |
||
| 618 | |||
| 619 | /** |
||
| 620 | * Sets the href tracking variable. |
||
| 621 | */ |
||
| 622 | public function setHREF() |
||
| 623 | { |
||
| 624 | $this->href = $this->getHREF(); |
||
| 625 | //\PC::debug($this->href, 'Misc::href'); |
||
| 626 | return $this; |
||
| 627 | } |
||
| 628 | |||
| 629 | /** |
||
| 630 | * Get a href query string, excluding objects below the given object type (inclusive). |
||
| 631 | * |
||
| 632 | * @param null|string $exclude_from |
||
| 633 | * |
||
| 634 | * @return string |
||
| 635 | */ |
||
| 636 | public function getHREF($exclude_from = null) |
||
| 637 | { |
||
| 638 | $href = []; |
||
| 639 | |||
| 640 | $server = $this->container->server || isset($_REQUEST['server']) ? $_REQUEST['server'] : null; |
||
| 641 | $database = $this->container->database || isset($_REQUEST['database']) ? $_REQUEST['database'] : null; |
||
| 642 | $schema = $this->container->schema || isset($_REQUEST['schema']) ? $_REQUEST['schema'] : null; |
||
| 643 | |||
| 644 | if ($server && $exclude_from !== 'server') { |
||
| 645 | $href[] = 'server='.urlencode($server); |
||
| 646 | } |
||
| 647 | if ($database && $exclude_from !== 'database') { |
||
| 648 | $href[] = 'database='.urlencode($database); |
||
| 649 | } |
||
| 650 | if ($schema && $exclude_from !== 'schema') { |
||
| 651 | $href[] = 'schema='.urlencode($schema); |
||
| 652 | } |
||
| 653 | |||
| 654 | $this->href = htmlentities(implode('&', $href)); |
||
| 655 | |||
| 656 | return $this->href; |
||
| 657 | } |
||
| 658 | |||
| 659 | public function getSubjectParams($subject) |
||
| 660 | { |
||
| 661 | $plugin_manager = $this->plugin_manager; |
||
| 662 | |||
| 663 | $vars = []; |
||
| 664 | |||
| 665 | switch ($subject) { |
||
| 666 | case 'root': |
||
| 667 | $vars = [ |
||
| 668 | 'params' => [ |
||
| 669 | 'subject' => 'root', |
||
| 670 | ], |
||
| 671 | ]; |
||
| 672 | |||
| 673 | break; |
||
| 674 | case 'server': |
||
| 675 | $vars = ['params' => [ |
||
| 676 | 'server' => $_REQUEST['server'], |
||
| 677 | 'subject' => 'server', |
||
| 678 | ]]; |
||
| 679 | |||
| 680 | break; |
||
| 681 | case 'role': |
||
| 682 | $vars = ['params' => [ |
||
| 683 | 'server' => $_REQUEST['server'], |
||
| 684 | 'subject' => 'role', |
||
| 685 | 'action' => 'properties', |
||
| 686 | 'rolename' => $_REQUEST['rolename'], |
||
| 687 | ]]; |
||
| 688 | |||
| 689 | break; |
||
| 690 | case 'database': |
||
| 691 | $vars = ['params' => [ |
||
| 692 | 'server' => $_REQUEST['server'], |
||
| 693 | 'subject' => 'database', |
||
| 694 | 'database' => $_REQUEST['database'], |
||
| 695 | ]]; |
||
| 696 | |||
| 697 | break; |
||
| 698 | case 'schema': |
||
| 699 | $vars = ['params' => [ |
||
| 700 | 'server' => $_REQUEST['server'], |
||
| 701 | 'subject' => 'schema', |
||
| 702 | 'database' => $_REQUEST['database'], |
||
| 703 | 'schema' => $_REQUEST['schema'], |
||
| 704 | ]]; |
||
| 705 | |||
| 706 | break; |
||
| 707 | case 'table': |
||
| 708 | $vars = ['params' => [ |
||
| 709 | 'server' => $_REQUEST['server'], |
||
| 710 | 'subject' => 'table', |
||
| 711 | 'database' => $_REQUEST['database'], |
||
| 712 | 'schema' => $_REQUEST['schema'], |
||
| 713 | 'table' => $_REQUEST['table'], |
||
| 714 | ]]; |
||
| 715 | |||
| 716 | break; |
||
| 717 | case 'selectrows': |
||
| 718 | $vars = [ |
||
| 719 | 'url' => 'tables', |
||
| 720 | 'params' => [ |
||
| 721 | 'server' => $_REQUEST['server'], |
||
| 722 | 'subject' => 'table', |
||
| 723 | 'database' => $_REQUEST['database'], |
||
| 724 | 'schema' => $_REQUEST['schema'], |
||
| 725 | 'table' => $_REQUEST['table'], |
||
| 726 | 'action' => 'confselectrows', |
||
| 727 | ], ]; |
||
| 728 | |||
| 729 | break; |
||
| 730 | case 'view': |
||
| 731 | $vars = ['params' => [ |
||
| 732 | 'server' => $_REQUEST['server'], |
||
| 733 | 'subject' => 'view', |
||
| 734 | 'database' => $_REQUEST['database'], |
||
| 735 | 'schema' => $_REQUEST['schema'], |
||
| 736 | 'view' => $_REQUEST['view'], |
||
| 737 | ]]; |
||
| 738 | |||
| 739 | break; |
||
| 740 | case 'matview': |
||
| 741 | $vars = ['params' => [ |
||
| 742 | 'server' => $_REQUEST['server'], |
||
| 743 | 'subject' => 'matview', |
||
| 744 | 'database' => $_REQUEST['database'], |
||
| 745 | 'schema' => $_REQUEST['schema'], |
||
| 746 | 'matview' => $_REQUEST['matview'], |
||
| 747 | ]]; |
||
| 748 | |||
| 749 | break; |
||
| 750 | case 'fulltext': |
||
| 751 | case 'ftscfg': |
||
| 752 | $vars = ['params' => [ |
||
| 753 | 'server' => $_REQUEST['server'], |
||
| 754 | 'subject' => 'fulltext', |
||
| 755 | 'database' => $_REQUEST['database'], |
||
| 756 | 'schema' => $_REQUEST['schema'], |
||
| 757 | 'action' => 'viewconfig', |
||
| 758 | 'ftscfg' => $_REQUEST['ftscfg'], |
||
| 759 | ]]; |
||
| 760 | |||
| 761 | break; |
||
| 762 | case 'function': |
||
| 763 | $vars = ['params' => [ |
||
| 764 | 'server' => $_REQUEST['server'], |
||
| 765 | 'subject' => 'function', |
||
| 766 | 'database' => $_REQUEST['database'], |
||
| 767 | 'schema' => $_REQUEST['schema'], |
||
| 768 | 'function' => $_REQUEST['function'], |
||
| 769 | 'function_oid' => $_REQUEST['function_oid'], |
||
| 770 | ]]; |
||
| 771 | |||
| 772 | break; |
||
| 773 | case 'aggregate': |
||
| 774 | $vars = ['params' => [ |
||
| 775 | 'server' => $_REQUEST['server'], |
||
| 776 | 'subject' => 'aggregate', |
||
| 777 | 'action' => 'properties', |
||
| 778 | 'database' => $_REQUEST['database'], |
||
| 779 | 'schema' => $_REQUEST['schema'], |
||
| 780 | 'aggrname' => $_REQUEST['aggrname'], |
||
| 781 | 'aggrtype' => $_REQUEST['aggrtype'], |
||
| 782 | ]]; |
||
| 783 | |||
| 784 | break; |
||
| 785 | case 'column': |
||
| 786 | if (isset($_REQUEST['table'])) { |
||
| 787 | $vars = ['params' => [ |
||
| 788 | 'server' => $_REQUEST['server'], |
||
| 789 | 'subject' => 'column', |
||
| 790 | 'database' => $_REQUEST['database'], |
||
| 791 | 'schema' => $_REQUEST['schema'], |
||
| 792 | 'table' => $_REQUEST['table'], |
||
| 793 | 'column' => $_REQUEST['column'], |
||
| 794 | ]]; |
||
| 795 | } else { |
||
| 796 | $vars = ['params' => [ |
||
| 797 | 'server' => $_REQUEST['server'], |
||
| 798 | 'subject' => 'column', |
||
| 799 | 'database' => $_REQUEST['database'], |
||
| 800 | 'schema' => $_REQUEST['schema'], |
||
| 801 | 'view' => $_REQUEST['view'], |
||
| 802 | 'column' => $_REQUEST['column'], |
||
| 803 | ]]; |
||
| 804 | } |
||
| 805 | |||
| 806 | break; |
||
| 807 | case 'plugin': |
||
| 808 | $vars = [ |
||
| 809 | 'url' => 'plugin', |
||
| 810 | 'params' => [ |
||
| 811 | 'server' => $_REQUEST['server'], |
||
| 812 | 'subject' => 'plugin', |
||
| 813 | 'plugin' => $_REQUEST['plugin'], |
||
| 814 | ], ]; |
||
| 815 | |||
| 816 | if (!is_null($plugin_manager->getPlugin($_REQUEST['plugin']))) { |
||
| 817 | $vars['params'] = array_merge($vars['params'], $plugin_manager->getPlugin($_REQUEST['plugin'])->get_subject_params()); |
||
| 818 | } |
||
| 819 | |||
| 820 | break; |
||
| 821 | default: |
||
| 822 | return false; |
||
| 823 | } |
||
| 824 | |||
| 825 | if (!isset($vars['url'])) { |
||
| 826 | $vars['url'] = SUBFOLDER.'/redirect'; |
||
| 827 | } |
||
| 828 | if ($vars['url'] == SUBFOLDER.'/redirect' && isset($vars['params']['subject'])) { |
||
| 829 | $vars['url'] = SUBFOLDER.'/redirect/'.$vars['params']['subject']; |
||
| 830 | unset($vars['params']['subject']); |
||
| 831 | } |
||
| 832 | |||
| 833 | return $vars; |
||
| 834 | } |
||
| 835 | |||
| 836 | /** |
||
| 837 | * Sets the form tracking variable. |
||
| 838 | */ |
||
| 839 | public function setForm() |
||
| 840 | { |
||
| 841 | $form = []; |
||
| 842 | if ($this->container->server) { |
||
| 843 | $form[] = '<input type="hidden" name="server" value="'.htmlspecialchars($this->container->server).'" />'; |
||
| 844 | } |
||
| 845 | if ($this->container->database) { |
||
| 846 | $form[] = '<input type="hidden" name="database" value="'.htmlspecialchars($this->container->database).'" />'; |
||
| 847 | } |
||
| 848 | |||
| 849 | if ($this->container->schema) { |
||
| 850 | $form[] = '<input type="hidden" name="schema" value="'.htmlspecialchars($this->container->schema).'" />'; |
||
| 851 | } |
||
| 852 | $this->form = implode("\n", $form); |
||
| 853 | |||
| 854 | return $this->form; |
||
| 855 | //\PC::debug($this->form, 'Misc::form'); |
||
| 856 | } |
||
| 857 | |||
| 858 | /** |
||
| 859 | * Render a value into HTML using formatting rules specified |
||
| 860 | * by a type name and parameters. |
||
| 861 | * |
||
| 862 | * @param $str The string to change |
||
| 863 | * @param $type Field type (optional), this may be an internal PostgreSQL type, or: |
||
| 864 | * yesno - same as bool, but renders as 'Yes' or 'No'. |
||
| 865 | * pre - render in a <pre> block. |
||
| 866 | * nbsp - replace all spaces with 's |
||
| 867 | * verbatim - render exactly as supplied, no escaping what-so-ever. |
||
| 868 | * callback - render using a callback function supplied in the 'function' param. |
||
| 869 | * @param array $params Type parameters (optional), known parameters: |
||
| 870 | * null - string to display if $str is null, or set to TRUE to use a default 'NULL' string, |
||
| 871 | * otherwise nothing is rendered. |
||
| 872 | * clip - if true, clip the value to a fixed length, and append an ellipsis... |
||
| 873 | * cliplen - the maximum length when clip is enabled (defaults to $conf['max_chars']) |
||
| 874 | * ellipsis - the string to append to a clipped value (defaults to $lang['strellipsis']) |
||
| 875 | * tag - an HTML element name to surround the value. |
||
| 876 | * class - a class attribute to apply to any surrounding HTML element. |
||
| 877 | * align - an align attribute ('left','right','center' etc.) |
||
| 878 | * true - (type='bool') the representation of true. |
||
| 879 | * false - (type='bool') the representation of false. |
||
| 880 | * function - (type='callback') a function name, accepts args ($str, $params) and returns a rendering. |
||
| 881 | * lineno - prefix each line with a line number. |
||
| 882 | * map - an associative array. |
||
| 883 | * |
||
| 884 | * @return string The HTML rendered value |
||
| 885 | */ |
||
| 886 | public function printVal($str, $type = null, $params = []) |
||
| 887 | { |
||
| 888 | $lang = $this->lang; |
||
| 889 | $data = $this->getDatabaseAccessor(); |
||
| 890 | |||
| 891 | // Shortcircuit for a NULL value |
||
| 892 | if (is_null($str)) { |
||
| 893 | return isset($params['null']) |
||
| 894 | ? ($params['null'] === true ? '<i>NULL</i>' : $params['null']) |
||
| 895 | : ''; |
||
| 896 | } |
||
| 897 | |||
| 898 | if (isset($params['map'], $params['map'][$str])) { |
||
| 899 | $str = $params['map'][$str]; |
||
| 900 | } |
||
| 901 | |||
| 902 | // Clip the value if the 'clip' parameter is true. |
||
| 903 | if (isset($params['clip']) && $params['clip'] === true) { |
||
| 904 | $maxlen = isset($params['cliplen']) && is_integer($params['cliplen']) ? $params['cliplen'] : $this->conf['max_chars']; |
||
| 905 | $ellipsis = isset($params['ellipsis']) ? $params['ellipsis'] : $lang['strellipsis']; |
||
| 906 | if (strlen($str) > $maxlen) { |
||
| 907 | $str = substr($str, 0, $maxlen - 1).$ellipsis; |
||
| 908 | } |
||
| 909 | } |
||
| 910 | |||
| 911 | $out = ''; |
||
| 912 | |||
| 913 | switch ($type) { |
||
| 914 | case 'int2': |
||
| 915 | case 'int4': |
||
| 916 | case 'int8': |
||
| 917 | case 'float4': |
||
| 918 | case 'float8': |
||
| 919 | case 'money': |
||
| 920 | case 'numeric': |
||
| 921 | case 'oid': |
||
| 922 | case 'xid': |
||
| 923 | case 'cid': |
||
| 924 | case 'tid': |
||
| 925 | $align = 'right'; |
||
| 926 | $out = nl2br(htmlspecialchars(\PHPPgAdmin\HelperTrait::br2ln($str))); |
||
| 927 | |||
| 928 | break; |
||
| 929 | case 'yesno': |
||
| 930 | if (!isset($params['true'])) { |
||
| 931 | $params['true'] = $lang['stryes']; |
||
| 932 | } |
||
| 933 | |||
| 934 | if (!isset($params['false'])) { |
||
| 935 | $params['false'] = $lang['strno']; |
||
| 936 | } |
||
| 937 | |||
| 938 | // no break - fall through to boolean case. |
||
| 939 | case 'bool': |
||
| 940 | case 'boolean': |
||
| 941 | if (is_bool($str)) { |
||
| 942 | $str = $str ? 't' : 'f'; |
||
| 943 | } |
||
| 944 | |||
| 945 | switch ($str) { |
||
| 946 | case 't': |
||
| 947 | $out = (isset($params['true']) ? $params['true'] : $lang['strtrue']); |
||
| 948 | $align = 'center'; |
||
| 949 | |||
| 950 | break; |
||
| 951 | case 'f': |
||
| 952 | $out = (isset($params['false']) ? $params['false'] : $lang['strfalse']); |
||
| 953 | $align = 'center'; |
||
| 954 | |||
| 955 | break; |
||
| 956 | default: |
||
| 957 | $out = htmlspecialchars($str); |
||
| 958 | } |
||
| 959 | |||
| 960 | break; |
||
| 961 | case 'bytea': |
||
| 962 | $tag = 'div'; |
||
| 963 | $class = 'pre'; |
||
| 964 | $out = $data->escapeBytea($str); |
||
| 965 | |||
| 966 | break; |
||
| 967 | case 'errormsg': |
||
| 968 | $tag = 'pre'; |
||
| 969 | $class = 'error'; |
||
| 970 | $out = htmlspecialchars($str); |
||
| 971 | |||
| 972 | break; |
||
| 973 | case 'pre': |
||
| 974 | $tag = 'pre'; |
||
| 975 | $out = htmlspecialchars($str); |
||
| 976 | |||
| 977 | break; |
||
| 978 | case 'prenoescape': |
||
| 979 | $tag = 'pre'; |
||
| 980 | $out = $str; |
||
| 981 | |||
| 982 | break; |
||
| 983 | case 'nbsp': |
||
| 984 | $out = nl2br(str_replace(' ', ' ', \PHPPgAdmin\HelperTrait::br2ln($str))); |
||
| 985 | |||
| 986 | break; |
||
| 987 | case 'verbatim': |
||
| 988 | $out = $str; |
||
| 989 | |||
| 990 | break; |
||
| 991 | case 'callback': |
||
| 992 | $out = $params['function']($str, $params); |
||
| 993 | |||
| 994 | break; |
||
| 995 | case 'prettysize': |
||
| 996 | if ($str == -1) { |
||
| 997 | $out = $lang['strnoaccess']; |
||
| 998 | } else { |
||
| 999 | $limit = 10 * 1024; |
||
| 1000 | $mult = 1; |
||
| 1001 | if ($str < $limit * $mult) { |
||
| 1002 | $out = $str.' '.$lang['strbytes']; |
||
| 1003 | } else { |
||
| 1004 | $mult *= 1024; |
||
| 1005 | if ($str < $limit * $mult) { |
||
| 1006 | $out = floor(($str + $mult / 2) / $mult).' '.$lang['strkb']; |
||
| 1007 | } else { |
||
| 1008 | $mult *= 1024; |
||
| 1009 | if ($str < $limit * $mult) { |
||
| 1010 | $out = floor(($str + $mult / 2) / $mult).' '.$lang['strmb']; |
||
| 1011 | } else { |
||
| 1012 | $mult *= 1024; |
||
| 1013 | if ($str < $limit * $mult) { |
||
| 1014 | $out = floor(($str + $mult / 2) / $mult).' '.$lang['strgb']; |
||
| 1015 | } else { |
||
| 1016 | $mult *= 1024; |
||
| 1017 | if ($str < $limit * $mult) { |
||
| 1018 | $out = floor(($str + $mult / 2) / $mult).' '.$lang['strtb']; |
||
| 1019 | } |
||
| 1020 | } |
||
| 1021 | } |
||
| 1022 | } |
||
| 1023 | } |
||
| 1024 | } |
||
| 1025 | |||
| 1026 | break; |
||
| 1027 | default: |
||
| 1028 | // If the string contains at least one instance of >1 space in a row, a tab |
||
| 1029 | // character, a space at the start of a line, or a space at the start of |
||
| 1030 | // the whole string then render within a pre-formatted element (<pre>). |
||
| 1031 | if (preg_match('/(^ | |\t|\n )/m', $str)) { |
||
| 1032 | $tag = 'pre'; |
||
| 1033 | $class = 'data'; |
||
| 1034 | $out = htmlspecialchars($str); |
||
| 1035 | } else { |
||
| 1036 | $out = nl2br(htmlspecialchars(\PHPPgAdmin\HelperTrait::br2ln($str))); |
||
| 1037 | } |
||
| 1038 | } |
||
| 1039 | |||
| 1040 | if (isset($params['class'])) { |
||
| 1041 | $class = $params['class']; |
||
| 1042 | } |
||
| 1043 | |||
| 1044 | if (isset($params['align'])) { |
||
| 1045 | $align = $params['align']; |
||
| 1046 | } |
||
| 1047 | |||
| 1048 | if (!isset($tag) && (isset($class) || isset($align))) { |
||
| 1049 | $tag = 'div'; |
||
| 1050 | } |
||
| 1051 | |||
| 1052 | if (isset($tag)) { |
||
| 1053 | $alignattr = isset($align) ? " style=\"text-align: {$align}\"" : ''; |
||
| 1054 | $classattr = isset($class) ? " class=\"{$class}\"" : ''; |
||
| 1055 | $out = "<{$tag}{$alignattr}{$classattr}>{$out}</{$tag}>"; |
||
| 1056 | } |
||
| 1057 | |||
| 1058 | // Add line numbers if 'lineno' param is true |
||
| 1059 | if (isset($params['lineno']) && $params['lineno'] === true) { |
||
| 1060 | $lines = explode("\n", $str); |
||
| 1061 | $num = count($lines); |
||
| 1062 | if ($num > 0) { |
||
| 1063 | $temp = "<table>\n<tr><td class=\"{$class}\" style=\"vertical-align: top; padding-right: 10px;\"><pre class=\"{$class}\">"; |
||
| 1064 | for ($i = 1; $i <= $num; ++$i) { |
||
| 1065 | $temp .= $i."\n"; |
||
| 1066 | } |
||
| 1067 | $temp .= "</pre></td><td class=\"{$class}\" style=\"vertical-align: top;\">{$out}</td></tr></table>\n"; |
||
| 1068 | $out = $temp; |
||
| 1069 | } |
||
| 1070 | unset($lines); |
||
| 1071 | } |
||
| 1072 | |||
| 1073 | return $out; |
||
| 1074 | } |
||
| 1075 | |||
| 1076 | /** |
||
| 1077 | * A function to recursively strip slashes. Used to |
||
| 1078 | * enforce magic_quotes_gpc being off. |
||
| 1079 | * |
||
| 1080 | * @param &var The variable to strip |
||
| 1081 | */ |
||
| 1082 | public function stripVar(&$var) |
||
| 1083 | { |
||
| 1084 | if (is_array($var)) { |
||
| 1085 | foreach ($var as $k => $v) { |
||
| 1086 | $this->stripVar($var[$k]); |
||
| 1087 | |||
| 1088 | /* magic_quotes_gpc escape keys as well ...*/ |
||
| 1089 | if (is_string($k)) { |
||
| 1090 | $ek = stripslashes($k); |
||
| 1091 | if ($ek !== $k) { |
||
| 1092 | $var[$ek] = $var[$k]; |
||
| 1093 | unset($var[$k]); |
||
| 1094 | } |
||
| 1095 | } |
||
| 1096 | } |
||
| 1097 | } else { |
||
| 1098 | $var = stripslashes($var); |
||
| 1099 | } |
||
| 1100 | } |
||
| 1101 | |||
| 1102 | /** |
||
| 1103 | * Retrieve the tab info for a specific tab bar. |
||
| 1104 | * |
||
| 1105 | * @param $section the name of the tab bar |
||
| 1106 | * |
||
| 1107 | * @return array |
||
| 1108 | */ |
||
| 1109 | public function getNavTabs($section) |
||
| 1110 | { |
||
| 1111 | $data = $this->getDatabaseAccessor(); |
||
| 1112 | $lang = $this->lang; |
||
| 1113 | $plugin_manager = $this->plugin_manager; |
||
| 1114 | |||
| 1115 | $hide_advanced = ($this->conf['show_advanced'] === false); |
||
| 1116 | $tabs = []; |
||
| 1117 | |||
| 1118 | switch ($section) { |
||
| 1119 | case 'root': |
||
| 1120 | $tabs = [ |
||
| 1121 | 'intro' => [ |
||
| 1122 | 'title' => $lang['strintroduction'], |
||
| 1123 | 'url' => 'intro', |
||
| 1124 | 'icon' => 'Introduction', |
||
| 1125 | ], |
||
| 1126 | 'servers' => [ |
||
| 1127 | 'title' => $lang['strservers'], |
||
| 1128 | 'url' => 'servers', |
||
| 1129 | 'icon' => 'Servers', |
||
| 1130 | ], |
||
| 1131 | ]; |
||
| 1132 | |||
| 1133 | break; |
||
| 1134 | case 'server': |
||
| 1135 | $hide_users = true; |
||
| 1136 | if ($data) { |
||
| 1137 | $hide_users = !$data->isSuperUser(); |
||
| 1138 | } |
||
| 1139 | |||
| 1140 | $tabs = [ |
||
| 1141 | 'databases' => [ |
||
| 1142 | 'title' => $lang['strdatabases'], |
||
| 1143 | 'url' => 'alldb', |
||
| 1144 | 'urlvars' => ['subject' => 'server'], |
||
| 1145 | 'help' => 'pg.database', |
||
| 1146 | 'icon' => 'Databases', |
||
| 1147 | ], |
||
| 1148 | ]; |
||
| 1149 | if ($data && $data->hasRoles()) { |
||
| 1150 | $tabs = array_merge($tabs, [ |
||
|
1 ignored issue
–
show
|
|||
| 1151 | 'roles' => [ |
||
| 1152 | 'title' => $lang['strroles'], |
||
| 1153 | 'url' => 'roles', |
||
| 1154 | 'urlvars' => ['subject' => 'server'], |
||
| 1155 | 'hide' => $hide_users, |
||
| 1156 | 'help' => 'pg.role', |
||
| 1157 | 'icon' => 'Roles', |
||
| 1158 | ], |
||
| 1159 | ]); |
||
|
1 ignored issue
–
show
|
|||
| 1160 | } else { |
||
| 1161 | $tabs = array_merge($tabs, [ |
||
|
1 ignored issue
–
show
|
|||
| 1162 | 'users' => [ |
||
| 1163 | 'title' => $lang['strusers'], |
||
| 1164 | 'url' => 'users', |
||
| 1165 | 'urlvars' => ['subject' => 'server'], |
||
| 1166 | 'hide' => $hide_users, |
||
| 1167 | 'help' => 'pg.user', |
||
| 1168 | 'icon' => 'Users', |
||
| 1169 | ], |
||
| 1170 | 'groups' => [ |
||
| 1171 | 'title' => $lang['strgroups'], |
||
| 1172 | 'url' => 'groups', |
||
| 1173 | 'urlvars' => ['subject' => 'server'], |
||
| 1174 | 'hide' => $hide_users, |
||
| 1175 | 'help' => 'pg.group', |
||
| 1176 | 'icon' => 'UserGroups', |
||
| 1177 | ], |
||
| 1178 | ]); |
||
|
1 ignored issue
–
show
|
|||
| 1179 | } |
||
| 1180 | |||
| 1181 | $tabs = array_merge($tabs, [ |
||
|
1 ignored issue
–
show
|
|||
| 1182 | 'account' => [ |
||
| 1183 | 'title' => $lang['straccount'], |
||
| 1184 | 'url' => ($data && $data->hasRoles()) ? 'roles' : 'users', |
||
| 1185 | 'urlvars' => ['subject' => 'server', 'action' => 'account'], |
||
| 1186 | 'hide' => !$hide_users, |
||
| 1187 | 'help' => 'pg.role', |
||
| 1188 | 'icon' => 'User', |
||
| 1189 | ], |
||
| 1190 | 'tablespaces' => [ |
||
| 1191 | 'title' => $lang['strtablespaces'], |
||
| 1192 | 'url' => 'tablespaces', |
||
| 1193 | 'urlvars' => ['subject' => 'server'], |
||
| 1194 | 'hide' => !$data || !$data->hasTablespaces(), |
||
| 1195 | 'help' => 'pg.tablespace', |
||
| 1196 | 'icon' => 'Tablespaces', |
||
| 1197 | ], |
||
| 1198 | 'export' => [ |
||
| 1199 | 'title' => $lang['strexport'], |
||
| 1200 | 'url' => 'alldb', |
||
| 1201 | 'urlvars' => ['subject' => 'server', 'action' => 'export'], |
||
| 1202 | 'hide' => !$this->isDumpEnabled(), |
||
| 1203 | 'icon' => 'Export', |
||
| 1204 | ], |
||
| 1205 | ]); |
||
|
1 ignored issue
–
show
|
|||
| 1206 | |||
| 1207 | break; |
||
| 1208 | case 'database': |
||
| 1209 | $tabs = [ |
||
| 1210 | 'schemas' => [ |
||
| 1211 | 'title' => $lang['strschemas'], |
||
| 1212 | 'url' => 'schemas', |
||
| 1213 | 'urlvars' => ['subject' => 'database'], |
||
| 1214 | 'help' => 'pg.schema', |
||
| 1215 | 'icon' => 'Schemas', |
||
| 1216 | ], |
||
| 1217 | 'sql' => [ |
||
| 1218 | 'title' => $lang['strsql'], |
||
| 1219 | 'url' => 'database', |
||
| 1220 | 'urlvars' => ['subject' => 'database', 'action' => 'sql', 'new' => 1], |
||
| 1221 | 'help' => 'pg.sql', |
||
| 1222 | 'tree' => false, |
||
| 1223 | 'icon' => 'SqlEditor', |
||
| 1224 | ], |
||
| 1225 | 'find' => [ |
||
| 1226 | 'title' => $lang['strfind'], |
||
| 1227 | 'url' => 'database', |
||
| 1228 | 'urlvars' => ['subject' => 'database', 'action' => 'find'], |
||
| 1229 | 'tree' => false, |
||
| 1230 | 'icon' => 'Search', |
||
| 1231 | ], |
||
| 1232 | 'variables' => [ |
||
| 1233 | 'title' => $lang['strvariables'], |
||
| 1234 | 'url' => 'database', |
||
| 1235 | 'urlvars' => ['subject' => 'database', 'action' => 'variables'], |
||
| 1236 | 'help' => 'pg.variable', |
||
| 1237 | 'tree' => false, |
||
| 1238 | 'icon' => 'Variables', |
||
| 1239 | ], |
||
| 1240 | 'processes' => [ |
||
| 1241 | 'title' => $lang['strprocesses'], |
||
| 1242 | 'url' => 'database', |
||
| 1243 | 'urlvars' => ['subject' => 'database', 'action' => 'processes'], |
||
| 1244 | 'help' => 'pg.process', |
||
| 1245 | 'tree' => false, |
||
| 1246 | 'icon' => 'Processes', |
||
| 1247 | ], |
||
| 1248 | 'locks' => [ |
||
| 1249 | 'title' => $lang['strlocks'], |
||
| 1250 | 'url' => 'database', |
||
| 1251 | 'urlvars' => ['subject' => 'database', 'action' => 'locks'], |
||
| 1252 | 'help' => 'pg.locks', |
||
| 1253 | 'tree' => false, |
||
| 1254 | 'icon' => 'Key', |
||
| 1255 | ], |
||
| 1256 | 'admin' => [ |
||
| 1257 | 'title' => $lang['stradmin'], |
||
| 1258 | 'url' => 'database', |
||
| 1259 | 'urlvars' => ['subject' => 'database', 'action' => 'admin'], |
||
| 1260 | 'tree' => false, |
||
| 1261 | 'icon' => 'Admin', |
||
| 1262 | ], |
||
| 1263 | 'privileges' => [ |
||
| 1264 | 'title' => $lang['strprivileges'], |
||
| 1265 | 'url' => 'privileges', |
||
| 1266 | 'urlvars' => ['subject' => 'database'], |
||
| 1267 | 'hide' => !isset($data->privlist['database']), |
||
| 1268 | 'help' => 'pg.privilege', |
||
| 1269 | 'tree' => false, |
||
| 1270 | 'icon' => 'Privileges', |
||
| 1271 | ], |
||
| 1272 | 'languages' => [ |
||
| 1273 | 'title' => $lang['strlanguages'], |
||
| 1274 | 'url' => 'languages', |
||
| 1275 | 'urlvars' => ['subject' => 'database'], |
||
| 1276 | 'hide' => $hide_advanced, |
||
| 1277 | 'help' => 'pg.language', |
||
| 1278 | 'icon' => 'Languages', |
||
| 1279 | ], |
||
| 1280 | 'casts' => [ |
||
| 1281 | 'title' => $lang['strcasts'], |
||
| 1282 | 'url' => 'casts', |
||
| 1283 | 'urlvars' => ['subject' => 'database'], |
||
| 1284 | 'hide' => $hide_advanced, |
||
| 1285 | 'help' => 'pg.cast', |
||
| 1286 | 'icon' => 'Casts', |
||
| 1287 | ], |
||
| 1288 | 'export' => [ |
||
| 1289 | 'title' => $lang['strexport'], |
||
| 1290 | 'url' => 'database', |
||
| 1291 | 'urlvars' => ['subject' => 'database', 'action' => 'export'], |
||
| 1292 | 'hide' => !$this->isDumpEnabled(), |
||
| 1293 | 'tree' => false, |
||
| 1294 | 'icon' => 'Export', |
||
| 1295 | ], |
||
| 1296 | ]; |
||
| 1297 | |||
| 1298 | break; |
||
| 1299 | case 'schema': |
||
| 1300 | $tabs = [ |
||
| 1301 | 'tables' => [ |
||
| 1302 | 'title' => $lang['strtables'], |
||
| 1303 | 'url' => 'tables', |
||
| 1304 | 'urlvars' => ['subject' => 'schema'], |
||
| 1305 | 'help' => 'pg.table', |
||
| 1306 | 'icon' => 'Tables', |
||
| 1307 | ], |
||
| 1308 | 'views' => [ |
||
| 1309 | 'title' => $lang['strviews'], |
||
| 1310 | 'url' => 'views', |
||
| 1311 | 'urlvars' => ['subject' => 'schema'], |
||
| 1312 | 'help' => 'pg.view', |
||
| 1313 | 'icon' => 'Views', |
||
| 1314 | ], |
||
| 1315 | 'matviews' => [ |
||
| 1316 | 'title' => 'M '.$lang['strviews'], |
||
| 1317 | 'url' => 'materializedviews', |
||
| 1318 | 'urlvars' => ['subject' => 'schema'], |
||
| 1319 | 'help' => 'pg.matview', |
||
| 1320 | 'icon' => 'MViews', |
||
| 1321 | ], |
||
| 1322 | 'sequences' => [ |
||
| 1323 | 'title' => $lang['strsequences'], |
||
| 1324 | 'url' => 'sequences', |
||
| 1325 | 'urlvars' => ['subject' => 'schema'], |
||
| 1326 | 'help' => 'pg.sequence', |
||
| 1327 | 'icon' => 'Sequences', |
||
| 1328 | ], |
||
| 1329 | 'functions' => [ |
||
| 1330 | 'title' => $lang['strfunctions'], |
||
| 1331 | 'url' => 'functions', |
||
| 1332 | 'urlvars' => ['subject' => 'schema'], |
||
| 1333 | 'help' => 'pg.function', |
||
| 1334 | 'icon' => 'Functions', |
||
| 1335 | ], |
||
| 1336 | 'fulltext' => [ |
||
| 1337 | 'title' => $lang['strfulltext'], |
||
| 1338 | 'url' => 'fulltext', |
||
| 1339 | 'urlvars' => ['subject' => 'schema'], |
||
| 1340 | 'help' => 'pg.fts', |
||
| 1341 | 'tree' => true, |
||
| 1342 | 'icon' => 'Fts', |
||
| 1343 | ], |
||
| 1344 | 'domains' => [ |
||
| 1345 | 'title' => $lang['strdomains'], |
||
| 1346 | 'url' => 'domains', |
||
| 1347 | 'urlvars' => ['subject' => 'schema'], |
||
| 1348 | 'help' => 'pg.domain', |
||
| 1349 | 'icon' => 'Domains', |
||
| 1350 | ], |
||
| 1351 | 'aggregates' => [ |
||
| 1352 | 'title' => $lang['straggregates'], |
||
| 1353 | 'url' => 'aggregates', |
||
| 1354 | 'urlvars' => ['subject' => 'schema'], |
||
| 1355 | 'hide' => $hide_advanced, |
||
| 1356 | 'help' => 'pg.aggregate', |
||
| 1357 | 'icon' => 'Aggregates', |
||
| 1358 | ], |
||
| 1359 | 'types' => [ |
||
| 1360 | 'title' => $lang['strtypes'], |
||
| 1361 | 'url' => 'types', |
||
| 1362 | 'urlvars' => ['subject' => 'schema'], |
||
| 1363 | 'hide' => $hide_advanced, |
||
| 1364 | 'help' => 'pg.type', |
||
| 1365 | 'icon' => 'Types', |
||
| 1366 | ], |
||
| 1367 | 'operators' => [ |
||
| 1368 | 'title' => $lang['stroperators'], |
||
| 1369 | 'url' => 'operators', |
||
| 1370 | 'urlvars' => ['subject' => 'schema'], |
||
| 1371 | 'hide' => $hide_advanced, |
||
| 1372 | 'help' => 'pg.operator', |
||
| 1373 | 'icon' => 'Operators', |
||
| 1374 | ], |
||
| 1375 | 'opclasses' => [ |
||
| 1376 | 'title' => $lang['stropclasses'], |
||
| 1377 | 'url' => 'opclasses', |
||
| 1378 | 'urlvars' => ['subject' => 'schema'], |
||
| 1379 | 'hide' => $hide_advanced, |
||
| 1380 | 'help' => 'pg.opclass', |
||
| 1381 | 'icon' => 'OperatorClasses', |
||
| 1382 | ], |
||
| 1383 | 'conversions' => [ |
||
| 1384 | 'title' => $lang['strconversions'], |
||
| 1385 | 'url' => 'conversions', |
||
| 1386 | 'urlvars' => ['subject' => 'schema'], |
||
| 1387 | 'hide' => $hide_advanced, |
||
| 1388 | 'help' => 'pg.conversion', |
||
| 1389 | 'icon' => 'Conversions', |
||
| 1390 | ], |
||
| 1391 | 'privileges' => [ |
||
| 1392 | 'title' => $lang['strprivileges'], |
||
| 1393 | 'url' => 'privileges', |
||
| 1394 | 'urlvars' => ['subject' => 'schema'], |
||
| 1395 | 'help' => 'pg.privilege', |
||
| 1396 | 'tree' => false, |
||
| 1397 | 'icon' => 'Privileges', |
||
| 1398 | ], |
||
| 1399 | 'export' => [ |
||
| 1400 | 'title' => $lang['strexport'], |
||
| 1401 | 'url' => 'schemas', |
||
| 1402 | 'urlvars' => ['subject' => 'schema', 'action' => 'export'], |
||
| 1403 | 'hide' => !$this->isDumpEnabled(), |
||
| 1404 | 'tree' => false, |
||
| 1405 | 'icon' => 'Export', |
||
| 1406 | ], |
||
| 1407 | ]; |
||
| 1408 | if (!$data->hasFTS()) { |
||
| 1409 | unset($tabs['fulltext']); |
||
| 1410 | } |
||
| 1411 | |||
| 1412 | break; |
||
| 1413 | case 'table': |
||
| 1414 | $tabs = [ |
||
| 1415 | 'columns' => [ |
||
| 1416 | 'title' => $lang['strcolumns'], |
||
| 1417 | 'url' => 'tblproperties', |
||
| 1418 | 'urlvars' => ['subject' => 'table', 'table' => Decorator::field('table')], |
||
| 1419 | 'icon' => 'Columns', |
||
| 1420 | 'branch' => true, |
||
| 1421 | ], |
||
| 1422 | 'browse' => [ |
||
| 1423 | 'title' => $lang['strbrowse'], |
||
| 1424 | 'icon' => 'Columns', |
||
| 1425 | 'url' => 'display', |
||
| 1426 | 'urlvars' => ['subject' => 'table', 'table' => Decorator::field('table')], |
||
| 1427 | 'return' => 'table', |
||
| 1428 | 'branch' => true, |
||
| 1429 | ], |
||
| 1430 | 'select' => [ |
||
| 1431 | 'title' => $lang['strselect'], |
||
| 1432 | 'icon' => 'Search', |
||
| 1433 | 'url' => 'tables', |
||
| 1434 | 'urlvars' => ['subject' => 'table', 'table' => Decorator::field('table'), 'action' => 'confselectrows'], |
||
| 1435 | 'help' => 'pg.sql.select', |
||
| 1436 | ], |
||
| 1437 | 'insert' => [ |
||
| 1438 | 'title' => $lang['strinsert'], |
||
| 1439 | 'url' => 'tables', |
||
| 1440 | 'urlvars' => [ |
||
| 1441 | 'action' => 'confinsertrow', |
||
| 1442 | 'table' => Decorator::field('table'), |
||
| 1443 | ], |
||
| 1444 | 'help' => 'pg.sql.insert', |
||
| 1445 | 'icon' => 'Operator', |
||
| 1446 | ], |
||
| 1447 | 'indexes' => [ |
||
| 1448 | 'title' => $lang['strindexes'], |
||
| 1449 | 'url' => 'indexes', |
||
| 1450 | 'urlvars' => ['subject' => 'table', 'table' => Decorator::field('table')], |
||
| 1451 | 'help' => 'pg.index', |
||
| 1452 | 'icon' => 'Indexes', |
||
| 1453 | 'branch' => true, |
||
| 1454 | ], |
||
| 1455 | 'constraints' => [ |
||
| 1456 | 'title' => $lang['strconstraints'], |
||
| 1457 | 'url' => 'constraints', |
||
| 1458 | 'urlvars' => ['subject' => 'table', 'table' => Decorator::field('table')], |
||
| 1459 | 'help' => 'pg.constraint', |
||
| 1460 | 'icon' => 'Constraints', |
||
| 1461 | 'branch' => true, |
||
| 1462 | ], |
||
| 1463 | 'triggers' => [ |
||
| 1464 | 'title' => $lang['strtriggers'], |
||
| 1465 | 'url' => 'triggers', |
||
| 1466 | 'urlvars' => ['subject' => 'table', 'table' => Decorator::field('table')], |
||
| 1467 | 'help' => 'pg.trigger', |
||
| 1468 | 'icon' => 'Triggers', |
||
| 1469 | 'branch' => true, |
||
| 1470 | ], |
||
| 1471 | 'rules' => [ |
||
| 1472 | 'title' => $lang['strrules'], |
||
| 1473 | 'url' => 'rules', |
||
| 1474 | 'urlvars' => ['subject' => 'table', 'table' => Decorator::field('table')], |
||
| 1475 | 'help' => 'pg.rule', |
||
| 1476 | 'icon' => 'Rules', |
||
| 1477 | 'branch' => true, |
||
| 1478 | ], |
||
| 1479 | 'admin' => [ |
||
| 1480 | 'title' => $lang['stradmin'], |
||
| 1481 | 'url' => 'tables', |
||
| 1482 | 'urlvars' => ['subject' => 'table', 'table' => Decorator::field('table'), 'action' => 'admin'], |
||
| 1483 | 'icon' => 'Admin', |
||
| 1484 | ], |
||
| 1485 | 'info' => [ |
||
| 1486 | 'title' => $lang['strinfo'], |
||
| 1487 | 'url' => 'info', |
||
| 1488 | 'urlvars' => ['subject' => 'table', 'table' => Decorator::field('table')], |
||
| 1489 | 'icon' => 'Statistics', |
||
| 1490 | ], |
||
| 1491 | 'privileges' => [ |
||
| 1492 | 'title' => $lang['strprivileges'], |
||
| 1493 | 'url' => 'privileges', |
||
| 1494 | 'urlvars' => ['subject' => 'table', 'table' => Decorator::field('table')], |
||
| 1495 | 'help' => 'pg.privilege', |
||
| 1496 | 'icon' => 'Privileges', |
||
| 1497 | ], |
||
| 1498 | 'import' => [ |
||
| 1499 | 'title' => $lang['strimport'], |
||
| 1500 | 'url' => 'tblproperties', |
||
| 1501 | 'urlvars' => ['subject' => 'table', 'table' => Decorator::field('table'), 'action' => 'import'], |
||
| 1502 | 'icon' => 'Import', |
||
| 1503 | 'hide' => false, |
||
| 1504 | ], |
||
| 1505 | 'export' => [ |
||
| 1506 | 'title' => $lang['strexport'], |
||
| 1507 | 'url' => 'tblproperties', |
||
| 1508 | 'urlvars' => ['subject' => 'table', 'table' => Decorator::field('table'), 'action' => 'export'], |
||
| 1509 | 'icon' => 'Export', |
||
| 1510 | 'hide' => false, |
||
| 1511 | ], |
||
| 1512 | ]; |
||
| 1513 | |||
| 1514 | break; |
||
| 1515 | case 'view': |
||
| 1516 | $tabs = [ |
||
| 1517 | 'columns' => [ |
||
| 1518 | 'title' => $lang['strcolumns'], |
||
| 1519 | 'url' => 'viewproperties', |
||
| 1520 | 'urlvars' => ['subject' => 'view', 'view' => Decorator::field('view')], |
||
| 1521 | 'icon' => 'Columns', |
||
| 1522 | 'branch' => true, |
||
| 1523 | ], |
||
| 1524 | 'browse' => [ |
||
| 1525 | 'title' => $lang['strbrowse'], |
||
| 1526 | 'icon' => 'Columns', |
||
| 1527 | 'url' => 'display', |
||
| 1528 | 'urlvars' => [ |
||
| 1529 | 'action' => 'confselectrows', |
||
| 1530 | 'return' => 'schema', |
||
| 1531 | 'subject' => 'view', |
||
| 1532 | 'view' => Decorator::field('view'), |
||
| 1533 | ], |
||
| 1534 | 'branch' => true, |
||
| 1535 | ], |
||
| 1536 | 'select' => [ |
||
| 1537 | 'title' => $lang['strselect'], |
||
| 1538 | 'icon' => 'Search', |
||
| 1539 | 'url' => 'views', |
||
| 1540 | 'urlvars' => ['action' => 'confselectrows', 'view' => Decorator::field('view')], |
||
| 1541 | 'help' => 'pg.sql.select', |
||
| 1542 | ], |
||
| 1543 | 'definition' => [ |
||
| 1544 | 'title' => $lang['strdefinition'], |
||
| 1545 | 'url' => 'viewproperties', |
||
| 1546 | 'urlvars' => ['subject' => 'view', 'view' => Decorator::field('view'), 'action' => 'definition'], |
||
| 1547 | 'icon' => 'Definition', |
||
| 1548 | ], |
||
| 1549 | 'rules' => [ |
||
| 1550 | 'title' => $lang['strrules'], |
||
| 1551 | 'url' => 'rules', |
||
| 1552 | 'urlvars' => ['subject' => 'view', 'view' => Decorator::field('view')], |
||
| 1553 | 'help' => 'pg.rule', |
||
| 1554 | 'icon' => 'Rules', |
||
| 1555 | 'branch' => true, |
||
| 1556 | ], |
||
| 1557 | 'privileges' => [ |
||
| 1558 | 'title' => $lang['strprivileges'], |
||
| 1559 | 'url' => 'privileges', |
||
| 1560 | 'urlvars' => ['subject' => 'view', 'view' => Decorator::field('view')], |
||
| 1561 | 'help' => 'pg.privilege', |
||
| 1562 | 'icon' => 'Privileges', |
||
| 1563 | ], |
||
| 1564 | 'export' => [ |
||
| 1565 | 'title' => $lang['strexport'], |
||
| 1566 | 'url' => 'viewproperties', |
||
| 1567 | 'urlvars' => ['subject' => 'view', 'view' => Decorator::field('view'), 'action' => 'export'], |
||
| 1568 | 'icon' => 'Export', |
||
| 1569 | 'hide' => false, |
||
| 1570 | ], |
||
| 1571 | ]; |
||
| 1572 | |||
| 1573 | break; |
||
| 1574 | case 'matview': |
||
| 1575 | $tabs = [ |
||
| 1576 | 'columns' => [ |
||
| 1577 | 'title' => $lang['strcolumns'], |
||
| 1578 | 'url' => 'materializedviewproperties', |
||
| 1579 | 'urlvars' => ['subject' => 'matview', 'matview' => Decorator::field('matview')], |
||
| 1580 | 'icon' => 'Columns', |
||
| 1581 | 'branch' => true, |
||
| 1582 | ], |
||
| 1583 | 'browse' => [ |
||
| 1584 | 'title' => $lang['strbrowse'], |
||
| 1585 | 'icon' => 'Columns', |
||
| 1586 | 'url' => 'display', |
||
| 1587 | 'urlvars' => [ |
||
| 1588 | 'action' => 'confselectrows', |
||
| 1589 | 'return' => 'schema', |
||
| 1590 | 'subject' => 'matview', |
||
| 1591 | 'matview' => Decorator::field('matview'), |
||
| 1592 | ], |
||
| 1593 | 'branch' => true, |
||
| 1594 | ], |
||
| 1595 | 'select' => [ |
||
| 1596 | 'title' => $lang['strselect'], |
||
| 1597 | 'icon' => 'Search', |
||
| 1598 | 'url' => 'materializedviews', |
||
| 1599 | 'urlvars' => ['action' => 'confselectrows', 'matview' => Decorator::field('matview')], |
||
| 1600 | 'help' => 'pg.sql.select', |
||
| 1601 | ], |
||
| 1602 | 'definition' => [ |
||
| 1603 | 'title' => $lang['strdefinition'], |
||
| 1604 | 'url' => 'materializedviewproperties', |
||
| 1605 | 'urlvars' => ['subject' => 'matview', 'matview' => Decorator::field('matview'), 'action' => 'definition'], |
||
| 1606 | 'icon' => 'Definition', |
||
| 1607 | ], |
||
| 1608 | 'indexes' => [ |
||
| 1609 | 'title' => $lang['strindexes'], |
||
| 1610 | 'url' => 'indexes', |
||
| 1611 | 'urlvars' => ['subject' => 'matview', 'matview' => Decorator::field('matview')], |
||
| 1612 | 'help' => 'pg.index', |
||
| 1613 | 'icon' => 'Indexes', |
||
| 1614 | 'branch' => true, |
||
| 1615 | ], |
||
| 1616 | /*'constraints' => [ |
||
| 1617 | 'title' => $lang['strconstraints'], |
||
| 1618 | 'url' => 'constraints', |
||
| 1619 | 'urlvars' => ['subject' => 'matview', 'matview' => Decorator::field('matview')], |
||
| 1620 | 'help' => 'pg.constraint', |
||
| 1621 | 'icon' => 'Constraints', |
||
| 1622 | 'branch' => true, |
||
| 1623 | */ |
||
| 1624 | |||
| 1625 | 'rules' => [ |
||
| 1626 | 'title' => $lang['strrules'], |
||
| 1627 | 'url' => 'rules', |
||
| 1628 | 'urlvars' => ['subject' => 'matview', 'matview' => Decorator::field('matview')], |
||
| 1629 | 'help' => 'pg.rule', |
||
| 1630 | 'icon' => 'Rules', |
||
| 1631 | 'branch' => true, |
||
| 1632 | ], |
||
| 1633 | 'privileges' => [ |
||
| 1634 | 'title' => $lang['strprivileges'], |
||
| 1635 | 'url' => 'privileges', |
||
| 1636 | 'urlvars' => ['subject' => 'matview', 'matview' => Decorator::field('matview')], |
||
| 1637 | 'help' => 'pg.privilege', |
||
| 1638 | 'icon' => 'Privileges', |
||
| 1639 | ], |
||
| 1640 | 'export' => [ |
||
| 1641 | 'title' => $lang['strexport'], |
||
| 1642 | 'url' => 'materializedviewproperties', |
||
| 1643 | 'urlvars' => ['subject' => 'matview', 'matview' => Decorator::field('matview'), 'action' => 'export'], |
||
| 1644 | 'icon' => 'Export', |
||
| 1645 | 'hide' => false, |
||
| 1646 | ], |
||
| 1647 | ]; |
||
| 1648 | |||
| 1649 | break; |
||
| 1650 | case 'function': |
||
| 1651 | $tabs = [ |
||
| 1652 | 'definition' => [ |
||
| 1653 | 'title' => $lang['strdefinition'], |
||
| 1654 | 'url' => 'functions', |
||
| 1655 | 'urlvars' => [ |
||
| 1656 | 'subject' => 'function', |
||
| 1657 | 'function' => Decorator::field('function'), |
||
| 1658 | 'function_oid' => Decorator::field('function_oid'), |
||
| 1659 | 'action' => 'properties', |
||
| 1660 | ], |
||
| 1661 | 'icon' => 'Definition', |
||
| 1662 | ], |
||
| 1663 | 'privileges' => [ |
||
| 1664 | 'title' => $lang['strprivileges'], |
||
| 1665 | 'url' => 'privileges', |
||
| 1666 | 'urlvars' => [ |
||
| 1667 | 'subject' => 'function', |
||
| 1668 | 'function' => Decorator::field('function'), |
||
| 1669 | 'function_oid' => Decorator::field('function_oid'), |
||
| 1670 | ], |
||
| 1671 | 'icon' => 'Privileges', |
||
| 1672 | ], |
||
| 1673 | ]; |
||
| 1674 | |||
| 1675 | break; |
||
| 1676 | case 'aggregate': |
||
| 1677 | $tabs = [ |
||
| 1678 | 'definition' => [ |
||
| 1679 | 'title' => $lang['strdefinition'], |
||
| 1680 | 'url' => 'aggregates', |
||
| 1681 | 'urlvars' => [ |
||
| 1682 | 'subject' => 'aggregate', |
||
| 1683 | 'aggrname' => Decorator::field('aggrname'), |
||
| 1684 | 'aggrtype' => Decorator::field('aggrtype'), |
||
| 1685 | 'action' => 'properties', |
||
| 1686 | ], |
||
| 1687 | 'icon' => 'Definition', |
||
| 1688 | ], |
||
| 1689 | ]; |
||
| 1690 | |||
| 1691 | break; |
||
| 1692 | case 'role': |
||
| 1693 | $tabs = [ |
||
| 1694 | 'definition' => [ |
||
| 1695 | 'title' => $lang['strdefinition'], |
||
| 1696 | 'url' => 'roles', |
||
| 1697 | 'urlvars' => [ |
||
| 1698 | 'subject' => 'role', |
||
| 1699 | 'rolename' => Decorator::field('rolename'), |
||
| 1700 | 'action' => 'properties', |
||
| 1701 | ], |
||
| 1702 | 'icon' => 'Definition', |
||
| 1703 | ], |
||
| 1704 | ]; |
||
| 1705 | |||
| 1706 | break; |
||
| 1707 | case 'popup': |
||
| 1708 | $tabs = [ |
||
| 1709 | 'sql' => [ |
||
| 1710 | 'title' => $lang['strsql'], |
||
| 1711 | 'url' => '/src/views/sqledit', |
||
| 1712 | 'urlvars' => ['action' => 'sql', 'subject' => 'schema'], |
||
| 1713 | 'help' => 'pg.sql', |
||
| 1714 | 'icon' => 'SqlEditor', |
||
| 1715 | ], |
||
| 1716 | 'find' => [ |
||
| 1717 | 'title' => $lang['strfind'], |
||
| 1718 | 'url' => '/src/views/sqledit', |
||
| 1719 | 'urlvars' => ['action' => 'find', 'subject' => 'schema'], |
||
| 1720 | 'icon' => 'Search', |
||
| 1721 | ], |
||
| 1722 | ]; |
||
| 1723 | |||
| 1724 | break; |
||
| 1725 | case 'column': |
||
| 1726 | $tabs = [ |
||
| 1727 | 'properties' => [ |
||
| 1728 | 'title' => $lang['strcolprop'], |
||
| 1729 | 'url' => 'colproperties', |
||
| 1730 | 'urlvars' => [ |
||
| 1731 | 'subject' => 'column', |
||
| 1732 | 'table' => Decorator::field('table'), |
||
| 1733 | 'column' => Decorator::field('column'), |
||
| 1734 | ], |
||
| 1735 | 'icon' => 'Column', |
||
| 1736 | ], |
||
| 1737 | 'privileges' => [ |
||
| 1738 | 'title' => $lang['strprivileges'], |
||
| 1739 | 'url' => 'privileges', |
||
| 1740 | 'urlvars' => [ |
||
| 1741 | 'subject' => 'column', |
||
| 1742 | 'table' => Decorator::field('table'), |
||
| 1743 | 'column' => Decorator::field('column'), |
||
| 1744 | ], |
||
| 1745 | 'help' => 'pg.privilege', |
||
| 1746 | 'icon' => 'Privileges', |
||
| 1747 | ], |
||
| 1748 | ]; |
||
| 1749 | |||
| 1750 | break; |
||
| 1751 | case 'fulltext': |
||
| 1752 | $tabs = [ |
||
| 1753 | 'ftsconfigs' => [ |
||
| 1754 | 'title' => $lang['strftstabconfigs'], |
||
| 1755 | 'url' => 'fulltext', |
||
| 1756 | 'urlvars' => ['subject' => 'schema'], |
||
| 1757 | 'hide' => !$data->hasFTS(), |
||
| 1758 | 'help' => 'pg.ftscfg', |
||
| 1759 | 'tree' => true, |
||
| 1760 | 'icon' => 'FtsCfg', |
||
| 1761 | ], |
||
| 1762 | 'ftsdicts' => [ |
||
| 1763 | 'title' => $lang['strftstabdicts'], |
||
| 1764 | 'url' => 'fulltext', |
||
| 1765 | 'urlvars' => ['subject' => 'schema', 'action' => 'viewdicts'], |
||
| 1766 | 'hide' => !$data->hasFTS(), |
||
| 1767 | 'help' => 'pg.ftsdict', |
||
| 1768 | 'tree' => true, |
||
| 1769 | 'icon' => 'FtsDict', |
||
| 1770 | ], |
||
| 1771 | 'ftsparsers' => [ |
||
| 1772 | 'title' => $lang['strftstabparsers'], |
||
| 1773 | 'url' => 'fulltext', |
||
| 1774 | 'urlvars' => ['subject' => 'schema', 'action' => 'viewparsers'], |
||
| 1775 | 'hide' => !$data->hasFTS(), |
||
| 1776 | 'help' => 'pg.ftsparser', |
||
| 1777 | 'tree' => true, |
||
| 1778 | 'icon' => 'FtsParser', |
||
| 1779 | ], |
||
| 1780 | ]; |
||
| 1781 | |||
| 1782 | break; |
||
| 1783 | } |
||
| 1784 | |||
| 1785 | // Tabs hook's place |
||
| 1786 | $plugin_functions_parameters = [ |
||
| 1787 | 'tabs' => &$tabs, |
||
| 1788 | 'section' => $section, |
||
| 1789 | ]; |
||
| 1790 | $plugin_manager->do_hook('tabs', $plugin_functions_parameters); |
||
| 1791 | |||
| 1792 | return $tabs; |
||
| 1793 | } |
||
| 1794 | |||
| 1795 | /** |
||
| 1796 | * Get the URL for the last active tab of a particular tab bar. |
||
| 1797 | * |
||
| 1798 | * @param $section |
||
| 1799 | * |
||
| 1800 | * @return null|mixed |
||
| 1801 | */ |
||
| 1802 | public function getLastTabURL($section) |
||
| 1815 | } |
||
| 1816 | |||
| 1817 | /** |
||
| 1818 | * Do multi-page navigation. Displays the prev, next and page options. |
||
| 1819 | * |
||
| 1820 | * @param $page - the page currently viewed |
||
| 1821 | * @param $pages - the maximum number of pages |
||
| 1822 | * @param $gets - the parameters to include in the link to the wanted page |
||
| 1823 | * @param $max_width - the number of pages to make available at any one time (default = 20) |
||
| 1824 | */ |
||
| 1825 | public function printPages($page, $pages, $gets, $max_width = 20) |
||
| 1884 | } |
||
| 1885 | } |
||
| 1886 | |||
| 1887 | /** |
||
| 1888 | * Converts a PHP.INI size variable to bytes. Taken from publically available |
||
| 1889 | * function by Chris DeRose, here: http://www.php.net/manual/en/configuration.directives.php#ini.file-uploads. |
||
| 1890 | * |
||
| 1891 | * @param $strIniSize The PHP.INI variable |
||
| 1892 | * |
||
| 1893 | * @return size in bytes, false on failure |
||
| 1894 | */ |
||
| 1895 | public function inisizeToBytes($strIniSize) |
||
| 1896 | { |
||
| 1897 | // This function will take the string value of an ini 'size' parameter, |
||
| 1898 | // and return a double (64-bit float) representing the number of bytes |
||
| 1899 | // that the parameter represents. Or false if $strIniSize is unparseable. |
||
| 1900 | $a_IniParts = []; |
||
| 1901 | |||
| 1902 | if (!is_string($strIniSize)) { |
||
| 1903 | return false; |
||
| 1904 | } |
||
| 1905 | |||
| 1906 | if (!preg_match('/^(\d+)([bkm]*)$/i', $strIniSize, $a_IniParts)) { |
||
| 1907 | return false; |
||
| 1908 | } |
||
| 1909 | |||
| 1910 | $nSize = (float) $a_IniParts[1]; |
||
| 1911 | $strUnit = strtolower($a_IniParts[2]); |
||
| 1912 | |||
| 1913 | switch ($strUnit) { |
||
| 1914 | case 'm': |
||
| 1915 | return $nSize * (float) 1048576; |
||
| 1916 | case 'k': |
||
| 1917 | return $nSize * (float) 1024; |
||
| 1918 | case 'b': |
||
| 1919 | default: |
||
| 1920 | return $nSize; |
||
| 1921 | } |
||
| 1922 | } |
||
| 1923 | |||
| 1924 | public function getRequestVars($subject = '') |
||
| 1925 | { |
||
| 1926 | $v = []; |
||
| 1927 | if (!empty($subject)) { |
||
| 1928 | $v['subject'] = $subject; |
||
| 1929 | } |
||
| 1930 | |||
| 1931 | if ($this->_server_id !== null && $subject != 'root') { |
||
| 1932 | $v['server'] = $this->_server_id; |
||
| 1933 | if ($this->_database !== null && $subject != 'server') { |
||
| 1934 | $v['database'] = $this->_database; |
||
| 1935 | if (isset($_REQUEST['schema']) && $subject != 'database') { |
||
| 1936 | $v['schema'] = $_REQUEST['schema']; |
||
| 1937 | } |
||
| 1938 | } |
||
| 1939 | } |
||
| 1940 | //$this->prtrace($v); |
||
| 1941 | return $v; |
||
| 1942 | } |
||
| 1943 | |||
| 1944 | public function icon($icon) |
||
| 1945 | { |
||
| 1946 | if (is_string($icon)) { |
||
| 1947 | $path = "/images/themes/{$this->conf['theme']}/{$icon}"; |
||
| 1948 | if (file_exists(\BASE_PATH.$path.'.png')) { |
||
| 1949 | return SUBFOLDER.$path.'.png'; |
||
| 1950 | } |
||
| 1951 | |||
| 1952 | if (file_exists(\BASE_PATH.$path.'.gif')) { |
||
| 1953 | return SUBFOLDER.$path.'.gif'; |
||
| 1954 | } |
||
| 1955 | |||
| 1956 | if (file_exists(\BASE_PATH.$path.'.ico')) { |
||
| 1957 | return SUBFOLDER.$path.'.ico'; |
||
| 1958 | } |
||
| 1959 | |||
| 1960 | $path = "/images/themes/default/{$icon}"; |
||
| 1961 | if (file_exists(\BASE_PATH.$path.'.png')) { |
||
| 1962 | return SUBFOLDER.$path.'.png'; |
||
| 1963 | } |
||
| 1964 | |||
| 1965 | if (file_exists(\BASE_PATH.$path.'.gif')) { |
||
| 1966 | return SUBFOLDER.$path.'.gif'; |
||
| 1967 | } |
||
| 1968 | |||
| 1969 | if (file_exists(\BASE_PATH.$path.'.ico')) { |
||
| 1970 | return SUBFOLDER.$path.'.ico'; |
||
| 1971 | } |
||
| 1972 | } else { |
||
| 1973 | // Icon from plugins |
||
| 1974 | $path = "/plugins/{$icon[0]}/images/{$icon[1]}"; |
||
| 1975 | if (file_exists(\BASE_PATH.$path.'.png')) { |
||
| 1976 | return SUBFOLDER.$path.'.png'; |
||
| 1977 | } |
||
| 1978 | |||
| 1979 | if (file_exists(\BASE_PATH.$path.'.gif')) { |
||
| 1980 | return SUBFOLDER.$path.'.gif'; |
||
| 1981 | } |
||
| 1982 | |||
| 1983 | if (file_exists(\BASE_PATH.$path.'.ico')) { |
||
| 1984 | return SUBFOLDER.$path.'.ico'; |
||
| 1985 | } |
||
| 1986 | } |
||
| 1987 | |||
| 1988 | return ''; |
||
| 1989 | } |
||
| 1990 | |||
| 1991 | /** |
||
| 1992 | * Function to escape command line parameters. |
||
| 1993 | * |
||
| 1994 | * @param string $str The string to escape |
||
| 1995 | * |
||
| 1996 | * @return string The escaped string |
||
| 1997 | */ |
||
| 1998 | public function escapeShellArg($str) |
||
| 1999 | { |
||
| 2000 | //$data = $this->getDatabaseAccessor(); |
||
| 2001 | $lang = $this->lang; |
||
| 2002 | |||
| 2003 | if (strtoupper(substr(PHP_OS, 0, 3)) === 'WIN') { |
||
| 2004 | // Due to annoying PHP bugs, shell arguments cannot be escaped |
||
| 2005 | // (command simply fails), so we cannot allow complex objects |
||
| 2006 | // to be dumped. |
||
| 2007 | if (preg_match('/^[_.[:alnum:]]+$/', $str)) { |
||
| 2008 | return $str; |
||
| 2009 | } |
||
| 2010 | |||
| 2011 | return $this->halt($lang['strcannotdumponwindows']); |
||
| 2012 | } |
||
| 2013 | |||
| 2014 | return escapeshellarg($str); |
||
| 2015 | } |
||
| 2016 | |||
| 2017 | /** |
||
| 2018 | * Function to escape command line programs. |
||
| 2019 | * |
||
| 2020 | * @param string $str The string to escape |
||
| 2021 | * |
||
| 2022 | * @return string The escaped string |
||
| 2023 | */ |
||
| 2024 | public function escapeShellCmd($str) |
||
| 2035 | } |
||
| 2036 | |||
| 2037 | /** |
||
| 2038 | * Save the given SQL script in the history |
||
| 2039 | * of the database and server. |
||
| 2040 | * |
||
| 2041 | * @param $script the SQL script to save |
||
| 2042 | */ |
||
| 2043 | public function saveScriptHistory($script) |
||
| 2044 | { |
||
| 2045 | list($usec, $sec) = explode(' ', microtime()); |
||
| 2046 | $time = ((float) $usec + (float) $sec); |
||
| 2047 | $_SESSION['history'][$_REQUEST['server']][$_REQUEST['database']]["${time}"] = [ |
||
| 2048 | 'query' => $script, |
||
| 2049 | 'paginate' => !isset($_REQUEST['paginate']) ? 'f' : 't', |
||
| 2050 | 'queryid' => $time, |
||
| 2051 | ]; |
||
| 2052 | } |
||
| 2053 | |||
| 2054 | /** |
||
| 2055 | * returns an array representing FKs definition for a table, sorted by fields |
||
|
1 ignored issue
–
show
|
|||
| 2056 | * or by constraint. |
||
| 2057 | * |
||
| 2058 | * @param $table The table to retrieve FK contraints from |
||
| 2059 | * @returns the array of FK definition: |
||
| 2060 | * array( |
||
| 2061 | * 'byconstr' => array( |
||
| 2062 | * constrain id => array( |
||
| 2063 | * confrelid => foreign relation oid |
||
| 2064 | * f_schema => foreign schema name |
||
| 2065 | * f_table => foreign table name |
||
| 2066 | * pattnums => array of parent's fields nums |
||
| 2067 | * pattnames => array of parent's fields names |
||
| 2068 | * fattnames => array of foreign attributes names |
||
| 2069 | * ) |
||
| 2070 | * ), |
||
| 2071 | * 'byfield' => array( |
||
| 2072 | * attribute num => array (constraint id, ...) |
||
| 2073 | * ), |
||
| 2074 | * 'code' => HTML/js code to include in the page for auto-completion |
||
| 2075 | * ) |
||
| 2076 | */ |
||
| 2077 | public function getAutocompleteFKProperties($table) |
||
| 2159 | } |
||
| 2160 | } |
||
| 2161 |