* @license https://files.froxlor.org/misc/COPYING.txt GPLv2 */ const AREA = 'admin'; require __DIR__ . '/lib/init.php'; use Froxlor\Api\Commands\MysqlServer; use Froxlor\FroxlorLogger; use Froxlor\PhpHelper; use Froxlor\UI\Collection; use Froxlor\UI\HTML; use Froxlor\UI\Listing; use Froxlor\UI\Panel\UI; use Froxlor\UI\Request; use Froxlor\UI\Response; $id = (int)Request::any('id'); if (($page == 'mysqlserver' || $page == 'overview') && $userinfo['change_serversettings'] == '1') { if ($action == '') { $log->logAction(FroxlorLogger::ADM_ACTION, LOG_NOTICE, "viewed admin_mysqlserver"); try { $mysqlserver_list_data = include_once dirname(__FILE__) . '/lib/tablelisting/admin/tablelisting.mysqlserver.php'; $collection = (new Collection(MysqlServer::class, $userinfo)) ->withPagination($mysqlserver_list_data['mysqlserver_list']['columns'], $mysqlserver_list_data['mysqlserver_list']['default_sorting']); } catch (Exception $e) { Response::dynamicError($e->getMessage()); } UI::view('user/table.html.twig', [ 'listing' => Listing::format($collection, $mysqlserver_list_data, 'mysqlserver_list'), 'actions_links' => [ [ 'href' => $linker->getLink(['section' => 'mysqlserver', 'page' => $page, 'action' => 'add']), 'label' => lng('admin.mysqlserver.add') ] ] ]); } elseif ($action == 'delete' && $id != 0) { try { $json_result = MysqlServer::getLocal($userinfo, [ 'id' => $id ])->get(); } catch (Exception $e) { Response::dynamicError($e->getMessage()); } $result = json_decode($json_result, true)['data']; if (isset($result['id']) && $result['id'] == $id) { if (Request::post('send') == 'send') { try { MysqlServer::getLocal($userinfo, [ 'id' => $id ])->delete(); } catch (Exception $e) { Response::dynamicError($e->getMessage()); } Response::redirectTo($filename, [ 'page' => $page ]); } else { HTML::askYesNo('admin_mysqlserver_reallydelete', $filename, [ 'id' => $id, 'page' => $page, 'action' => $action ], $result['caption'] . ' (' . $result['host'] . ')'); } } } elseif ($action == 'add') { if (Request::post('send') == 'send') { try { MysqlServer::getLocal($userinfo, Request::postAll())->add(); } catch (Exception $e) { Response::dynamicError($e->getMessage()); } Response::redirectTo($filename, [ 'page' => $page ]); } else { $mysqlserver_add_data = include_once dirname(__FILE__) . '/lib/formfields/admin/mysqlserver/formfield.mysqlserver_add.php'; UI::view('user/form.html.twig', [ 'formaction' => $linker->getLink(['section' => 'mysqlserver']), 'formdata' => $mysqlserver_add_data['mysqlserver_add'] ]); } } elseif ($action == 'edit' && $id >= 0) { try { $json_result = MysqlServer::getLocal($userinfo, [ 'id' => $id ])->get(); } catch (Exception $e) { Response::dynamicError($e->getMessage()); } $result = json_decode($json_result, true)['data']; if (isset($result['id']) && $result['id'] == $id) { if (Request::post('send') == 'send') { try { MysqlServer::getLocal($userinfo, Request::postAll())->update(); } catch (Exception $e) { Response::dynamicError($e->getMessage()); } Response::redirectTo($filename, [ 'page' => $page ]); } else { $result = PhpHelper::htmlentitiesArray($result); $mysqlserver_edit_data = include_once dirname(__FILE__) . '/lib/formfields/admin/mysqlserver/formfield.mysqlserver_edit.php'; UI::view('user/form.html.twig', [ 'formaction' => $linker->getLink(['section' => 'mysqlserver', 'id' => $id]), 'formdata' => $mysqlserver_edit_data['mysqlserver_edit'], 'editid' => $id ]); } } } }