com.wrapper.spotify.requests.data.search.simplified.SearchAlbumsRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of spotify-web-api-java Show documentation
Show all versions of spotify-web-api-java Show documentation
A Java client for Spotify's Web API
package com.wrapper.spotify.requests.data.search.simplified;
import com.neovisionaries.i18n.CountryCode;
import com.wrapper.spotify.exceptions.SpotifyWebApiException;
import com.wrapper.spotify.model_objects.specification.AlbumSimplified;
import com.wrapper.spotify.model_objects.specification.Paging;
import com.wrapper.spotify.requests.data.AbstractDataRequest;
import java.io.IOException;
/**
* Get Spotify catalog information about albums that match a keyword string.
*/
public class SearchAlbumsRequest extends AbstractDataRequest {
/**
* The private {@link SearchAlbumsRequest} constructor.
*
* @param builder A {@link SearchAlbumsRequest.Builder}.
*/
private SearchAlbumsRequest(final Builder builder) {
super(builder);
}
/**
* Search for albums.
*
* @return An {@link AlbumSimplified} paging.
* @throws IOException In case of networking issues.
* @throws SpotifyWebApiException The Web API returned an error further specified in this exception's root cause.
*/
@SuppressWarnings("unchecked")
public Paging execute() throws
IOException,
SpotifyWebApiException {
return new AlbumSimplified.JsonUtil().createModelObjectPaging(getJson(), "albums");
}
/**
* Builder class for building a {@link SearchAlbumsRequest}.
*/
public static final class Builder extends AbstractDataRequest.Builder {
/**
* Create a new {@link SearchAlbumsRequest.Builder}.
*
* @param accessToken Required. A valid access token from the Spotify Accounts service.
*/
public Builder(final String accessToken) {
super(accessToken);
}
/**
* The search query setter.
*
* @param q Required. The search query's keywords (and optional field filters and operators).
* @return A {@link SearchAlbumsRequest.Builder}.
* @see Spotify: Search Query Options
*/
public Builder q(final String q) {
assert (q != null);
assert (!q.equals(""));
return setQueryParameter("q", q);
}
/**
* The market country code setter.
*
* @param market Optional. An ISO 3166-1 alpha-2 country code. If a country code is given, only artists,
* albums, and tracks with content playable in that market will be returned. (Playlist
* results are not affected by the market parameter.)
* @return A {@link SearchAlbumsRequest.Builder}.
* @see Wikipedia: ISO 3166-1 alpha-2 country codes
*/
public Builder market(final CountryCode market) {
assert (market != null);
return setQueryParameter("market", market);
}
/**
* The limit setter.
*
* @param limit Optional. The maximum number of results to return. Default: 20. Minimum: 1. Maximum: 50.
* @return A {@link SearchAlbumsRequest.Builder}.
*/
public Builder limit(final Integer limit) {
assert (limit != null);
assert (1 <= limit && limit <= 50);
return setQueryParameter("limit", limit);
}
/**
* The offset setter.
*
* @param offset Optional. The index of the first result to return. Default: 0 (i.e., the first result). Maximum
* offset: 100.000. Use with {@link #limit(Integer)} to get the next page of search results.
* @return A {@link SearchAlbumsRequest.Builder}.
*/
public Builder offset(final Integer offset) {
assert (offset != null);
assert (0 <= offset && offset <= 100000);
return setQueryParameter("offset", offset);
}
/**
* The request build method.
*
* @return A {@link SearchAlbumsRequest.Builder}.
*/
@Override
public SearchAlbumsRequest build() {
setPath("/v1/search");
setQueryParameter("type", "album");
return new SearchAlbumsRequest(this);
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy