<?php
namespace App\Providers;
use GuzzleHttp\Exception\ConnectException;
use Illuminate\Support\Facades\Cache;
use Illuminate\Support\Facades\Http;
use Illuminate\Support\Facades\Log;
use Illuminate\Support\ServiceProvider;
use Illuminate\Support\Facades\View;
class MojangStatusProvider extends ServiceProvider
{
/**
* Register services.
*
* @return void
*/
public function register()
//
}
* Bootstrap services.
public function boot()
// TODO: (IMPORTANT) Switch this to Middleware
if (!Cache::has('mojang_status'))
Log::info("Mojang Status Provider: Mojang Status not found in the cache; Sending new request.");
try
$mcstatus = Http::get(config('general.urls.mojang.statuscheck'));
Cache::put('mojang_status', base64_encode($mcstatus->body()), now()->addDays(3));
catch(ConnectException $connectException)
Log::critical('Could not connect to Mojang servers: Cannot check/refresh status', [
'message' => $connectException->getMessage()
]);
View::share('mcstatus', json_decode(base64_decode(Cache::get('mojang_status')), true));