From 30f68f5c7daae4fad4e0f986c21b10a801a3988c Mon Sep 17 00:00:00 2001 From: Frankie B Date: Wed, 14 Jun 2023 22:05:01 +0100 Subject: Vastly improve lastfm thing --- resources/views/components/lastfm.blade.php | 67 ++++++----------------------- 1 file changed, 13 insertions(+), 54 deletions(-) (limited to 'resources/views/components') diff --git a/resources/views/components/lastfm.blade.php b/resources/views/components/lastfm.blade.php index 78c5f81..92b2c9c 100644 --- a/resources/views/components/lastfm.blade.php +++ b/resources/views/components/lastfm.blade.php @@ -1,67 +1,26 @@ -get('services')['lastfm']; - -$curl_current = curl_init(); - -curl_setopt_array($curl_current, [ - CURLOPT_URL => "https://ws.audioscrobbler.com/2.0/?method=user.getrecenttracks&user=".$cfg['user']."&nowplaying=true&format=json&api_key=".$cfg['key'], - CURLOPT_RETURNTRANSFER => true, - CURLOPT_ENCODING => "", - CURLOPT_MAXREDIRS => 10, - CURLOPT_TIMEOUT => 30, - CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1, - CURLOPT_CUSTOMREQUEST => "GET", -]); - -$current_response = curl_exec($curl_current); -$err = curl_error($curl_current); - -curl_close($curl_current); +@php -if ($err) { - die("cURL Error #:" . $err); -} -$current_response = json_decode($current_response, true); -$nowplaying = $current_response['recenttracks']['track'][0]; - - -$tracks_to_show = 10; - -$curl = curl_init(); -curl_setopt_array($curl, [ - CURLOPT_URL => "https://ws.audioscrobbler.com/2.0/?method=user.gettoptracks&user=".$cfg['user']."&format=json&period=7day&api_key=".$cfg['key'], - CURLOPT_RETURNTRANSFER => true, - CURLOPT_ENCODING => "", - CURLOPT_MAXREDIRS => 10, - CURLOPT_TIMEOUT => 30, - CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1, - CURLOPT_CUSTOMREQUEST => "GET", -]); - -$toptracks = curl_exec($curl); -$err = curl_error($curl); -curl_close($curl); -if ($err) { - die("cURL Error #:" . $err); -} +$cfg = app('config')->get('services')['lastfm']; -$toptracks = json_decode($toptracks, true); -$tracks = $toptracks['toptracks']['track']; +$current_response = json_decode(file_get_contents("https://ws.audioscrobbler.com/2.0/?method=user.getrecenttracks&user=".$cfg['user']."&nowplaying=true&format=json&api_key=".$cfg['key'])); +$nowplaying = $current_response->recenttracks->track[0]; +$toptracks = json_decode(file_get_contents("https://ws.audioscrobbler.com/2.0/?method=user.gettoptracks&user=".$cfg['user']."&format=json&period=7day&api_key=".$cfg['key'])); +$tracks = $toptracks->toptracks->track; $count = 0; -?> +@endphp

Last.fm (Profile)

- Last/Current Track: {{ $nowplaying['name'] }} • {{ $nowplaying['artist']['#text'] }} -

Top {{ $tracks_to_show }} Tracks (Last 7 days)

+ Last/Current Track: {{ $nowplaying->name }} • {{ $nowplaying->artist->{"#text"} }} +

Top {{ $cfg['toptracks'] }} Tracks (Last 7 days)

    @foreach ($tracks as $track) - @if ($count >= $tracks_to_show) + @if ($count >= $cfg['toptracks'])
@break @endif
  • - {{ $track['name'] }} • {{ $track['artist']['name'] }} - ({{$track['playcount']}} plays) + {{ $track->name }} • {{ $track->artist->name }} + ({{ $track->playcount }} plays)
  • - +@php $count++ @endphp @endforeach -- cgit v1.2.3-54-g00ecf