2026-02-24 21:02:41 +03:00
|
|
|
<?php
|
|
|
|
|
/**
|
2026-03-07 21:53:45 +03:00
|
|
|
* RtmpMonitorController — мониторинг RTMP.
|
2026-04-05 22:38:36 +03:00
|
|
|
*
|
|
|
|
|
* @package XC_VM_Public_Controllers_Admin
|
|
|
|
|
* @author Divarion_D <https://github.com/Divarion-D>
|
|
|
|
|
* @copyright 2025-2026 Vateron Media
|
|
|
|
|
* @link https://github.com/Vateron-Media/XC_VM
|
|
|
|
|
* @license AGPL-3.0 https://www.gnu.org/licenses/agpl-3.0.html
|
2026-02-24 21:02:41 +03:00
|
|
|
*/
|
2026-04-05 22:38:36 +03:00
|
|
|
|
2026-02-24 21:02:41 +03:00
|
|
|
class RtmpMonitorController extends BaseAdminController
|
|
|
|
|
{
|
|
|
|
|
public function index()
|
|
|
|
|
{
|
|
|
|
|
$this->requirePermission();
|
|
|
|
|
|
|
|
|
|
global $rServers;
|
|
|
|
|
|
2026-03-07 21:53:45 +03:00
|
|
|
if (!isset(RequestManager::getAll()['server']) || !isset($rServers[RequestManager::getAll()['server']])) {
|
|
|
|
|
RequestManager::update('server', SERVER_ID);
|
2026-02-24 21:02:41 +03:00
|
|
|
}
|
|
|
|
|
|
2026-03-07 21:53:45 +03:00
|
|
|
$rRTMPInfo = ServerRepository::getRTMPStats(RequestManager::getAll()['server']);
|
2026-02-24 21:02:41 +03:00
|
|
|
|
|
|
|
|
$this->setTitle('RTMP Monitor');
|
|
|
|
|
$this->render('rtmp_monitor', compact('rRTMPInfo'));
|
|
|
|
|
}
|
|
|
|
|
}
|