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
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 |