dropDatabasesAction();
return;
}
require_once 'libraries/server_common.inc.php';
require_once 'libraries/replication.inc.php';
require_once 'libraries/build_html_for_db.lib.php';
$header = $this->response->getHeader();
$scripts = $header->getScripts();
$scripts->addFile('server_databases.js');
list($sort_by, $sort_order) = $this->_getListForSortDatabase();
$dbstats = empty($_REQUEST['dbstats']) ? 0 : 1;
$pos = empty($_REQUEST['pos']) ? 0 : (int) $_REQUEST['pos'];
/**
* Displays the sub-page heading
*/
$header_type = $dbstats ? "database_statistics" : "databases";
$this->response->addHTML(PMA_getHtmlForSubPageHeader($header_type));
/**
* Displays For Create database.
*/
$html = '';
if ($GLOBALS['cfg']['ShowCreateDb']) {
$html .= '
- ' . "\n";
include 'libraries/display_create_database.lib.php';
$html .= '
' . "\n";
$html .= '
' . "\n";
}
/**
* Gets the databases list
*/
if ($GLOBALS['server'] > 0) {
$databases = $this->dbi->getDatabasesFull(
null, $dbstats, null, $sort_by, $sort_order, $pos, true
);
$databases_count = count($GLOBALS['pma']->databases);
} else {
$databases_count = 0;
}
/**
* Displays the page
*/
if ($databases_count > 0 && ! empty($databases)) {
$html .= $this->_getHtmlForDatabase(
$databases,
$databases_count,
$pos,
$dbstats,
$sort_by,
$sort_order,
$GLOBALS['is_superuser'],
$GLOBALS['cfg'],
$replication_types,
$GLOBALS['replication_info'],
$GLOBALS['url_query']
);
} else {
$html .= __('No databases');
}
unset($databases_count);
$this->response->addHTML($html);
}
/**
* Handles dropping multiple databases
*
* @return void
*/
public function dropDatabasesAction()
{
if (! isset($_REQUEST['selected_dbs']) && ! isset($_REQUEST['query_type'])) {
$message = Message::error(__('No databases selected.'));
} else {
$action = 'server_databases.php';
$submit_mult = 'drop_db';
$err_url = 'server_databases.php' . PMA_URL_getCommon();
if (isset($_REQUEST['selected_dbs'])
&& !isset($_REQUEST['is_js_confirmed'])
) {
$selected_db = $_REQUEST['selected_dbs'];
}
if (isset($_REQUEST['is_js_confirmed'])) {
$_REQUEST = array(
'query_type' => $submit_mult,
'selected' => $_REQUEST['selected_dbs'],
'mult_btn' => __('Yes'),
'db' => $GLOBALS['db'],
'table' => $GLOBALS['table']);
}
//the following variables will be used on mult_submits.inc.php
global $query_type, $selected, $mult_btn;
include 'libraries/mult_submits.inc.php';
unset($action, $submit_mult, $err_url, $selected_db, $GLOBALS['db']);
if (empty($message)) {
if ($mult_btn == __('Yes')) {
$number_of_databases = count($selected);
} else {
$number_of_databases = 0;
}
$message = Message::success(
_ngettext(
'%1$d database has been dropped successfully.',
'%1$d databases have been dropped successfully.',
$number_of_databases
)
);
$message->addParam($number_of_databases);
}
}
if ($GLOBALS['is_ajax_request'] && $message instanceof Message) {
$this->response->setRequestStatus($message->isSuccess());
$this->response->addJSON('message', $message);
}
}
/**
* Returns the array about $sort_order and $sort_by
*
* @return Array
*/
private function _getListForSortDatabase()
{
if (empty($_REQUEST['sort_by'])) {
$sort_by = 'SCHEMA_NAME';
} else {
$sort_by_whitelist = array(
'SCHEMA_NAME',
'DEFAULT_COLLATION_NAME',
'SCHEMA_TABLES',
'SCHEMA_TABLE_ROWS',
'SCHEMA_DATA_LENGTH',
'SCHEMA_INDEX_LENGTH',
'SCHEMA_LENGTH',
'SCHEMA_DATA_FREE'
);
if (in_array($_REQUEST['sort_by'], $sort_by_whitelist)) {
$sort_by = $_REQUEST['sort_by'];
} else {
$sort_by = 'SCHEMA_NAME';
}
}
if (isset($_REQUEST['sort_order'])
&& /*overload*/mb_strtolower($_REQUEST['sort_order']) == 'desc'
) {
$sort_order = 'desc';
} else {
$sort_order = 'asc';
}
return array($sort_by, $sort_order);
}
/**
* Returns the html for Database List
*
* @param Array $databases GBI return databases
* @param int $databases_count database count
* @param int $pos display pos
* @param Array $dbstats database status
* @param string $sort_by sort by string
* @param string $sort_order sort order string
* @param bool $is_superuser User status
* @param Array $cfg configuration
* @param array $replication_types replication types
* @param array $replication_info replication info
* @param string $url_query url query
*
* @return string
*/
private function _getHtmlForDatabase(
$databases, $databases_count, $pos, $dbstats,
$sort_by, $sort_order, $is_superuser, $cfg,
$replication_types, $replication_info, $url_query
) {
$html = '';
reset($databases);
$first_database = current($databases);
// table col order
$column_order = PMA_getColumnOrder();
$_url_params = array(
'pos' => $pos,
'dbstats' => $dbstats,
'sort_by' => $sort_by,
'sort_order' => $sort_order,
);
$html .= Util::getListNavigator(
$databases_count, $pos, $_url_params, 'server_databases.php',
'frame_content', $GLOBALS['cfg']['MaxDbList']
);
$_url_params['pos'] = $pos;
$html .= '';
$html .= '
';
return $html;
}
/**
* Returns the html for Table footer buttons
*
* @param bool $is_allowUserDropDb Allow user drop database
* @param bool $is_superuser User status
*
* @return string
*/
private function _getHtmlForTableFooterButtons($is_allowUserDropDb, $is_superuser)
{
if (!$is_superuser && !$is_allowUserDropDb) {
return '';
}
$html = Util::getWithSelected(
$GLOBALS['pmaThemeImage'], $GLOBALS['text_dir'], "dbStatsForm"
);
$html .= Util::getButtonOrImage(
'',
'mult_submit' . ' ajax',
'drop_selected_dbs',
__('Drop'), 'b_deltbl.png'
);
return $html;
}
/**
* Returns the html for Table footer
*
* @param bool $is_allowUserDropDb Allow user drop database
* @param bool $is_superuser User status
* @param int $databases_count Database count
* @param string $column_order column order
* @param array $replication_types replication types
* @param string $first_database First database
*
* @return string
*/
private function _getHtmlForTableFooter(
$is_allowUserDropDb, $is_superuser,
$databases_count, $column_order,
$replication_types, $first_database
) {
$html = '' . "\n";
if ($is_superuser || $is_allowUserDropDb) {
$html .= ' | ' . "\n";
}
$html .= ' ' . __('Total') . ': '
. $databases_count . ' | ' . "\n";
$html .= $this->_getHtmlForColumnOrder($column_order, $first_database);
foreach ($replication_types as $type) {
if ($GLOBALS['replication_info'][$type]['status']) {
$html .= ' | ' . "\n";
}
}
if ($is_superuser) {
$html .= ' | ' . "\n";
}
$html .= '
' . "\n";
$html .= '' . "\n";
return $html;
}
/**
* Returns the html for Database List and Column order
*
* @param array $databases GBI return databases
* @param bool $is_superuser User status
* @param string $url_query Url query
* @param array $column_order column order
* @param array $replication_types replication types
* @param array $replication_info replication info
*
* @return Array
*/
private function _getHtmlAndColumnOrderForDatabaseList(
$databases, $is_superuser, $url_query,
$column_order, $replication_types, $replication_info
) {
$odd_row = true;
$html = '' . "\n";
foreach ($databases as $current) {
$tr_class = $odd_row ? 'odd' : 'even';
if ($this->dbi->isSystemSchema($current['SCHEMA_NAME'], true)) {
$tr_class .= ' noclick';
}
$html .= '' . "\n";
$odd_row = ! $odd_row;
list($column_order, $generated_html) = PMA_buildHtmlForDb(
$current,
$is_superuser,
$url_query,
$column_order,
$replication_types,
$replication_info
);
$html .= $generated_html;
$html .= '
' . "\n";
} // end foreach ($databases as $key => $current)
unset($current, $odd_row);
$html .= '';
return array($html, $column_order);
}
/**
* Returns the html for Column Order
*
* @param array $column_order Column order
* @param array $first_database The first display database
*
* @return string
*/
private function _getHtmlForColumnOrder($column_order, $first_database)
{
$html = "";
// avoid execution path notice
$unit = "";
foreach ($column_order as $stat_name => $stat) {
if (array_key_exists($stat_name, $first_database)) {
if ($stat['format'] === 'byte') {
list($value, $unit)
= Util::formatByteDown($stat['footer'], 3, 1);
} elseif ($stat['format'] === 'number') {
$value = Util::formatNumber($stat['footer'], 0);
} else {
$value = htmlentities($stat['footer'], 0);
}
$html .= ' ';
if (isset($stat['description_function'])) {
$html .= '';
}
$html .= $value;
if (isset($stat['description_function'])) {
$html .= '';
}
$html .= ' | ' . "\n";
if ($stat['format'] === 'byte') {
$html .= ' ' . $unit . ' | ' . "\n";
}
}
}
return $html;
}
/**
* Returns the html for Column Order with Sort
*
* @param bool $is_superuser User status
* @param bool $is_allowUserDropDb Allow user drop database
* @param Array $_url_params Url params
* @param string $sort_by sort column name
* @param string $sort_order order
* @param array $column_order column order
* @param array $first_database database to show
*
* @return string
*/
private function _getHtmlForColumnOrderWithSort(
$is_superuser, $is_allowUserDropDb,
$_url_params, $sort_by, $sort_order,
$column_order, $first_database
) {
$html = ($is_superuser || $is_allowUserDropDb
? ' | ' . "\n"
: '')
. ' ' . "\n"
. ' ' . __('Database') . "\n"
. ($sort_by == 'SCHEMA_NAME'
? ' ' . Util::getImage(
's_' . $sort_order . '.png',
($sort_order == 'asc' ? __('Ascending') : __('Descending'))
) . "\n"
: ''
)
. ' | ' . "\n";
$table_columns = 3;
foreach ($column_order as $stat_name => $stat) {
if (!array_key_exists($stat_name, $first_database)) {
continue;
}
if ($stat['format'] === 'byte') {
$table_columns += 2;
$colspan = ' colspan="2"';
} else {
$table_columns++;
$colspan = '';
}
$_url_params['sort_by'] = $stat_name;
$_url_params['sort_order']
= ($sort_by == $stat_name && $sort_order == 'desc') ? 'asc' : 'desc';
$html .= ' '
. '' . "\n"
. ' ' . $stat['disp_name'] . "\n"
. ($sort_by == $stat_name
? ' ' . Util::getImage(
's_' . $sort_order . '.png',
($sort_order == 'asc' ? __('Ascending') : __('Descending'))
) . "\n"
: ''
)
. ' | ' . "\n";
}
return $html;
}
/**
* Returns the html for Enable Statistics
*
* @param string $url_query Url query
* @param string $html html for database list
*
* @return string
*/
private function _getHtmlForNoticeEnableStatistics($url_query, $html)
{
$notice = Message::notice(
__(
'Note: Enabling the database statistics here might cause '
. 'heavy traffic between the web server and the MySQL server.'
)
)->getDisplay();
$html .= $notice;
$items = array();
$items[] = array(
'content' => '' . "\n"
. __('Enable statistics')
. '
' . "\n",
'class' => 'li_switch_dbstats',
'url' => array(
'href' => 'server_databases.php' . $url_query . '&dbstats=1',
'title' => __('Enable statistics')
),
);
$html .= Template::get('list/unordered')->render(
array('items' => $items,)
);
return $html;
}
/**
* Returns the html for database replication types
*
* @param bool $is_superuser User status
* @param Array $replication_types replication types
* @param bool $cfg_iconic cfg about Properties Iconic
*
* @return string
*/
private function _getHtmlForReplicationType(
$is_superuser, $replication_types, $cfg_iconic
) {
$html = '';
foreach ($replication_types as $type) {
if ($type == "master") {
$name = __('Master replication');
} elseif ($type == "slave") {
$name = __('Slave replication');
}
if ($GLOBALS['replication_info'][$type]['status']) {
$html .= ' ' . $name . ' | ' . "\n";
}
}
if ($is_superuser) {
$html .= ' ' . ($cfg_iconic ? '' : __('Action')) . "\n"
. ' | ' . "\n";
}
return $html;
}
}