2022-03-05 16:02:12 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Http\Controllers;
|
|
|
|
|
|
|
|
use App\Models\Server;
|
|
|
|
use App\Models\Yabs;
|
|
|
|
use App\Process;
|
|
|
|
use App\Models\DiskSpeed;
|
|
|
|
use App\Models\NetworkSpeed;
|
|
|
|
use Illuminate\Http\Request;
|
2022-03-05 16:58:25 +01:00
|
|
|
use Illuminate\Support\Facades\Cache;
|
2022-03-05 16:02:12 +01:00
|
|
|
use Illuminate\Support\Facades\DB;
|
|
|
|
use Illuminate\Support\Str;
|
|
|
|
|
|
|
|
class YabsController extends Controller
|
|
|
|
{
|
|
|
|
public function index()
|
|
|
|
{
|
2022-07-18 06:27:11 +02:00
|
|
|
$yabs = Yabs::allYabs();
|
2022-03-05 16:02:12 +01:00
|
|
|
return view('yabs.index', compact(['yabs']));
|
|
|
|
}
|
|
|
|
|
|
|
|
public function create()
|
|
|
|
{
|
|
|
|
$Servers = Server::all();
|
|
|
|
return view('yabs.create', compact(['Servers']));
|
|
|
|
}
|
|
|
|
|
|
|
|
public function store(Request $request)
|
|
|
|
{
|
|
|
|
$process = new Process();
|
|
|
|
|
|
|
|
$yabs = $process->yabsOutputAsJson($request->server_id, $request->yabs);
|
|
|
|
|
|
|
|
if (isset($yabs['error_id'])) {
|
2022-05-16 13:30:52 +02:00
|
|
|
return back()->withErrors(["yabs" => 'Problem inserting YABs. Error id ' . $yabs['error_id']])->withInput();
|
2022-03-05 16:02:12 +01:00
|
|
|
}
|
|
|
|
//No errors, do insert
|
|
|
|
|
|
|
|
$yabs_id = Str::random(8);
|
|
|
|
|
|
|
|
Yabs::create([
|
|
|
|
'id' => $yabs_id,
|
|
|
|
'server_id' => $request->server_id,
|
|
|
|
'has_ipv6' => $yabs['has_ipv6'],
|
|
|
|
'aes' => $yabs['aes'],
|
|
|
|
'vm' => $yabs['vm'],
|
|
|
|
'output_date' => $yabs['output_date'],
|
|
|
|
'cpu_cores' => $yabs['cpu_cores'],
|
|
|
|
'cpu_freq' => $yabs['cpu_freq'],
|
2022-03-05 16:58:25 +01:00
|
|
|
'cpu_model' => $yabs['cpu'],
|
2022-03-05 16:02:12 +01:00
|
|
|
'ram' => $yabs['ram'],
|
|
|
|
'ram_type' => $yabs['ram_type'],
|
|
|
|
'ram_mb' => $yabs['ram_mb'],
|
2022-07-20 04:51:45 +02:00
|
|
|
'swap' => $yabs['swap'],
|
|
|
|
'swap_type' => $yabs['swap_type'],
|
|
|
|
'swap_mb' => $yabs['swap_mb'],
|
2022-03-05 16:02:12 +01:00
|
|
|
'disk' => $yabs['disk'],
|
|
|
|
'disk_type' => $yabs['disk_type'],
|
|
|
|
'disk_gb' => $yabs['disk_gb'],
|
|
|
|
'gb5_single' => $yabs['GB5_single'],
|
|
|
|
'gb5_multi' => $yabs['GB5_mult'],
|
2022-07-20 04:51:45 +02:00
|
|
|
'gb5_id' => $yabs['GB5_id'],
|
|
|
|
'uptime' => $yabs['uptime'],
|
|
|
|
'distro' => $yabs['distro'],
|
|
|
|
'kernel' => $yabs['kernel']
|
2022-03-05 16:02:12 +01:00
|
|
|
]);
|
|
|
|
|
|
|
|
DiskSpeed::create([
|
|
|
|
'id' => $yabs_id,
|
|
|
|
'server_id' => $request->server_id,
|
|
|
|
'd_4k' => $yabs['disk_speed']['4k_total'],
|
|
|
|
'd_4k_type' => $yabs['disk_speed']['4k_total_type'],
|
|
|
|
'd_4k_as_mbps' => $yabs['disk_speed']['4k_total_mbps'],
|
|
|
|
'd_64k' => $yabs['disk_speed']['64k_total'],
|
|
|
|
'd_64k_type' => $yabs['disk_speed']['64k_total_type'],
|
|
|
|
'd_64k_as_mbps' => $yabs['disk_speed']['64k_total_mbps'],
|
|
|
|
'd_512k' => $yabs['disk_speed']['512k_total'],
|
|
|
|
'd_512k_type' => $yabs['disk_speed']['512k_total_type'],
|
|
|
|
'd_512k_as_mbps' => $yabs['disk_speed']['512k_total_mbps'],
|
|
|
|
'd_1m' => $yabs['disk_speed']['1m_total'],
|
|
|
|
'd_1m_type' => $yabs['disk_speed']['1m_total_type'],
|
|
|
|
'd_1m_as_mbps' => $yabs['disk_speed']['1m_total_mbps']
|
|
|
|
]);
|
|
|
|
|
|
|
|
foreach ($yabs['network_speed'] as $y) {
|
|
|
|
NetworkSpeed::create([
|
|
|
|
'id' => $yabs_id,
|
|
|
|
'server_id' => $request->server_id,
|
|
|
|
'location' => $y['location'],
|
|
|
|
'send' => $y['send'],
|
|
|
|
'send_type' => $y['send_type'],
|
|
|
|
'send_as_mbps' => $y['send_type_mbps'],
|
|
|
|
'receive' => $y['receive'],
|
|
|
|
'receive_type' => $y['receive_type'],
|
|
|
|
'receive_as_mbps' => $y['receive_type_mbps']
|
|
|
|
]);
|
|
|
|
}
|
|
|
|
|
|
|
|
$update_server = DB::table('servers')
|
|
|
|
->where('id', $request->server_id)
|
|
|
|
->update([
|
|
|
|
'ram' => $yabs['ram'],
|
|
|
|
'ram_type' => $yabs['ram_type'],
|
2022-03-13 12:13:45 +01:00
|
|
|
'ram_as_mb' => ($yabs['ram_type'] === 'GB') ? ($yabs['ram'] * 1024) : $yabs['ram'],
|
2022-03-05 16:02:12 +01:00
|
|
|
'disk' => $yabs['disk'],
|
|
|
|
'disk_type' => $yabs['disk_type'],
|
2022-03-13 12:13:45 +01:00
|
|
|
'disk_as_gb' => ($yabs['disk_type'] === 'TB') ? ($yabs['disk'] * 1024) : $yabs['disk'],
|
2022-03-05 16:02:12 +01:00
|
|
|
'cpu' => $yabs['cpu_cores'],
|
|
|
|
'has_yabs' => 1
|
|
|
|
]);
|
|
|
|
|
2022-03-05 16:58:25 +01:00
|
|
|
Cache::forget('all_active_servers');//all servers cache
|
|
|
|
Cache::forget('non_active_servers');//all servers cache
|
2022-07-18 06:27:11 +02:00
|
|
|
Cache::forget('all_yabs');//Forget the all YABs cache
|
2022-03-05 16:58:25 +01:00
|
|
|
|
2022-03-05 16:02:12 +01:00
|
|
|
return redirect()->route('yabs.index')
|
|
|
|
->with('success', 'Success inserting YABs');
|
|
|
|
}
|
|
|
|
|
|
|
|
public function show(Yabs $yab)
|
|
|
|
{
|
2022-07-18 06:27:11 +02:00
|
|
|
$yab = Yabs::yabs($yab->id);
|
|
|
|
return view('yabs.show', compact(['yab']));
|
2022-03-05 16:02:12 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
public function destroy(Yabs $yab)
|
|
|
|
{
|
2022-06-24 03:17:59 +02:00
|
|
|
$yabs = Yabs::find($yab->id);
|
2022-03-05 16:58:25 +01:00
|
|
|
$yabs->delete();
|
|
|
|
|
2022-07-18 06:27:11 +02:00
|
|
|
if (Server::serverYabsAmount($yab->server_id) === 0) {
|
|
|
|
DB::table('servers')
|
|
|
|
->where('id', $yab->server_id)
|
|
|
|
->update(['has_yabs' => 0]);
|
|
|
|
}
|
|
|
|
|
|
|
|
Cache::forget('all_yabs');
|
|
|
|
Cache::forget("yabs.{$yab->id}");
|
2022-03-05 16:02:12 +01:00
|
|
|
|
|
|
|
return redirect()->route('yabs.index')
|
|
|
|
->with('success', 'YABs was deleted Successfully.');
|
|
|
|
}
|
2022-07-18 06:27:11 +02:00
|
|
|
|
|
|
|
public function chooseYabsCompare()
|
|
|
|
{
|
|
|
|
$all_yabs = Yabs::allYabs();
|
|
|
|
return view('yabs.choose-compare', compact('all_yabs'));
|
|
|
|
}
|
|
|
|
|
|
|
|
public function compareYabs($yabs1, $yabs2)
|
|
|
|
{
|
|
|
|
$yabs1_data = Yabs::yabs($yabs1);
|
|
|
|
|
|
|
|
if (count($yabs1_data) === 0) {
|
|
|
|
return response()->view('errors.404', array("status" => 404, "title" => "Page not found", "message" => "No YABs data was found for id '$yabs1'"), 404);
|
|
|
|
}
|
|
|
|
|
|
|
|
$yabs2_data = Yabs::yabs($yabs2);
|
|
|
|
|
|
|
|
if (count($yabs2_data) === 0) {
|
|
|
|
return response()->view('errors.404', array("status" => 404, "title" => "Page not found", "message" => "No YABs data was found for id '$server2'"), 404);
|
|
|
|
}
|
|
|
|
|
|
|
|
return view('yabs.compare', compact('yabs1_data', 'yabs2_data'));
|
|
|
|
}
|
|
|
|
|
2022-07-19 16:20:15 +02:00
|
|
|
public function yabsToJson(Yabs $yab): array
|
|
|
|
{
|
|
|
|
$all_yabs = Yabs::yabs($yab->id)[0];
|
|
|
|
return Yabs::buildYabsArray($all_yabs);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2022-03-05 16:02:12 +01:00
|
|
|
}
|