aboutsummaryrefslogtreecommitdiff
path: root/app
diff options
context:
space:
mode:
Diffstat (limited to 'app')
-rw-r--r--app/Http/Controllers/CalculatorsController.php13
-rw-r--r--app/Http/Controllers/ComputersController.php13
-rw-r--r--app/Http/Controllers/MusicController.php1
-rw-r--r--app/Http/Controllers/PrivacyController.php16
-rw-r--r--app/View/Components/DiscordStatus.php68
-rw-r--r--app/View/Components/LastFMCurrent.php11
-rw-r--r--app/View/Components/LastFMTop.php9
-rw-r--r--app/View/Components/LastFMTrack.php9
-rw-r--r--app/View/Components/Navbar.php9
-rw-r--r--app/View/Components/NeverSaid.php34
-rw-r--r--app/View/Components/TohQuote.php35
-rw-r--r--app/View/Components/Wah.php3
-rw-r--r--app/View/Components/Weather.php50
13 files changed, 14 insertions, 257 deletions
diff --git a/app/Http/Controllers/CalculatorsController.php b/app/Http/Controllers/CalculatorsController.php
deleted file mode 100644
index 38a7a41..0000000
--- a/app/Http/Controllers/CalculatorsController.php
+++ /dev/null
@@ -1,13 +0,0 @@
-<?php
-
-namespace App\Http\Controllers;
-
-use Illuminate\Http\Request;
-use Illuminate\View\View;
-
-class CalculatorsController extends Controller
-{
- public function show() : View {
- return view('calculators');
- }
-}
diff --git a/app/Http/Controllers/ComputersController.php b/app/Http/Controllers/ComputersController.php
deleted file mode 100644
index e16e70d..0000000
--- a/app/Http/Controllers/ComputersController.php
+++ /dev/null
@@ -1,13 +0,0 @@
-<?php
-
-namespace App\Http\Controllers;
-
-use Illuminate\Http\Request;
-use Illuminate\View\View;
-
-class ComputersController extends Controller
-{
- public function show() : View {
- return view('computers');
- }
-}
diff --git a/app/Http/Controllers/MusicController.php b/app/Http/Controllers/MusicController.php
index 71ab1cc..ef68d2a 100644
--- a/app/Http/Controllers/MusicController.php
+++ b/app/Http/Controllers/MusicController.php
@@ -23,7 +23,6 @@ class MusicController extends Controller
'api_key' => Config::get('services.lastfm.key')
])->get('https://ws.audioscrobbler.com/2.0/');
$data = $response->json();
- error_log($response->body());
$track_data = $data["recenttracks"]["track"][0];
// $image = array_column($track_data["image"], null, 'size')['large'] ?? false;
$image = $track_data["image"][(array_key_last($track_data["image"]))] ?? false;
diff --git a/app/Http/Controllers/PrivacyController.php b/app/Http/Controllers/PrivacyController.php
deleted file mode 100644
index 277bf35..0000000
--- a/app/Http/Controllers/PrivacyController.php
+++ /dev/null
@@ -1,16 +0,0 @@
-<?php
-
-namespace App\Http\Controllers;
-
-use Illuminate\Http\Request;
-use Illuminate\View\View;
-
-class PrivacyController extends Controller{
- /**
- * Shows the page
- * @return View
- */
- public function show(): View {
- return view('privacy');
- }
-}
diff --git a/app/View/Components/DiscordStatus.php b/app/View/Components/DiscordStatus.php
deleted file mode 100644
index 3ad3a3b..0000000
--- a/app/View/Components/DiscordStatus.php
+++ /dev/null
@@ -1,68 +0,0 @@
-<?php
-
-namespace App\View\Components;
-
-use Closure;
-use Illuminate\Contracts\View\View;
-use Illuminate\Support\Facades\Cache;
-use Illuminate\Support\Facades\Config;
-use Illuminate\Support\Facades\Http;
-use Illuminate\View\Component;
-
-class DiscordStatus extends Component
-{
- /**
- * Create a new component instance.
- */
- public function __construct()
- {
- //
- }
-
- /**
- * Returns current Discord presence from Lanyard API
- * @return array|mixed
- */
- public function getDiscordPresence(): mixed {
- // If it's already cached just return that
- if (Cache::has('discord_presence')) {
- return Cache::get('discord_presence');
- }
-
- $response = Http::get('https://api.lanyard.rest/v1/users/' . Config::get('services.lanyard.user_id'));
- $data = $response->json();
- if (!isset($data["data"])) return null;
- $presence = $data["data"];
- Cache::put('discord_presence', $presence, now()->addSeconds(60));
- return $presence;
- }
-
- public function getOnlineStatus(): ?array {
- $presence = $this->getDiscordPresence();
- if ($presence == null) return null;
- return match ($presence["discord_status"]) {
- "online", "dnd" => [
- "text" => "online",
- "color" => "#02c83a"
- ],
- "idle" => [
- "text" => "away",
- "color" => "#d77c20"
- ],
- default => [
- "text" => "offline",
- "color" => "#ca3329"
- ],
- };
- }
-
- /**
- * Get the view / contents that represent the component.
- */
- public function render(): View|Closure|string
- {
- return view('components.discord-status', [
- 'status' => $this->getOnlineStatus(),
- ]);
- }
-}
diff --git a/app/View/Components/LastFMCurrent.php b/app/View/Components/LastFMCurrent.php
index 712efbd..ebe029b 100644
--- a/app/View/Components/LastFMCurrent.php
+++ b/app/View/Components/LastFMCurrent.php
@@ -6,22 +6,19 @@ use Closure;
use Illuminate\Contracts\View\View;
use Illuminate\View\Component;
-class LastFMCurrent extends Component
-{
+class LastFMCurrent extends Component {
public $track;
/**
* Create a new component instance.
*/
- public function __construct($track)
- {
+ public function __construct($track) {
$this->track = $track;
}
/**
* Get the view / contents that represent the component.
*/
- public function render(): View|Closure|string
- {
- return view('components.lasfm-current');
+ public function render(): View|Closure|string {
+ return view('components.lastfm-current');
}
}
diff --git a/app/View/Components/LastFMTop.php b/app/View/Components/LastFMTop.php
index b8de2eb..da69710 100644
--- a/app/View/Components/LastFMTop.php
+++ b/app/View/Components/LastFMTop.php
@@ -6,22 +6,19 @@ use Closure;
use Illuminate\Contracts\View\View;
use Illuminate\View\Component;
-class LastFMTop extends Component
-{
+class LastFMTop extends Component {
public $tracks;
/**
* Create a new component instance.
*/
- public function __construct($tracks)
- {
+ public function __construct($tracks) {
$this->tracks = $tracks;
}
/**
* Get the view / contents that represent the component.
*/
- public function render(): View|Closure|string
- {
+ public function render(): View|Closure|string {
return view('components.lastfm-top');
}
}
diff --git a/app/View/Components/LastFMTrack.php b/app/View/Components/LastFMTrack.php
index 737b5e3..da77fe2 100644
--- a/app/View/Components/LastFMTrack.php
+++ b/app/View/Components/LastFMTrack.php
@@ -6,15 +6,13 @@ use Closure;
use Illuminate\Contracts\View\View;
use Illuminate\View\Component;
-class LastFMTrack extends Component
-{
+class LastFMTrack extends Component {
public $track;
public $count;
/**
* Create a new component instance.
*/
- public function __construct($track, $count)
- {
+ public function __construct($track, $count) {
$this->track = $track;
$this->count = $count;
}
@@ -22,8 +20,7 @@ class LastFMTrack extends Component
/**
* Get the view / contents that represent the component.
*/
- public function render(): View|Closure|string
- {
+ public function render(): View|Closure|string {
return view('components.lastfm-track');
}
}
diff --git a/app/View/Components/Navbar.php b/app/View/Components/Navbar.php
index 7f119fe..b7612c1 100644
--- a/app/View/Components/Navbar.php
+++ b/app/View/Components/Navbar.php
@@ -6,22 +6,19 @@ use Closure;
use Illuminate\Contracts\View\View;
use Illuminate\View\Component;
-class Navbar extends Component
-{
+class Navbar extends Component {
public $title;
/**
* Create a new component instance.
*/
- public function __construct($title)
- {
+ public function __construct($title) {
$this->title = $title;
}
/**
* Get the view / contents that represent the component.
*/
- public function render(): View|Closure|string
- {
+ public function render(): View|Closure|string {
return view('components.navigation');
}
}
diff --git a/app/View/Components/NeverSaid.php b/app/View/Components/NeverSaid.php
deleted file mode 100644
index c9e1006..0000000
--- a/app/View/Components/NeverSaid.php
+++ /dev/null
@@ -1,34 +0,0 @@
-<?php
-
-namespace App\View\Components;
-
-use Closure;
-use Illuminate\Contracts\View\View;
-use Illuminate\View\Component;
-
-class NeverSaid extends Component
-{
- /**
- * Create a new component instance.
- */
- public function __construct()
- {
- //
- }
-
- function returnQuote(): array {
- $quotes = config('quotes.neversaid');
- $index = rand(0, count($quotes) - 1);
- return $quotes[$index];
- }
-
- /**
- * Get the view / contents that represent the component.
- */
- public function render(): View|Closure|string
- {
- return view('components.never-said', [
- "quote" => $this->returnQuote()
- ]);
- }
-}
diff --git a/app/View/Components/TohQuote.php b/app/View/Components/TohQuote.php
deleted file mode 100644
index a53d713..0000000
--- a/app/View/Components/TohQuote.php
+++ /dev/null
@@ -1,35 +0,0 @@
-<?php
-
-namespace App\View\Components;
-
-use Closure;
-use Illuminate\Contracts\View\View;
-use Illuminate\View\Component;
-
-class TohQuote extends Component
-{
- /**
- * Create a new component instance.
- */
- public function __construct()
- {
- //
- }
-
- function returnQuote(): array {
- $quotes = config('quotes.toh');
- $index = rand(0, count($quotes) - 1);
- return $quotes[$index];
- }
-
-
- /**
- * Get the view / contents that represent the component.
- */
- public function render(): View|Closure|string
- {
- return view('components.toh-quote',[
- 'quote' => $this->returnQuote()
- ]);
- }
-}
diff --git a/app/View/Components/Wah.php b/app/View/Components/Wah.php
index aeb5757..fc5f599 100644
--- a/app/View/Components/Wah.php
+++ b/app/View/Components/Wah.php
@@ -9,8 +9,7 @@ use Illuminate\Support\Facades\Config;
use Illuminate\Support\Facades\Http;
use Illuminate\View\Component;
-class Wah extends Component
-{
+class Wah extends Component {
/**
* Create a new component instance.
*/
diff --git a/app/View/Components/Weather.php b/app/View/Components/Weather.php
deleted file mode 100644
index dcf3ff7..0000000
--- a/app/View/Components/Weather.php
+++ /dev/null
@@ -1,50 +0,0 @@
-<?php
-
-namespace App\View\Components;
-
-use Closure;
-use Exception;
-use Illuminate\Contracts\View\View;
-use Illuminate\Support\Facades\Cache;
-use Illuminate\Support\Facades\Config;
-use Illuminate\Support\Facades\Http;
-use Illuminate\View\Component;
-
-class Weather extends Component
-{
- /**
- * Create a new component instance.
- */
- public function __construct()
- {
- //
- }
-
- public function getWeatherData(): mixed {
- // If it's already cached just return that
- if (Cache::has('weather_data')) {
- return Cache::get('weather_data');
- }
-
- try {
- $response = Http::get('http://' . Config::get('services.weatherlink') . '/v1/current_conditions');
- $data = $response->json();
- $conditions = $data["data"]["conditions"];
- Cache::put('weather_data', $conditions, now()->addSeconds(60));
- return $conditions;
- } catch (Exception $ex) {
- return null;
- }
-
- }
-
- /**
- * Get the view / contents that represent the component.
- */
- public function render(): View|Closure|string
- {
- return view('components.weather', [
- 'conditions' => $this->getWeatherData(),
- ]);
- }
-}