com.lajospolya.spotifyapiwrapper.request.GetArtistsAlbums Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of spotify-api-wrapper Show documentation
Show all versions of spotify-api-wrapper Show documentation
This project wraps the Spotify public API in order to allow users to intuitively use it
package com.lajospolya.spotifyapiwrapper.request;
import com.lajospolya.spotifyapiwrapper.enumeration.AlbumType;
import com.lajospolya.spotifyapiwrapper.response.ArtistsAlbums;
import java.util.List;
/**
* @author Lajos Polya
*
* Represents the endpoint at GET https://api.spotify.com/v1/artists/{id}/albums as descrbibed at
* https://developer.spotify.com/documentation/web-api/reference-beta/
*/
public class GetArtistsAlbums extends AbstractSpotifyRequest
{
private static final String REQUEST_URI_STRING = SPOTIFY_V1_API_URI + "artists/{id}/albums";
private GetArtistsAlbums(SpotifyRequestBuilder requestBuilder)
{
super(requestBuilder);
}
public static class Builder extends AbstractBuilder
{
private String artistId;
private Integer limit;
private Integer offset;
private String market;
private List includeGroups;
public Builder(String artistId) throws IllegalArgumentException
{
spotifyRequestParamValidationService.validateParametersNotNull(artistId);
this.artistId = artistId;
}
@Override
public GetArtistsAlbums build()
{
SpotifyRequestBuilder spotifyRequestBuilder = new SpotifyRequestBuilder(REQUEST_URI_STRING, artistId);
addOptionalQueryParams(spotifyRequestBuilder);
return new GetArtistsAlbums(spotifyRequestBuilder.GET());
}
private void addOptionalQueryParams(SpotifyRequestBuilder requestUriBuilder)
{
if(market != null)
{
requestUriBuilder.queryParam(MARKET_QUERY_PARAM, market);
}
if(limit != null)
{
requestUriBuilder.queryParam(LIMIT_QUERY_PARAM, limit);
}
if(offset != null)
{
requestUriBuilder.queryParam(OFFSET_QUERY_PARAM, offset);
}
if(includeGroups != null)
{
requestUriBuilder.queryParam(INCLUDE_GROUPS_QUERY_PARAM, includeGroups, AlbumType::getType);
}
}
public Builder limit(Integer limit)
{
spotifyRequestParamValidationService.validateLimit50(limit);
this.limit = limit;
return this;
}
public Builder offset(Integer offset)
{
spotifyRequestParamValidationService.validateOffset(offset);
this.offset = offset;
return this;
}
public Builder market(String market)
{
this.market = market;
return this;
}
public Builder albumType(List includeGroups)
{
spotifyRequestParamValidationService.validateList(includeGroups);
this.includeGroups = includeGroups;
return this;
}
}
}