PHP Class App\services\Lastfm

Inheritance: extends RESTfulService
Afficher le fichier Open project: phanan/koel Class Usage Examples

Protected Properties

Свойство Type Description
$keyParam string Override the key param, since, again, Lastfm wants to be different.
$responseFormat string Specify the response format, since Last.fm only returns XML.

Méthodes publiques

Méthode Description
__construct ( string $key = null, string $secret = null, Client $client = null ) Construct an instance of Lastfm service.
buildAuthCallParams ( array $params, boolean $toString = false ) : array | string Build the parameters to use for _authenticated_ Last.fm API calls.
enabled ( ) : boolean Determine if Last.fm integration is enabled.
getAlbumInfo ( string $name, string $artistName ) : array | false Get information about an album.
getArtistInfo ( $name ) : array | false Get information about an artist.
getSessionKey ( string $token ) : string Get Last.fm's session key for the authenticated user using a token.
scrobble ( string $artist, string $track, string | integer $timestamp, string $album, string $sk ) : boolean Scrobble a song.
toggleLoveTrack ( string $track, string $artist, string $sk, boolean $love = true ) : boolean Love or unlove a track on Last.fm.
updateNowPlaying ( string $artist, string $track, string $album, integer | float $duration, string $sk ) : boolean Update a track's "now playing" on Last.fm.
used ( ) : boolean Determine if our application is using Last.fm.

Méthodes protégées

Méthode Description
formatText ( string $str ) : string Correctly format a string returned by Last.fm.

Method Details

__construct() public méthode

Construct an instance of Lastfm service.
public __construct ( string $key = null, string $secret = null, Client $client = null )
$key string Last.fm API key.
$secret string Last.fm API shared secret.
$client GuzzleHttp\Client The Guzzle HTTP client.

buildAuthCallParams() public méthode

Such calls require: - The API key (api_key) - The API signature (api_sig).
public buildAuthCallParams ( array $params, boolean $toString = false ) : array | string
$params array The array of parameters.
$toString boolean Whether to turn the array into a query string
Résultat array | string

enabled() public méthode

Determine if Last.fm integration is enabled.
public enabled ( ) : boolean
Résultat boolean

formatText() protected méthode

Correctly format a string returned by Last.fm.
protected formatText ( string $str ) : string
$str string
Résultat string

getAlbumInfo() public méthode

Get information about an album.
public getAlbumInfo ( string $name, string $artistName ) : array | false
$name string Name of the album
$artistName string Name of the artist
Résultat array | false

getArtistInfo() public méthode

Get information about an artist.
public getArtistInfo ( $name ) : array | false
$name string Name of the artist
Résultat array | false

getSessionKey() public méthode

Get Last.fm's session key for the authenticated user using a token.
public getSessionKey ( string $token ) : string
$token string The token after successfully connecting to Last.fm
Résultat string The token key

scrobble() public méthode

Scrobble a song.
public scrobble ( string $artist, string $track, string | integer $timestamp, string $album, string $sk ) : boolean
$artist string The artist name
$track string The track name
$timestamp string | integer The UNIX timestamp
$album string The album name
$sk string The session key
Résultat boolean

toggleLoveTrack() public méthode

Love or unlove a track on Last.fm.
public toggleLoveTrack ( string $track, string $artist, string $sk, boolean $love = true ) : boolean
$track string The track name
$artist string The artist's name
$sk string The session key
$love boolean Whether to love or unlove. Such cheesy terms... urrgggh
Résultat boolean

updateNowPlaying() public méthode

Update a track's "now playing" on Last.fm.
public updateNowPlaying ( string $artist, string $track, string $album, integer | float $duration, string $sk ) : boolean
$artist string Name of the artist
$track string Name of the track
$album string Name of the album
$duration integer | float Duration of the track, in seconds
$sk string The session key
Résultat boolean

used() public méthode

Determine if our application is using Last.fm.
public used ( ) : boolean
Résultat boolean

Property Details

$keyParam protected_oe property

Override the key param, since, again, Lastfm wants to be different.
protected string $keyParam
Résultat string

$responseFormat protected_oe property

Specify the response format, since Last.fm only returns XML.
protected string $responseFormat
Résultat string