Froxlor/customer_mysql.php

199 lines
6.3 KiB
PHP
Raw Normal View History

<?php
/**
* This file is part of the Froxlor project.
* Copyright (c) 2010 the Froxlor Team (see authors).
*
2022-04-28 18:48:00 +00:00
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
*
2022-04-28 18:48:00 +00:00
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
2022-04-28 18:48:00 +00:00
* You should have received a copy of the GNU General Public License
* along with this program; if not, you can also view it online at
* https://files.froxlor.org/misc/COPYING.txt
*
* @copyright the authors
* @author Froxlor team <team@froxlor.org>
* @license https://files.froxlor.org/misc/COPYING.txt GPLv2
*/
2022-04-28 18:48:00 +00:00
const AREA = 'customer';
require __DIR__ . '/lib/init.php';
use Froxlor\Api\Commands\Mysqls;
use Froxlor\Api\Commands\MysqlServer;
use Froxlor\Database\Database;
2022-04-28 18:48:00 +00:00
use Froxlor\FroxlorLogger;
use Froxlor\Settings;
2022-04-28 18:48:00 +00:00
use Froxlor\UI\Collection;
use Froxlor\UI\HTML;
use Froxlor\UI\Listing;
use Froxlor\UI\Panel\UI;
use Froxlor\UI\Request;
2022-04-28 18:48:00 +00:00
use Froxlor\UI\Response;
use Froxlor\CurrentUser;
// redirect if this customer page is hidden via settings or no resources given
if (Settings::IsInList('panel.customer_hide_options', 'mysql') || $userinfo['mysqls'] == 0) {
2022-04-28 18:48:00 +00:00
Response::redirectTo('customer_index.php');
}
// get sql-root access data
Database::needRoot(true);
Database::needSqlData();
$sql_root = Database::getSqlData();
Database::needRoot(false);
2022-04-28 18:48:00 +00:00
$id = (int)Request::get('id');
if ($page == 'overview' || $page == 'mysqls') {
2013-04-27 07:46:49 +00:00
if ($action == '') {
2022-04-28 18:48:00 +00:00
$log->logAction(FroxlorLogger::USR_ACTION, LOG_NOTICE, "viewed customer_mysql::mysqls");
$multiple_mysqlservers = count(json_decode($userinfo['allowed_mysqlserver'] ?? '[]', true)) > 1;
try {
$mysql_list_data = include_once dirname(__FILE__) . '/lib/tablelisting/customer/tablelisting.mysqls.php';
2022-04-28 18:48:00 +00:00
$collection = (new Collection(Mysqls::class, $userinfo))
->withPagination($mysql_list_data['mysql_list']['columns'], $mysql_list_data['mysql_list']['default_sorting']);
} catch (Exception $e) {
2022-04-28 18:48:00 +00:00
Response::dynamicError($e->getMessage());
}
$actions_links = false;
if (CurrentUser::canAddResource('mysqls')) {
2022-04-28 18:48:00 +00:00
$actions_links = [
[
'href' => $linker->getLink(['section' => 'mysql', 'page' => 'mysqls', 'action' => 'add']),
'label' => lng('mysql.database_create')
]
];
}
2022-03-18 11:53:34 +00:00
UI::view('user/table.html.twig', [
2022-04-28 18:48:00 +00:00
'listing' => Listing::format($collection, $mysql_list_data, 'mysql_list'),
'actions_links' => $actions_links,
2022-04-28 18:48:00 +00:00
'entity_info' => lng('mysql.description')
]);
} elseif ($action == 'delete' && $id != 0) {
try {
2022-04-28 18:48:00 +00:00
$json_result = Mysqls::getLocal($userinfo, [
'id' => $id
2022-04-28 18:48:00 +00:00
])->get();
} catch (Exception $e) {
2022-04-28 18:48:00 +00:00
Response::dynamicError($e->getMessage());
}
$result = json_decode($json_result, true)['data'];
if (isset($result['databasename']) && $result['databasename'] != '') {
Database::needRoot(true, $result['dbserver']);
Database::needSqlData();
$sql_root = Database::getSqlData();
Database::needRoot(false);
if (!isset($sql_root[$result['dbserver']]) || !is_array($sql_root[$result['dbserver']])) {
$result['dbserver'] = 0;
}
if (isset($_POST['send']) && $_POST['send'] == 'send') {
try {
Mysqls::getLocal($userinfo, $_POST)->delete();
} catch (Exception $e) {
2022-04-28 18:48:00 +00:00
Response::dynamicError($e->getMessage());
}
2022-04-28 18:48:00 +00:00
Response::redirectTo($filename, [
'page' => $page
2022-04-28 18:48:00 +00:00
]);
2013-04-27 07:46:49 +00:00
} else {
$dbnamedesc = $result['databasename'];
2013-04-27 07:46:49 +00:00
if (isset($result['description']) && $result['description'] != '') {
$dbnamedesc .= ' (' . $result['description'] . ')';
}
2022-04-28 18:48:00 +00:00
HTML::askYesNo('mysql_reallydelete', $filename, [
'id' => $id,
'page' => $page,
'action' => $action
2022-04-28 18:48:00 +00:00
], $dbnamedesc);
}
}
2013-04-27 07:46:49 +00:00
} elseif ($action == 'add') {
if ($userinfo['mysqls_used'] < $userinfo['mysqls'] || $userinfo['mysqls'] == '-1') {
if (isset($_POST['send']) && $_POST['send'] == 'send') {
try {
Mysqls::getLocal($userinfo, $_POST)->add();
} catch (Exception $e) {
2022-04-28 18:48:00 +00:00
Response::dynamicError($e->getMessage());
}
2022-04-28 18:48:00 +00:00
Response::redirectTo($filename, [
'page' => $page
2022-04-28 18:48:00 +00:00
]);
2013-04-27 07:46:49 +00:00
} else {
$mysql_servers = [];
try {
$result_json = MysqlServer::getLocal($userinfo)->listing();
$result_decoded = json_decode($result_json, true)['data']['list'];
foreach ($result_decoded as $dbserver => $dbdata) {
$mysql_servers[$dbserver] = $dbdata['caption'];
}
} catch (Exception $e) {
/* just none */
}
$mysql_add_data = include_once dirname(__FILE__) . '/lib/formfields/customer/mysql/formfield.mysql_add.php';
2022-03-18 11:53:34 +00:00
UI::view('user/form.html.twig', [
2022-04-28 18:48:00 +00:00
'formaction' => $linker->getLink(['section' => 'mysql']),
'formdata' => $mysql_add_data['mysql_add']
]);
}
}
2013-04-27 07:46:49 +00:00
} elseif ($action == 'edit' && $id != 0) {
try {
2022-04-28 18:48:00 +00:00
$json_result = Mysqls::getLocal($userinfo, [
'id' => $id
2022-04-28 18:48:00 +00:00
])->get();
} catch (Exception $e) {
2022-04-28 18:48:00 +00:00
Response::dynamicError($e->getMessage());
}
$result = json_decode($json_result, true)['data'];
if (isset($result['databasename']) && $result['databasename'] != '') {
if (isset($_POST['send']) && $_POST['send'] == 'send') {
try {
$json_result = Mysqls::getLocal($userinfo, $_POST)->update();
} catch (Exception $e) {
2022-04-28 18:48:00 +00:00
Response::dynamicError($e->getMessage());
}
2022-04-28 18:48:00 +00:00
Response::redirectTo($filename, [
'page' => $page
2022-04-28 18:48:00 +00:00
]);
2013-04-27 07:46:49 +00:00
} else {
$mysql_servers = [];
try {
$result_json = MysqlServer::getLocal($userinfo)->listing();
$result_decoded = json_decode($result_json, true)['data']['list'];
foreach ($result_decoded as $dbserver => $dbdata) {
$mysql_servers[$dbserver] = $dbdata['caption'] . ' (' . $dbdata['host'] . (isset($dbdata['port']) && !empty($dbdata['port']) ? ':' . $dbdata['port'] : '').')';
}
} catch (Exception $e) {
/* just none */
}
$mysql_edit_data = include_once dirname(__FILE__) . '/lib/formfields/customer/mysql/formfield.mysql_edit.php';
2022-03-18 11:53:34 +00:00
UI::view('user/form.html.twig', [
2022-04-28 18:48:00 +00:00
'formaction' => $linker->getLink(['section' => 'mysql', 'id' => $id]),
'formdata' => $mysql_edit_data['mysql_edit'],
'editid' => $id
]);
}
}
}
}