ctrlpanel/app/Http/Controllers/HomeController.php

109 lines
2.6 KiB
PHP
Raw Normal View History

2021-06-05 09:26:32 +00:00
<?php
namespace App\Http\Controllers;
2021-07-05 19:49:28 +00:00
use App\Models\UsefulLink;
2021-10-26 14:12:47 +00:00
use App\Models\Configuration;
2021-06-05 09:26:32 +00:00
use Illuminate\Http\Request;
use Illuminate\Support\Facades\Auth;
class HomeController extends Controller
{
2021-10-27 07:13:52 +00:00
const TIME_LEFT_BG_SUCCESS = "bg-success";
const TIME_LEFT_BG_WARNING = "bg-warning";
const TIME_LEFT_BG_DANGER = "bg-danger";
const TIME_LEFT_OUT_OF_CREDITS_TEXT = "You ran out of Credits";
2021-10-27 05:48:00 +00:00
2021-06-05 09:26:32 +00:00
public function __construct()
{
$this->middleware('auth');
}
2021-10-27 07:13:52 +00:00
/**
2021-10-27 06:41:07 +00:00
* @description Get the Background Color for the Days-Left-Box in HomeView
2021-10-27 07:13:52 +00:00
*
2021-10-27 06:41:07 +00:00
* @param float $days
*
* @return string
*/
public function getTimeLeftBoxBackground(float $days)
2021-10-27 06:41:07 +00:00
{
switch ($days)
{
2021-10-27 05:48:00 +00:00
case ($days >= 15):
return $this::TIME_LEFT_BG_SUCCESS;
2021-10-27 06:41:07 +00:00
break;
2021-10-27 05:48:41 +00:00
2021-10-27 05:48:00 +00:00
case ($days >= 8 && $days <= 14):
return $this::TIME_LEFT_BG_WARNING;
2021-10-27 06:41:07 +00:00
break;
2021-10-27 05:48:41 +00:00
2021-10-27 05:48:00 +00:00
case ($days <= 7):
return $this::TIME_LEFT_BG_DANGER;
2021-10-27 06:41:07 +00:00
break;
2021-10-27 05:48:41 +00:00
2021-10-27 05:48:00 +00:00
default:
2021-10-27 06:41:07 +00:00
return $this::TIME_LEFT_BG_WARNING;
}
}
2021-10-27 07:13:52 +00:00
/**
* @description Get the Text for the Days-Left-Box in HomeView
*
* @param float $days
* @param float $hours
2021-10-27 06:41:07 +00:00
*
* @return string
*/
public function getTimeLeftBoxText(float $days, float $hours)
2021-10-27 06:41:07 +00:00
{
if ($days < 1)
{
if ($hours < 1)
2021-10-27 05:48:00 +00:00
{
2021-10-27 07:13:52 +00:00
return $this::TIME_LEFT_OUT_OF_CREDITS_TEXT;
2021-10-27 05:48:00 +00:00
}
else
{
2021-10-27 06:41:07 +00:00
return strval($hours);
2021-10-27 05:48:00 +00:00
}
}
2021-10-27 06:41:07 +00:00
return strval(number_format($days, 0));
}
2021-10-27 05:48:00 +00:00
2021-06-06 18:17:52 +00:00
/** Show the application dashboard. */
2021-06-06 21:26:36 +00:00
public function index(Request $request)
2021-06-05 09:26:32 +00:00
{
2021-10-26 15:51:15 +00:00
$usage = Auth::user()->creditUsage();
$credits = Auth::user()->Credits();
2021-10-26 15:55:55 +00:00
$bg = "";
$boxText = "";
2021-10-26 14:53:53 +00:00
$unit = "";
2021-06-05 09:26:32 +00:00
2021-10-27 05:48:00 +00:00
/** Build our Time-Left-Box */
2021-10-26 15:55:55 +00:00
if ($credits > 0.01 and $usage > 0)
{
$days = number_format(($credits * 30) / $usage, 2, '.', '');
$hours = number_format($credits / ($usage / 30 / 24) , 2, '.', '');
2021-10-27 05:48:00 +00:00
$bg = $this->getTimeLeftBoxBackground($days);
2021-10-27 06:41:07 +00:00
$boxText = $this->getTimeLeftBoxText($days, $hours);
$unit = $days < 1 ? 'hours' : 'days';
2021-10-26 14:24:57 +00:00
2021-10-26 14:18:16 +00:00
}
2021-10-27 07:13:52 +00:00
2021-10-27 06:41:07 +00:00
2021-10-26 15:55:55 +00:00
// RETURN ALL VALUES
2021-10-26 14:53:53 +00:00
return view('home')->with([
'useage' => $usage,
2021-10-26 17:26:41 +00:00
'credits' => $credits,
2021-10-26 14:53:53 +00:00
'useful_links' => UsefulLink::all()->sortBy('id'),
'bg' => $bg,
2021-10-27 07:13:52 +00:00
'boxText' => $boxText,
2021-10-26 14:53:53 +00:00
'unit' => $unit
]);
2021-10-26 15:55:55 +00:00
}
2021-10-26 14:53:53 +00:00
}