ctrlpanel/app/Http/Controllers/HomeController.php

104 lines
2.7 KiB
PHP
Raw Normal View History

2021-06-05 09:26:32 +00:00
<?php
2021-06-05 09:26:32 +00:00
namespace App\Http\Controllers;
use App\Models\Egg;
use App\Models\Product;
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;
2021-11-11 16:16:25 +00:00
2021-06-05 09:26:32 +00:00
class HomeController extends Controller
{
const TIME_LEFT_BG_SUCCESS = "bg-success";
const TIME_LEFT_BG_WARNING = "bg-warning";
const TIME_LEFT_BG_DANGER = "bg-danger";
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
/**
* @description Get the Background Color for the Days-Left-Box in HomeView
*
2021-11-11 15:25:29 +00:00
* @param float $daysLeft
*
* @return string
*/
2021-11-11 15:25:29 +00:00
public function getTimeLeftBoxBackground(float $daysLeft): string
2021-10-27 06:41:07 +00:00
{
2021-11-11 15:25:29 +00:00
if ($daysLeft >= 15) {
return $this::TIME_LEFT_BG_SUCCESS;
}
2021-11-11 15:25:29 +00:00
if ($daysLeft <= 7) {
return $this::TIME_LEFT_BG_DANGER;
2021-10-27 06:41:07 +00:00
}
return $this::TIME_LEFT_BG_WARNING;
2021-10-27 06:41:07 +00:00
}
2021-11-08 06:38:29 +00:00
/**
* @description Set "hours", "days" or nothing behind the remaining time
*
2021-11-11 15:25:29 +00:00
* @param float $daysLeft
* @param float $hoursLeft
*
* @return string|void
*/
2021-11-11 15:25:29 +00:00
public function getTimeLeftBoxUnit(float $daysLeft, float $hoursLeft)
2021-11-08 06:38:29 +00:00
{
2021-12-13 10:47:35 +00:00
if ($daysLeft > 1) return __('days');
return $hoursLeft < 1 ? null : __("hours");
2021-11-08 06:38:29 +00:00
}
2021-10-27 07:13:52 +00:00
/**
* @description Get the Text for the Days-Left-Box in HomeView
*
2021-11-11 15:25:29 +00:00
* @param float $daysLeft
* @param float $hoursLeft
*
* @return string
*/
2021-11-11 15:25:29 +00:00
public function getTimeLeftBoxText(float $daysLeft, float $hoursLeft)
2021-10-27 06:41:07 +00:00
{
2021-11-12 18:47:13 +00:00
if ($daysLeft > 1) return strval(number_format($daysLeft, 0));
2021-12-13 10:47:35 +00:00
return ($hoursLeft < 1 ? __("You ran out of Credits") : strval($hoursLeft));
2021-10-27 06:41:07 +00:00
}
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 */
if ($credits > 0.01 and $usage > 0) {
$daysLeft = number_format(($credits * 30) / $usage, 2, '.', '');
$hoursLeft = number_format($credits / ($usage / 30 / 24), 2, '.', '');
2021-10-26 15:55:55 +00:00
$bg = $this->getTimeLeftBoxBackground($daysLeft);
$boxText = $this->getTimeLeftBoxText($daysLeft, $hoursLeft);
2021-12-13 10:47:35 +00:00
$unit = $daysLeft < 1 ? ($hoursLeft < 1 ? null : __("hours")) : __("days");
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
}