Add container list to user lookup page

feature/node-rewrite
Sven Slootweg 12 years ago
parent 74d86f36c1
commit b245d86123

@ -23,6 +23,8 @@ h2
h3
{
font-size: 20px;
margin-top: 8px;
margin-bottom: 3px;
}
p

@ -31,6 +31,8 @@ title-console; Out-of-band console
title-admin-userlist; User overview
title-admin-userinfo; User lookup
header-admin-user-containers; Containers owned by this user
button-login; Login
button-reinstall; Reinstall
button-password; Set new root password

@ -15,12 +15,37 @@ try
{
$sUserEntry = new User($router->uParameters[1]);
$sContainerList = array();
if($result = mysql_query_cached("SELECT * FROM containers WHERE `UserId` = '{$sUserEntry->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::InlineRender("admin.user", $locale->strings, array(
'id' => $sUserEntry->sId,
'username' => $sUserEntry->sUsername,
'email' => $sUserEntry->sEmailAddress,
'accesslevel' => $sUserEntry->sAccessLevel,
'containers' => $sUserEntry->sContainerCount
'containercount' => $sUserEntry->sContainerCount,
'containers' => $sContainerList
));
}
catch (NotFoundException $e)

@ -29,6 +29,58 @@
</tr>
<tr>
<th><%!admin-title-containers></th>
<td><%?containers></td>
<td><%?containercount></td>
</tr>
</table>
<h3><%!header-admin-user-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…
Cancel
Save