mirror of
https://github.com/myronblair/novacpx
synced 2026-06-30 17:50:41 -05:00
c0c9865653
#19 Server monitoring charts: - server_stats table (migration 007) + collect-stats.php cron script - serverStatus() page rebuilt with Chart.js line charts (CPU/RAM/disk) - Chart.js lazy-loaded from CDN; history shown for last 24h #20 Cron job manager: already complete in prior session #21 Package limits enforcement: - email.php: checks max_email before creating email account - databases.php: checks max_databases before creating database - ftp.php: checks max_ftp before creating FTP account - stats.php: fixed column names (max_email/max_ftp/max_databases vs old aliases) #22b WHMCS billing bridge: - whmcs.php endpoint: create/suspend/unsuspend/terminate/changepackage/info - Auth via X-WHMCS-Key header; enabled/key stored in settings table #22a/c/d/e Server options admin page: - Web/mail/FTP/DNS server selection with settings persistence - Server switch triggers /opt/novacpx/bin/switch-*.sh scripts (if present) - NS health checker: live dig lookup of all zones vs configured NS1/NS2 - system.php: server-options + save-option actions - dns.php: ns-health action Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
67 lines
3.3 KiB
PHP
67 lines
3.3 KiB
PHP
<?php
|
|
$db = DB::getInstance();
|
|
$body = json_decode(file_get_contents('php://input'), true) ?? [];
|
|
require_once NOVACPX_LIB . '/DatabaseManager.php';
|
|
|
|
$user = Auth::getInstance()->user();
|
|
$accountId = $user['role'] === 'user'
|
|
? (int)($db->fetchOne("SELECT id FROM accounts WHERE user_id = ?", [$user['uid']])['id'] ?? 0)
|
|
: (int)($body['account_id'] ?? $_GET['account_id'] ?? 0);
|
|
|
|
match ($action) {
|
|
|
|
'list' => (function() use ($db, $accountId) {
|
|
if (!$accountId) Response::error("account_id required");
|
|
$rows = $db->fetchAll("SELECT id, db_name, db_user, db_type, size_mb, created_at FROM databases WHERE account_id = ?", [$accountId]);
|
|
foreach ($rows as &$r) { $r['size_mb'] = DatabaseManager::getSize($r['db_name'], $r['db_type']); }
|
|
Response::success($rows);
|
|
})(),
|
|
|
|
'create' => (function() use ($db, $body, $accountId) {
|
|
if (!$accountId) Response::error("account_id required");
|
|
// Package limit check
|
|
$acctPkg = $db->fetchOne("SELECT p.max_databases FROM accounts a LEFT JOIN packages p ON p.id=a.package_id WHERE a.id=?", [$accountId]);
|
|
if ($acctPkg && $acctPkg['max_databases'] > 0) {
|
|
$count = (int)$db->fetchOne("SELECT COUNT(*) c FROM databases WHERE account_id=?", [$accountId])['c'];
|
|
if ($count >= (int)$acctPkg['max_databases']) Response::error("Database limit ({$acctPkg['max_databases']}) reached for this package", 403);
|
|
}
|
|
$type = $body['type'] ?? 'mysql';
|
|
$dbName = trim($body['db_name'] ?? '');
|
|
$dbUser = trim($body['db_user'] ?? $dbName . '_user');
|
|
$dbPass = $body['db_pass'] ?? bin2hex(random_bytes(8));
|
|
if (!$dbName) Response::error("db_name required");
|
|
|
|
// Prefix with account username to avoid conflicts
|
|
$acct = $db->fetchOne("SELECT username FROM accounts WHERE id = ?", [$accountId]);
|
|
$prefix = $acct['username'] . '_';
|
|
if (!str_starts_with($dbName, $prefix)) $dbName = $prefix . $dbName;
|
|
if (!str_starts_with($dbUser, $prefix)) $dbUser = $prefix . $dbUser;
|
|
|
|
$id = $type === 'postgresql'
|
|
? DatabaseManager::createPostgres($accountId, $dbName, $dbUser, $dbPass)
|
|
: DatabaseManager::createMySQL($accountId, $dbName, $dbUser, $dbPass);
|
|
|
|
audit('database.create', $dbName, ['type' => $type]);
|
|
Response::success(['id' => $id, 'db_name' => $dbName, 'db_user' => $dbUser, 'db_pass' => $dbPass], 'Database created');
|
|
})(),
|
|
|
|
'drop' => (function() use ($db, $body) {
|
|
$id = (int)($body['id'] ?? 0);
|
|
$dbe = $db->fetchOne("SELECT db_name, db_user, db_type FROM databases WHERE id = ?", [$id]);
|
|
if (!$dbe) Response::error("Database not found", 404);
|
|
DatabaseManager::drop($dbe['db_name'], $dbe['db_user'], $dbe['db_type']);
|
|
audit('database.drop', $dbe['db_name']);
|
|
Response::success(null, 'Database deleted');
|
|
})(),
|
|
|
|
'change-password' => (function() use ($body) {
|
|
$id = (int)($body['id'] ?? 0);
|
|
$pass = $body['password'] ?? '';
|
|
if (strlen($pass) < 8) Response::error("Password must be at least 8 characters");
|
|
DatabaseManager::changePassword($id, $pass);
|
|
Response::success(null, 'Database password updated');
|
|
})(),
|
|
|
|
default => Response::error("Unknown databases action: $action", 404),
|
|
};
|