You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

122 lines
3.8 KiB
PHP

<?php
/*
* CVM is more free software. It is licensed under the WTFPL, which
* allows you to do pretty much anything with it, without having to
* ask permission. Commercial use is allowed, and no attribution is
* required. We do politely request that you share your modifications
* to benefit other developers, but you are under no enforced
* obligation to do so :)
*
* Please read the accompanying LICENSE document for the full WTFPL
* licensing text.
*/
if(!isset($_APP)) { die("Unauthorized."); }
if(!empty($router->uVariables['action']))
{
if($router->uVariables['action'] == "start")
{
require("modules/client/vps/action/start.php");
}
elseif($router->uVariables['action'] == "stop")
{
require("modules/client/vps/action/stop.php");
}
elseif($router->uVariables['action'] == "restart")
{
require("modules/client/vps/action/restart.php");
}
}
if($sVps->sTotalTrafficLimit != 0)
{
$sTrafficLimit = $sVps->sTotalTrafficLimit;
$sTrafficSplit = false;
}
else
{
$sTrafficLimit = $sVps->sIncomingTrafficLimit + $sVps->sOutgoingTrafficLimit;
$sTrafficSplit = true;
}
$sVariables = array(
'id' => $sVps->sId,
'server-location' => $sVps->sNode->sPhysicalLocation,
'operating-system' => $sVps->sTemplate->sName,
'guaranteed-ram' => "{$sVps->sGuaranteedRam}MB",
'burstable-ram' => "{$sVps->sBurstableRam}MB",
'disk-space' => "{$sVps->sDiskSpace}MB",
'total-traffic-limit' => format_size($sVps->sTotalTrafficLimit, 1024, true, 0) . "B",
'incoming-traffic-limit'=> format_size($sVps->sIncomingTrafficLimit, 1024, true, 0) . "B",
'outgoing-traffic-limit'=> format_size($sVps->sOutgoingTrafficLimit, 1024, true, 0) . "B",
'bandwidth-limit' => "100mbit",
'status' => $sVps->sStatusText,
'traffic-split' => $sTrafficSplit
);
if($sTrafficSplit == true)
{
$sVariables = array_merge($sVariables, array(
'inbound-used' => number_format(($sVps->sIncomingTrafficUsed) / 1024 / 1024 / 1024, 2),
'inbound-total' => number_format($sIncomingTrafficLimit / 1024 / 1024 / 1024, 0),
'inbound-percentage' => number_format(($sVps->sIncomingTrafficUsed) / $sTrafficLimit, 2),
'inbound-unit' => "GB",
'outbound-used' => number_format(($sVps->sOutgoingTrafficUsed) / 1024 / 1024 / 1024, 2),
'outbound-total' => number_format($sOutgoingTrafficLimit / 1024 / 1024 / 1024, 0),
'outbound-percentage' => number_format(($sVps->sOutgoingTrafficUsed) / $sTrafficLimit, 2),
'outbound-unit' => "GB"
));
}
else
{
$sVariables = array_merge($sVariables, array(
'traffic-used' => number_format(($sVps->sIncomingTrafficUsed + $sVps->sOutgoingTrafficUsed) / 1024 / 1024 / 1024, 2),
'traffic-total' => number_format($sTrafficLimit / 1024 / 1024 / 1024, 0),
'traffic-percentage' => number_format(($sVps->sIncomingTrafficUsed + $sVps->sOutgoingTrafficUsed) / $sTrafficLimit, 2),
'traffic-unit' => "GB"
));
}
try
{
$sVariables = array_merge($sVariables, array(
'disk-used' => number_format($sVps->sDiskUsed / 1024, 2),
'disk-total' => number_format($sVps->sDiskTotal / 1024, 2),
'disk-percentage' => ($sVps->sDiskTotal == 0) ? 0 : number_format(($sVps->sDiskUsed / $sVps->sDiskTotal) * 100, 2),
'disk-unit' => "GB"
));
}
catch (SshExitException $e)
{
$sVariables = array_merge($sVariables, array(
'disk-used' => 0,
'disk-total' => 0,
'disk-percentage' => 0,
'disk-unit' => "GB"
));
}
try
{
$sVariables = array_merge($sVariables, array(
'ram-used' => $sVps->sRamUsed,
'ram-total' => $sVps->sRamTotal,
'ram-percentage' => ($sVps->sRamTotal == 0) ? 0 : number_format(($sVps->sRamUsed / $sVps->sRamTotal) * 100, 2),
'ram-unit' => "MB"
));
}
catch (SshExitException $e)
{
$sVariables = array_merge($sVariables, array(
'ram-used' => 0,
'ram-total' => 0,
'ram-percentage' => 0,
'ram-unit' => "MB"
));
}
$sPageContents = Templater::AdvancedParse("{$sTheme}/client/vps/lookup", $locale->strings, $sVariables);