Method: RSpotify::Album#tracks

Defined in:
lib/rspotify/album.rb

#tracks(limit: 50, offset: 0, market: nil) ⇒ Array<Track>

Returns array of tracks from the album

Examples:

album = RSpotify::Album.find('41vPD50kQ7JeamkxQW7Vuy')
album.tracks.first.name #=> "Do I Wanna Know?"

Parameters:

  • limit (Integer) (defaults to: 50)

    Maximum number of tracks to return. Maximum: 50. Default: 50.

  • offset (Integer) (defaults to: 0)

    The index of the first track to return. Use with limit to get the next set of objects. Default: 0.

  • market (String) (defaults to: nil)

    Optional. An ISO 3166-1 alpha-2 country code. Default: nil.

Returns:


111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
# File 'lib/rspotify/album.rb', line 111

def tracks(limit: 50, offset: 0, market: nil)
  last_track = offset + limit - 1
  if @tracks_cache && last_track < 50 && !RSpotify.raw_response
    return @tracks_cache[offset..last_track]
  end

  url = "albums/#{@id}/tracks?limit=#{limit}&offset=#{offset}"
  url << "&market=#{market}" if market
  response = RSpotify.get(url)
  json = RSpotify.raw_response ? JSON.parse(response) : response

  tracks = json['items'].map { |i| Track.new i }
  @tracks_cache = tracks if limit == 50 && offset == 0
  return response if RSpotify.raw_response

  tracks
end