139 lines
6.3 KiB
PHP
139 lines
6.3 KiB
PHP
<?php
|
|
require $_SERVER['DOCUMENT_ROOT'].'/api/private/core.php';
|
|
users::requireAdmin();
|
|
|
|
function getSetupUsage($clients)
|
|
{
|
|
$usage = 0;
|
|
|
|
if(is_array($clients))
|
|
{
|
|
foreach ($clients as $client)
|
|
{
|
|
$usage += getSetupUsage($client);
|
|
}
|
|
}
|
|
else
|
|
{
|
|
$usage = system::getFolderSize("/var/www/pizzaboxer.xyz/setup$clients/", true);
|
|
}
|
|
|
|
return $usage;
|
|
}
|
|
|
|
$servermemory = system::getMemoryUsage();
|
|
$usersOnline = users::getUsersOnline();
|
|
$pendingRenders = polygon::getPendingRenders();
|
|
$thumbPing = polygon::getServerPing(1);
|
|
|
|
$usage = (object)
|
|
[
|
|
"Memory" => (object)
|
|
[
|
|
"Total" => system::getFileSize($servermemory->total),
|
|
"SytemUsage" => system::getFileSize($servermemory->total-$servermemory->free),
|
|
"PHPUsage" => system::getFileSize(memory_get_usage(true))
|
|
],
|
|
|
|
"Disk" => (object)
|
|
[
|
|
"Total" => system::getFileSize(disk_total_space("/")),
|
|
"SystemUsage" => system::getFileSize(disk_total_space("/")-disk_free_space("/")),
|
|
"PolygonUsage" => system::getFolderSize("/var/www/pizzaboxer.xyz/polygon/"),
|
|
"SetupUsage" => system::getFileSize(getSetupUsage([2009, 2010, 2011, 2012]))
|
|
]
|
|
];
|
|
|
|
pageBuilder::$pageConfig["title"] = SITE_CONFIG["site"]["name"]." Administration";
|
|
pageBuilder::buildHeader();
|
|
?>
|
|
|
|
<!--h1 style="position:absolute;opacity:0.5;font-size:10rem;z-index:10000000">THIS IS NOT <br> MULTAKOS SCREENSHOT LOL</h1-->
|
|
<h2 class="font-weight-normal"><?=SITE_CONFIG["site"]["name"]?> Administration</h2>
|
|
<div class="row">
|
|
<div class="col-md-7 p-0 divider-right">
|
|
<div class="pl-3">
|
|
<h3 class="pb-2 font-weight-normal">You are <?=vowel([1 => "Moderator", 2 => "Administrator"][SESSION["adminLevel"]])?> - Choose an action</h3>
|
|
<div class="row mx-1 mb-4">
|
|
<div class="col-md-4 py-2 pl-0">
|
|
<a class="btn btn-outline-danger btn-lg btn-block px-0" href="/admin/moderate-user"><i class="fal fa-gavel"></i> Moderate user</a>
|
|
</div>
|
|
<div class="col-md-4 py-2 pl-0">
|
|
<a class="btn btn-outline-danger btn-lg btn-block px-0" href="/admin/moderate-assets"><i class="fal fa-file-exclamation"></i> Moderate assets</a>
|
|
</div>
|
|
<div class="col-md-4 py-2 pl-0">
|
|
<a class="btn btn-outline-primary btn-lg btn-block px-0" href="/admin/render-queue"><i class="fal fa-images"></i> Render queue</a>
|
|
</div>
|
|
<?php if(SESSION["adminLevel"] >= 2) { ?>
|
|
<div class="col-md-4 py-2 pl-0">
|
|
<a class="btn btn-outline-primary btn-lg btn-block px-0" href="/admin/site-banners"><i class="fal fa-bullhorn"></i> Site banners</a>
|
|
</div>
|
|
<div class="col-md-4 py-2 pl-0">
|
|
<a class="btn btn-outline-primary btn-lg btn-block px-0" href="#" onclick="polygon.buildModal({header: 'coming soon', body: 'Sample Text', buttons: [{class:'btn btn-primary px-4', dismiss:true, text:'OK'}]});"><i class="fal fa-rss-square"></i> Newsfeed</a>
|
|
</div>
|
|
<div class="col-md-4 py-2 pl-0">
|
|
<a class="btn btn-outline-primary btn-lg btn-block px-0" href="/admin/staff-logs"><i class="fal fa-book"></i> Staff Logs</a>
|
|
</div>
|
|
<div class="col-md-4 py-2 pl-0">
|
|
<a class="btn btn-outline-success btn-lg btn-block px-0" href="/admin/create-asset"><i class="fal fa-file-plus"></i> Create asset</a>
|
|
</div>
|
|
<?php } if(SESSION["userId"] == 1){ ?>
|
|
<div class="col-md-4 py-2 pl-0">
|
|
<a class="btn btn-outline-success btn-lg btn-block px-0" href="/admin/give-currency"><i class="fal fa-pizza-slice"></i> Give <?=SITE_CONFIG["site"]["currency"]?></a>
|
|
</div>
|
|
<?php } ?>
|
|
<div class="col-md-4 py-2 pl-0">
|
|
<a class="btn btn-outline-success btn-lg btn-block px-0" href="#" onclick="polygon.buildModal({header: 'Credentials', body: '<span>You\'ll have to enter these yourself!</span> <br> Username: <code>ProjectPolygon</code> <br> Password: <code>962e8f89341b4e5f208076b5d06fb1b6</code>', buttons: [{class:'btn btn-primary px-4', attributes: [{'attr': 'onclick', 'val': 'window.location = \'https://stats.pizzaboxer.xyz\''}], text:'Continue'}]})"><i class="fal fa-chart-pie"></i> Statistics</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="col-md-5 p-0">
|
|
<div class="px-4">
|
|
<h3 class="pb-3 font-weight-normal">Website / Server Info</h3>
|
|
<div class="card w-100 mt-2">
|
|
<div class="card-body text-center">
|
|
<h3 class="font-weight-normal"><i class="fal fa-server"></i> <?=gethostname()?></h3>
|
|
<small><?=php_uname()?></small>
|
|
</div>
|
|
</div>
|
|
<div class="card w-100 mt-2">
|
|
<div class="card-body text-center">
|
|
<h3 class="font-weight-normal"><i class="fal fa-memory"></i> <?=$usage->Memory->SytemUsage?> / <?=$usage->Memory->Total?> In Use</h3>
|
|
<small><?=$usage->Memory->PHPUsage?> is being used by PHP</small>
|
|
</div>
|
|
</div>
|
|
<div class="card w-100 mt-2">
|
|
<div class="card-body text-center">
|
|
<h3 class="font-weight-normal"><i class="fal fa-hdd"></i> <?=$usage->Disk->SystemUsage?> / <?=$usage->Disk->Total?> Used</h3>
|
|
<small><?=SITE_CONFIG["site"]["name"]?> is using <?=$usage->Disk->PolygonUsage?></small><br>
|
|
<small>Client setup (2009-2012) is using <?=$usage->Disk->SetupUsage?> total</small>
|
|
|
|
</div>
|
|
</div>
|
|
<div class="card w-100 mt-2">
|
|
<div class="card-body text-center">
|
|
<?php if(SITE_CONFIG["site"]["thumbserver"]) { ?>
|
|
<h3 class="font-weight-normal"><i class="fal fa-images"></i> <?=$pendingRenders?> asset renders pending</h3>
|
|
<?php if($thumbPing+35 > time()) { ?>
|
|
<small>The thumbnail server is currently online</small>
|
|
<?php } else { ?>
|
|
<small>The thumbnail server last registered online at <?=date("j/n/Y g:i:s A", $thumbPing)?></small>
|
|
<?php } } else { ?>
|
|
<h3 class="font-weight-normal"><i class="fal fa-images"></i> Thumbserver is disabled</h3>
|
|
<small>The thumbnail server has been manually disabled. <br> Go to /api/private/config.php to re-enable it.</small>
|
|
<?php } ?>
|
|
</div>
|
|
</div>
|
|
<div class="card w-100 mt-2">
|
|
<div class="card-body text-center">
|
|
<h3 class="font-weight-normal"><i class="fal fa-user"></i> <?=$usersOnline?> user<?=$usersOnline>1?'s':''?> currently online</h3>
|
|
<?php if($usersOnline == 1) { ?><small>dead much?</small><?php } ?>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<?php pageBuilder::buildFooter(); ?>
|