Compare commits
No commits in common. "61f01750ff2f7a27bcd0281a7b6d01a5841f75c8" and "97d8f4447d0839d3f251a7dfc2f5f123c36c4d5e" have entirely different histories.
61f01750ff
...
97d8f4447d
5 changed files with 16 additions and 42 deletions
|
@ -31,15 +31,13 @@ public function getDiscordPresence(): mixed {
|
||||||
|
|
||||||
$response = Http::get('https://api.lanyard.rest/v1/users/' . Config::get('services.lanyard.user_id'));
|
$response = Http::get('https://api.lanyard.rest/v1/users/' . Config::get('services.lanyard.user_id'));
|
||||||
$data = $response->json();
|
$data = $response->json();
|
||||||
if (!isset($data["data"])) return null;
|
|
||||||
$presence = $data["data"];
|
$presence = $data["data"];
|
||||||
Cache::put('discord_presence', $presence, now()->addSeconds(60));
|
Cache::put('discord_presence', $presence, now()->addSeconds(60));
|
||||||
return $presence;
|
return $presence;
|
||||||
}
|
}
|
||||||
|
|
||||||
public function getOnlineStatus(): ?array {
|
public function getOnlineStatus(): array {
|
||||||
$presence = $this->getDiscordPresence();
|
$presence = $this->getDiscordPresence();
|
||||||
if ($presence == null) return null;
|
|
||||||
return match ($presence["discord_status"]) {
|
return match ($presence["discord_status"]) {
|
||||||
"online", "dnd" => [
|
"online", "dnd" => [
|
||||||
"text" => "online",
|
"text" => "online",
|
||||||
|
|
|
@ -3,7 +3,6 @@
|
||||||
namespace App\View\Components;
|
namespace App\View\Components;
|
||||||
|
|
||||||
use Closure;
|
use Closure;
|
||||||
use Exception;
|
|
||||||
use Illuminate\Contracts\View\View;
|
use Illuminate\Contracts\View\View;
|
||||||
use Illuminate\Support\Facades\Cache;
|
use Illuminate\Support\Facades\Cache;
|
||||||
use Illuminate\Support\Facades\Config;
|
use Illuminate\Support\Facades\Config;
|
||||||
|
@ -26,16 +25,11 @@ public function getWeatherData(): mixed {
|
||||||
return Cache::get('weather_data');
|
return Cache::get('weather_data');
|
||||||
}
|
}
|
||||||
|
|
||||||
try {
|
$response = Http::get('http://'. Config::get('services.weatherlink') . '/v1/current_conditions');
|
||||||
$response = Http::get('http://' . Config::get('services.weatherlink') . '/v1/current_conditions');
|
$data = $response->json();
|
||||||
$data = $response->json();
|
$conditions = $data["data"]["conditions"];
|
||||||
$conditions = $data["data"]["conditions"];
|
Cache::put('weather_data', $conditions, now()->addSeconds(60));
|
||||||
Cache::put('weather_data', $conditions, now()->addSeconds(60));
|
return $conditions;
|
||||||
return $conditions;
|
|
||||||
} catch (Exception $ex) {
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -3,19 +3,9 @@
|
||||||
@foreach($categories as $category)
|
@foreach($categories as $category)
|
||||||
<div class="section">
|
<div class="section">
|
||||||
<h2>{{ $category->name }}</h2>
|
<h2>{{ $category->name }}</h2>
|
||||||
@if($category->id == 1)
|
|
||||||
<p><em>(These are shuffled every load)</em></p>
|
|
||||||
@php
|
|
||||||
$sites = $category->sites->shuffle();
|
|
||||||
@endphp
|
|
||||||
@else
|
|
||||||
@php
|
|
||||||
$sites = $category->sites;
|
|
||||||
@endphp
|
|
||||||
@endif
|
|
||||||
<hr>
|
<hr>
|
||||||
<ul>
|
<ul>
|
||||||
@foreach($sites as $site)
|
@foreach($category->sites as $site)
|
||||||
<li><a href="{{ $site->url }}">{{ $site->name }}</a> - {{ $site->description }}</li>
|
<li><a href="{{ $site->url }}">{{ $site->name }}</a> - {{ $site->description }}</li>
|
||||||
@endforeach
|
@endforeach
|
||||||
</ul>
|
</ul>
|
||||||
|
|
|
@ -1,7 +1,3 @@
|
||||||
@if($status == null)
|
<span>I'm</span>
|
||||||
<p>Status Unavailable</p>
|
<h2 class="online-status" style="color: {{ $status["color"] }};text-shadow: var(--firefox-shadow) {{ $status["color"] }}4f !important">{{ $status["text"] }}!</h2>
|
||||||
@else
|
|
||||||
<span>I'm</span>
|
|
||||||
<h2 class="online-status" style="color: {{ $status["color"] }};text-shadow: var(--firefox-shadow) {{ $status["color"] }}4f !important">{{ $status["text"] }}!</h2>
|
|
||||||
@endif
|
|
||||||
<p><strong>Time in Britain:</strong> <span id="clock"></span></p>
|
<p><strong>Time in Britain:</strong> <span id="clock"></span></p>
|
||||||
|
|
|
@ -1,15 +1,11 @@
|
||||||
<p><strong>Weather Conditions:</strong></p>
|
<p><strong>Weather Conditions:</strong></p>
|
||||||
<hr style="margin: 4px 0">
|
<hr style="margin: 4px 0">
|
||||||
@if($conditions == null)
|
<p><strong>Temperature:</strong> {{ round(($conditions[0]["temp"] - 32) * (5/9), 1) }} degC</p>
|
||||||
<p>Data Unavailable</p>
|
<p><strong>Rain:</strong> {{ ($conditions[0]["rain_rate_last"] * 0.2) }}mm/hr ({{ $conditions[0]["rainfall_daily"] }}mm today)</p>
|
||||||
|
@if ($conditions[0]["wind_speed_last"] != 0)
|
||||||
|
<p><strong>Wind:</strong> {{ round($conditions[0]["wind_speed_last"], 1) }}mph ({{ $conditions[0]["wind_dir_last"] }} deg)</p>
|
||||||
@else
|
@else
|
||||||
<p><strong>Temperature:</strong> {{ round(($conditions[0]["temp"] - 32) * (5/9), 1) }} degC</p>
|
<p><strong>Wind:</strong> 0mph</p>
|
||||||
<p><strong>Rain:</strong> {{ ($conditions[0]["rain_rate_last"] * 0.2) }}mm/hr ({{ $conditions[0]["rainfall_daily"] }}mm today)</p>
|
|
||||||
@if ($conditions[0]["wind_speed_last"] != 0)
|
|
||||||
<p><strong>Wind:</strong> {{ round($conditions[0]["wind_speed_last"], 1) }}mph ({{ $conditions[0]["wind_dir_last"] }} deg)</p>
|
|
||||||
@else
|
|
||||||
<p><strong>Wind:</strong> 0mph</p>
|
|
||||||
@endif
|
|
||||||
<p><strong>Humidity:</strong> {{ round($conditions[0]["hum"], 1) }}%</p>
|
|
||||||
<p><strong>Pressure:</strong> {{ round($conditions[2]["bar_sea_level"], 1) }} inHg</p>
|
|
||||||
@endif
|
@endif
|
||||||
|
<p><strong>Humidity:</strong> {{ round($conditions[0]["hum"], 1) }}%</p>
|
||||||
|
<p><strong>Pressure:</strong> {{ round($conditions[2]["bar_sea_level"], 1) }} inHg</p>
|
||||||
|
|
Loading…
Reference in a new issue