customer ftp/mysql listing

Signed-off-by: Michael Kaufmann <d00p@froxlor.org>
This commit is contained in:
Michael Kaufmann
2022-02-25 14:25:58 +01:00
parent c7cc2d4357
commit 038b6f9510
6 changed files with 236 additions and 76 deletions

View File

@@ -0,0 +1,33 @@
<?php
namespace Froxlor\UI\Callbacks;
use Froxlor\UI\Panel\UI;
/**
* This file is part of the Froxlor project.
* Copyright (c) 2010 the Froxlor Team (see authors).
*
* For the full copyright and license information, please view the COPYING
* file that was distributed with this source code. You can also view the
* COPYING file online at http://files.froxlor.org/misc/COPYING.txt
*
* @copyright (c) the authors
* @author Froxlor team <team@froxlor.org> (2010-)
* @license GPLv2 http://files.froxlor.org/misc/COPYING.txt
* @package Listing
*
*/
class Ftp
{
public static function pathRelative(string $data, array $attributes): string
{
if (strpos($data, UI::getCurrentUser()['documentroot']) === 0) {
$data = str_replace(UI::getCurrentUser()['documentroot'], "/", $data);
}
$data = \Froxlor\FileDir::makeCorrectDir($data);
return $data;
}
}

View File

@@ -0,0 +1,34 @@
<?php
namespace Froxlor\UI\Callbacks;
use Froxlor\Database\Database;
/**
* This file is part of the Froxlor project.
* Copyright (c) 2010 the Froxlor Team (see authors).
*
* For the full copyright and license information, please view the COPYING
* file that was distributed with this source code. You can also view the
* COPYING file online at http://files.froxlor.org/misc/COPYING.txt
*
* @copyright (c) the authors
* @author Froxlor team <team@froxlor.org> (2010-)
* @license GPLv2 http://files.froxlor.org/misc/COPYING.txt
* @package Listing
*
*/
class Mysql
{
public static function dbserver(string $data, array $attributes): string
{
// get sql-root access data
Database::needRoot(true, (int) $data);
Database::needSqlData();
$sql_root = Database::getSqlData();
Database::needRoot(false);
return $sql_root['caption'] . '<br><small>' . $sql_root['host'] . '</small>';
}
}

View File

@@ -0,0 +1,74 @@
<?php
/**
* This file is part of the Froxlor project.
* Copyright (c) 2010 the Froxlor Team (see authors).
*
* For the full copyright and license information, please view the COPYING
* file that was distributed with this source code. You can also view the
* COPYING file online at http://files.froxlor.org/misc/COPYING.txt
*
* @copyright (c) the authors
* @author Froxlor team <team@froxlor.org> (2010-)
* @author Maurice Preuß <hello@envoyr.com>
* @license GPLv2 http://files.froxlor.org/misc/COPYING.txt
* @package Tabellisting
*
*/
use Froxlor\UI\Callbacks\Ftp;
use Froxlor\UI\Listing;
return [
'ftp_list' => [
'title' => $lng['menue']['ftp']['accounts'],
'icon' => 'fa-solid fa-users',
'columns' => [
'username' => [
'label' => $lng['login']['username'],
'column' => 'username',
],
'description' => [
'label' => $lng['panel']['ftpdesc'],
'column' => 'description'
],
'homedir' => [
'label' => $lng['panel']['path'],
'column' => 'homedir',
'format_callback' => [Ftp::class, 'pathRelative']
],
'shell' => [
'label' => $lng['panel']['shell'],
'column' => 'shell',
'visible' => \Froxlor\Settings::Get('system.allow_customer_shell') == '1'
]
],
'visible_columns' => Listing::getVisibleColumnsForListing('ftp_list', [
'username',
'description',
'homedir',
'shell'
]),
'actions' => [
'edit' => [
'icon' => 'fa fa-edit',
'href' => [
'section' => 'ftp',
'page' => 'ftps',
'action' => 'edit',
'id' => ':id'
],
],
'delete' => [
'icon' => 'fa fa-trash',
'class' => 'text-danger',
'href' => [
'section' => 'ftp',
'page' => 'ftps',
'action' => 'delete',
'id' => ':id'
],
]
]
]
];

View File

@@ -0,0 +1,76 @@
<?php
/**
* This file is part of the Froxlor project.
* Copyright (c) 2010 the Froxlor Team (see authors).
*
* For the full copyright and license information, please view the COPYING
* file that was distributed with this source code. You can also view the
* COPYING file online at http://files.froxlor.org/misc/COPYING.txt
*
* @copyright (c) the authors
* @author Froxlor team <team@froxlor.org> (2010-)
* @author Maurice Preuß <hello@envoyr.com>
* @license GPLv2 http://files.froxlor.org/misc/COPYING.txt
* @package Tabellisting
*
*/
use Froxlor\UI\Callbacks\Mysql;
use Froxlor\UI\Callbacks\Text;
use Froxlor\UI\Listing;
return [
'mysql_list' => [
'title' => $lng['menue']['mysql']['databases'],
'icon' => 'fa-solid fa-database',
'columns' => [
'databasename' => [
'label' => $lng['mysql']['databasename'],
'column' => 'databasename',
],
'description' => [
'label' => $lng['mysql']['databasedescription'],
'column' => 'description'
],
'size' => [
'label' => $lng['mysql']['size'],
'column' => 'size',
'format_callback' => [Text::class, 'size']
],
'dbserver' => [
'label' => $lng['mysql']['mysql_server'],
'column' => 'dbserver',
'format_callback' => [Mysql::class, 'dbserver'],
'visible' => $count_mysqlservers > 1
]
],
'visible_columns' => Listing::getVisibleColumnsForListing('mysql_list', [
'databasename',
'description',
'size',
'dbserver'
]),
'actions' => [
'edit' => [
'icon' => 'fa fa-edit',
'href' => [
'section' => 'mysql',
'page' => 'mysqls',
'action' => 'edit',
'id' => ':id'
],
],
'delete' => [
'icon' => 'fa fa-trash',
'class' => 'text-danger',
'href' => [
'section' => 'mysql',
'page' => 'mysqls',
'action' => 'delete',
'id' => ':id'
],
]
]
]
];