101 lines
4.2 KiB
PHP
101 lines
4.2 KiB
PHP
<?php
|
|
|
|
namespace App\Http\Controllers\Admin;
|
|
|
|
use App\Http\Controllers\Controller;
|
|
use App\Models\Egg;
|
|
use App\Models\Location;
|
|
use App\Models\Nest;
|
|
use App\Models\Node;
|
|
use App\Models\Payment;
|
|
use App\Models\Server;
|
|
use App\Models\User;
|
|
use Illuminate\Support\Facades\Cache;
|
|
use App\Classes\Pterodactyl;
|
|
use App\Models\Product;
|
|
|
|
class OverViewController extends Controller
|
|
{
|
|
public const TTL = 86400;
|
|
|
|
public function index()
|
|
{
|
|
$counters = Cache::remember('counters', self::TTL, function () {
|
|
$output = collect();
|
|
$output->put('users', User::query()->count());
|
|
$output->put('credits', number_format(User::query()->where("role","!=","admin")->sum('credits'), 2, '.', ''));
|
|
$output->put('payments', Payment::query()->count());
|
|
$output->put('eggs', Egg::query()->count());
|
|
$output->put('nests', Nest::query()->count());
|
|
$output->put('locations', Location::query()->count());
|
|
|
|
$output->put('servers', collect());
|
|
$output['servers']->active = 0;
|
|
$output['servers']->total = 0;
|
|
$output->put('earnings', collect());
|
|
$output['earnings']->active = 0;
|
|
$output['earnings']->total = 0;
|
|
$output->put('totalUsagePercent', 0);
|
|
|
|
return $output;
|
|
});
|
|
|
|
$lastEgg = Egg::query()->latest('updated_at')->first();
|
|
$syncLastUpdate = $lastEgg ? $lastEgg->updated_at->isoFormat('LLL') : __('unknown');
|
|
|
|
$nodes = Cache::remember('nodes', self::TTL, function() use($counters){
|
|
$output = collect();
|
|
foreach($nodes = Node::query()->get() as $node){ //gets all node information and prepares the structure
|
|
$nodeId = $node['id'];
|
|
$output->put($nodeId, collect());
|
|
$output[$nodeId]->name = $node['name'];
|
|
$node = Pterodactyl::getNode($nodeId);
|
|
$output[$nodeId]->usagePercent = round(max($node['allocated_resources']['memory']/($node['memory']*($node['memory_overallocate']+100)/100), $node['allocated_resources']['disk']/($node['disk']*($node['disk_overallocate']+100)/100))*100, 2);
|
|
$counters['totalUsagePercent'] += $output[$nodeId]->usagePercent;
|
|
|
|
$output[$nodeId]->totalServers = 0;
|
|
$output[$nodeId]->activeServers = 0;
|
|
$output[$nodeId]->totalEarnings = 0;
|
|
$output[$nodeId]->activeEarnings = 0;
|
|
}
|
|
$counters['totalUsagePercent'] = ($nodes->count())?round($counters['totalUsagePercent']/$nodes->count(), 2):0;
|
|
|
|
foreach(Pterodactyl::getServers() as $server){ //gets all servers from Pterodactyl and calculates total of credit usage for each node separately + total
|
|
$nodeId = $server['attributes']['node'];
|
|
|
|
if($CPServer = Server::query()->where('pterodactyl_id', $server['attributes']['id'])->first()){
|
|
$prize = Product::query()->where('id', $CPServer->product_id)->first()->price;
|
|
if (!$CPServer->suspended){
|
|
$counters['earnings']->active += $prize;
|
|
$counters['servers']->active ++;
|
|
$output[$nodeId]->activeEarnings += $prize;
|
|
$output[$nodeId]->activeServers ++;
|
|
}
|
|
$counters['earnings']->total += $prize;
|
|
$counters['servers']->total ++;
|
|
$output[$nodeId]->totalEarnings += $prize;
|
|
$output[$nodeId]->totalServers ++;
|
|
}
|
|
}
|
|
return $output;
|
|
});
|
|
|
|
return view('admin.overview.index', [
|
|
'counters' => $counters,
|
|
'nodes' => $nodes,
|
|
'syncLastUpdate' => $syncLastUpdate,
|
|
'perPageLimit' => ($counters['servers']->total != Server::query()->count())?true:false
|
|
]);
|
|
}
|
|
|
|
/**
|
|
* @description Sync locations,nodes,nests,eggs with the linked pterodactyl panel
|
|
*/
|
|
public function syncPterodactyl()
|
|
{
|
|
Node::syncNodes();
|
|
Egg::syncEggs();
|
|
|
|
return redirect()->back()->with('success', __('Pterodactyl synced'));
|
|
}
|
|
}
|