EngineGP/system/engine/servers.php
2024-04-10 23:31:20 +03:00

116 lines
5 KiB
PHP
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php
/*
* EngineGP (https://enginegp.ru or https://enginegp.com)
*
* @copyright Copyright (c) 2018-present Solovev Sergei <inbox@seansolovev.ru>
*
* @link https://github.com/EngineGPDev/EngineGP for the canonical source repository
* @link https://gitforge.ru/EngineGP/EngineGP for the canonical source repository
*
* @license https://github.com/EngineGPDev/EngineGP/blob/main/LICENSE MIT License
* @license https://gitforge.ru/EngineGP/EngineGP/src/branch/main/LICENSE MIT License
*/
if (!DEFINED('EGP'))
exit(header('Refresh: 0; URL=http://' . $_SERVER['HTTP_HOST'] . '/404'));
// Проверка на авторизацию
sys::noauth();
if (!$id and $user['group'] == 'user') {
$servers = $sql->query('SELECT `id` FROM `servers` WHERE `user`="' . $user['id'] . '" LIMIT 1');
$owners = $sql->query('SELECT `id` FROM `owners` WHERE `user`="' . $user['id'] . '" LIMIT 1');
if (!$sql->num($servers) and !$sql->num($owners))
sys::back($cfg['http'] . 'services'); // Если нет игровых серверов отправить на страницу аренды
}
if ($id and !$section)
$section = 'index';
$title = 'Управление игровыми серверами';
// Подключение раздела
if (in_array($section, array('action', 'scan', 'index', 'console', 'settings', 'plugins', 'maps', 'owners', 'filetp', 'tarif', 'copy', 'graph', 'web', 'boost', 'rcon'))) {
if (!$id)
sys::back($cfg['http'] . 'servers');
if ($user['group'] == 'admin' || ($user['group'] == 'support' and $user['level'])) {
if ($user['group'] == 'support' and $user['level'] < 2) {
$sql->query('SELECT `id` FROM `servers` WHERE `id`="' . $id . '" AND `user`="' . $user['id'] . '" LIMIT 1');
if (!$sql->num()) {
$sql->query('SELECT `id` FROM `help` WHERE `type`="server" AND `service`="' . $id . '" LIMIT 1');
if (!$sql->num()) {
$sql->query('SELECT `rights` FROM `owners` WHERE `server`="' . $id . '" AND `user`="' . $user['id'] . '" LIMIT 1');
if (!$sql->num())
sys::back($cfg['http'] . 'servers');
$owner = $sql->get();
$rights = sys::b64djs($owner['rights']);
if ($section == 'action') {
if (!isset($rights[$url['action']]) || !$rights[$url['action']])
sys::outjs(array('e' => 'У вас нет доступа к данному серверу'));
} else {
if (!in_array($section, array('index', 'scan')) and (!isset($rights[$section]) || !$rights[$section]))
sys::back($cfg['http'] . 'servers');
}
}
}
}
$sql->query('SELECT `id` FROM `servers` WHERE `id`="' . $id . '" LIMIT 1');
} else {
$sql->query('SELECT `id` FROM `servers` WHERE `id`="' . $id . '" AND `user`="' . $user['id'] . '" LIMIT 1');
if (!$sql->num()) {
$sql->query('SELECT `rights` FROM `owners` WHERE `server`="' . $id . '" AND `user`="' . $user['id'] . '" LIMIT 1');
if (!$sql->num())
sys::back($cfg['http'] . 'servers');
$owner = $sql->get();
$rights = sys::b64djs($owner['rights']);
if ($section == 'action') {
if (!isset($rights[$url['action']]) || !$rights[$url['action']])
sys::outjs(array('e' => sys::text('error', 'ser_owner')));
} else {
if (!in_array($section, array('index', 'scan')) and (!isset($rights[$section]) || !$rights[$section]))
sys::back($cfg['http'] . 'servers/id/' . $owner['server']);
}
$sql->query('SELECT `id` FROM `servers` WHERE `id`="' . $id . '" LIMIT 1');
}
}
if (!$sql->num())
sys::back($cfg['http'] . 'servers'); // Если нет игрового сервера отправить на страницу списка
$html->nav($title, $cfg['http'] . 'servers');
$file_section = file_exists(SEC . 'servers/' . $section . '.php');
if ($file_section)
include(SEC . 'servers/' . $section . '.php');
else
sys::back($cfg['http'] . 'servers/id/' . $id);
} else {
$html->nav($title);
if ($user['group'] == 'user' and $mcache->get('servers_' . $user['id']) != '')
$html->arr['main'] = $mcache->get('servers_' . $user['id']);
else {
include(SEC . 'servers/list.php');
include(SEC . 'servers/owners_list.php');
$html->get('servers', 'sections/servers');
$html->set('list', isset($html->arr['list']) ? $html->arr['list'] : 'У вас нет игровых серверов', true);
$html->set('wait_servers', $wait_servers);
$html->set('updates_servers', $updates_servers);
$html->pack('main');
$mcache->set('servers_' . $user['id'], $html->arr['main'], false, 4);
}
}