mirror of
https://github.com/koel/koel
synced 2024-11-24 13:13:05 +00:00
cf27ed713d
Koel can now integrate and use the rich information from Last.fm. Now whenever a song is played, its album and artist information will be queried from Last.fm and cached for later use. What's better, if an album has no cover, Koel will try to update its cover if one is found on Last.fm. In order to use this feature, users only need to provide valid Last.fm API credentials (namely LASTFM_API_KEY and LASTFM_API_SECRET) in .env. A npm and gulp rebuild is also required - just like with every update.
31 lines
514 B
PHP
31 lines
514 B
PHP
<?php
|
|
|
|
namespace App\Providers;
|
|
|
|
use App\Services\Lastfm;
|
|
use Illuminate\Support\ServiceProvider;
|
|
|
|
class LastfmServiceProvider extends ServiceProvider
|
|
{
|
|
/**
|
|
* Bootstrap the application services.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function boot()
|
|
{
|
|
//
|
|
}
|
|
|
|
/**
|
|
* Register the application services.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function register()
|
|
{
|
|
app()->singleton('Lastfm', function () {
|
|
return new Lastfm();
|
|
});
|
|
}
|
|
}
|