From 45fd1d23c4b22d0b1bbd070d799ad3e6f274a8e5 Mon Sep 17 00:00:00 2001 From: Frankie B Date: Sun, 2 Jul 2023 02:01:54 +0100 Subject: feat: update lastfm & weather to use internal API --- resources/views/components/lastfm.blade.php | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) (limited to 'resources/views/components/lastfm.blade.php') diff --git a/resources/views/components/lastfm.blade.php b/resources/views/components/lastfm.blade.php index 92b2c9c..75ec064 100644 --- a/resources/views/components/lastfm.blade.php +++ b/resources/views/components/lastfm.blade.php @@ -1,26 +1,25 @@ @php $cfg = app('config')->get('services')['lastfm']; +$api_root = app('config')->get('app')['api_root']; -$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; +$current_track = json_decode(file_get_contents($api_root.'/lastfm/current')); +$toptracks = json_decode(file_get_contents($api_root.'/lastfm/top')); $count = 0; @endphp

Last.fm (Profile)

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

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

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