Add node lookup page
parent
ee3fbcf781
commit
cfc52b4d37
@ -0,0 +1,54 @@
|
||||
<?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($_CVM)) { die("Unauthorized."); }
|
||||
|
||||
try
|
||||
{
|
||||
$sNode = new Node($router->uParameters[1]);
|
||||
|
||||
if($result = mysql_query_cached("SELECT * FROM containers WHERE `NodeId` = '{$sNode->sId}'"))
|
||||
{
|
||||
foreach($result->data as $row)
|
||||
{
|
||||
$sContainer = new Container($row);
|
||||
|
||||
$sContainerList[] = array(
|
||||
'id' => $sContainer->sId,
|
||||
'hostname' => $sContainer->sHostname,
|
||||
'node' => $sContainer->sNode->sName,
|
||||
'node-hostname' => $sContainer->sNode->sHostname,
|
||||
'template' => $sContainer->sTemplate->sName,
|
||||
'diskspace' => number_format($sContainer->sDiskSpace / 1024),
|
||||
'diskspace-unit' => "GB",
|
||||
'guaranteed-ram' => $sContainer->sGuaranteedRam,
|
||||
'guaranteed-ram-unit' => "MB",
|
||||
'status' => $sContainer->sStatusText,
|
||||
'virtualization-type' => $sContainer->sVirtualizationType
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
$sPageContents = Templater::AdvancedParse("admin.node", $locale->strings, array(
|
||||
'id' => $sNode->sId,
|
||||
'hostname' => $sNode->sHostname,
|
||||
'location' => $sNode->sPhysicalLocation,
|
||||
'containers' => $sContainerList
|
||||
));
|
||||
}
|
||||
catch (NotFoundException $e)
|
||||
{
|
||||
$err = new CPHPErrorHandler(CPHP_ERRORHANDLER_TYPE_ERROR, $locale->strings['error-admin-node-title'], $locale->strings['error-admin-node-text']);
|
||||
$sPageContents .= $err->Render();
|
||||
}
|
||||
|
@ -0,0 +1,68 @@
|
||||
<h2>{%!title-admin-nodeinfo}</h2>
|
||||
|
||||
<table class="nodeinfo vertical">
|
||||
<tr>
|
||||
<th>{%!list-column-nodeid}</th>
|
||||
<td>{%?id}</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th>{%!list-column-hostname}</th>
|
||||
<td>{%?hostname}</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th>{%!list-column-location}</th>
|
||||
<td>{%?location}</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
<h3>{%!header-admin-node-containers}</h3>
|
||||
<table class="vpslist">
|
||||
<tr>
|
||||
<th></th>
|
||||
<th>{%!list-column-hostname}</th>
|
||||
<th>{%!list-column-platform}</th>
|
||||
<th>{%!list-column-disk}</th>
|
||||
<th>{%!list-column-ram}</th>
|
||||
<th>{%!list-column-template}</th>
|
||||
</tr>
|
||||
{%foreach container in containers}
|
||||
<tr class="clickable" data-url="/{%?container[id]}/">
|
||||
<td class="container-status">
|
||||
{%if container[status] == running}
|
||||
<img src="/images/icon_online.png" alt="{%!list-status-running}">
|
||||
{%/if}{%if container[status] == stopped}
|
||||
<img src="/images/icon_offline.png" alt="{%!list-status-stopped}">
|
||||
{%/if}{%if container[status] == suspended}
|
||||
<img src="/images/icon_suspended.png" alt="{%!list-status-suspended}">
|
||||
{%/if}
|
||||
</td>
|
||||
<td>
|
||||
<a href="/{%?container[id]}/">
|
||||
{%?container[hostname]}
|
||||
</a>
|
||||
</td>
|
||||
<td>
|
||||
<a href="/{%?container[id]}/">
|
||||
{%if container[virtualization-type] == 1}
|
||||
OpenVZ
|
||||
{%/if}{%if container[virtualization-type] == 2}
|
||||
Xen PV
|
||||
{%/if}{%if container[virtualization-type] == 3}
|
||||
Xen HVM
|
||||
{%/if}{%if container[virtualization-type] == 4}
|
||||
KVM
|
||||
{%/if}
|
||||
</a>
|
||||
</td>
|
||||
<td>
|
||||
{%?container[diskspace]}
|
||||
<span class="unit">{%?container[diskspace-unit]}</span>
|
||||
</td>
|
||||
<td>
|
||||
{%?container[guaranteed-ram]}
|
||||
<span class="unit">{%?container[guaranteed-ram-unit]}</span>
|
||||
</td>
|
||||
<td>{%?container[template]}</td>
|
||||
</tr>
|
||||
{%/foreach}
|
||||
</table>
|
Loading…
Reference in New Issue