se.michaelthelin.spotify.requests.data.follow.UnfollowArtistsOrUsersRequest Maven / Gradle / Ivy
Show all versions of spotify-web-api-java Show documentation
package se.michaelthelin.spotify.requests.data.follow;
import com.fasterxml.jackson.databind.annotation.JsonDeserialize;
import com.google.gson.JsonArray;
import org.apache.hc.core5.http.ContentType;
import org.apache.hc.core5.http.ParseException;
import se.michaelthelin.spotify.enums.ModelObjectType;
import se.michaelthelin.spotify.exceptions.SpotifyWebApiException;
import se.michaelthelin.spotify.requests.data.AbstractDataRequest;
import java.io.IOException;
/**
* Remove the current user as a follower of one or more artists or other Spotify users.
*/
@JsonDeserialize(builder = UnfollowArtistsOrUsersRequest.Builder.class)
public class UnfollowArtistsOrUsersRequest extends AbstractDataRequest {
/**
* The private {@link UnfollowArtistsOrUsersRequest} constructor.
*
* @param builder A {@link UnfollowArtistsOrUsersRequest.Builder}.
*/
private UnfollowArtistsOrUsersRequest(final Builder builder) {
super(builder);
}
/**
* Unfollow an artist or user.
*
* @return A string. Note: This endpoint doesn't return something in its response body.
* @throws IOException In case of networking issues.
* @throws SpotifyWebApiException The Web API returned an error further specified in this exception's root cause.
*/
public String execute() throws
IOException,
SpotifyWebApiException,
ParseException {
return deleteJson();
}
/**
* Builder class for building an {@link UnfollowArtistsOrUsersRequest}.
*/
public static final class Builder extends AbstractDataRequest.Builder {
/**
* Create a new {@link UnfollowArtistsOrUsersRequest.Builder} instance.
*
* Modifying the list of artists or users the current user follows requires authorization of the
* {@code user-follow-modify} scope.
*
* @param accessToken Required. A valid access token from the Spotify Accounts service.
* @see Spotify: Using Scopes
*/
public Builder(final String accessToken) {
super(accessToken);
}
/**
* The ID type setter.
*
* @param type Required. The ID type: either {@code artist} or {@code user}.
* @return An {@link UnfollowArtistsOrUsersRequest.Builder}.
*/
public Builder type(final ModelObjectType type) {
assert (type != null);
assert (type.getType().equals("artist") || type.getType().equals("user"));
return setQueryParameter("type", type);
}
/**
* The artist or user IDs setter.
*
* @param ids Optional. A comma-separated list of the artist or the user Spotify IDs. A maximum of 50 IDs can be
* sent in one request.
* @return An {@link UnfollowArtistsOrUsersRequest.Builder}.
* @see Spotify: URIs & IDs
*/
public Builder ids(final String ids) {
assert (ids != null);
assert (ids.split(",").length <= 50);
return setQueryParameter("ids", ids);
}
/**
* The artist or user IDs setter.
*
* Note: If the ids have already been set with {@link #ids(String)}, any ids added here will be ignored.
* @param ids Optional. A JSON array of the artist or the user Spotify IDs. A maximum of 50 IDs can be
* sent in one request.
* @return An {@link UnfollowArtistsOrUsersRequest.Builder}.
* @see Spotify: URIs & IDs
*/
public Builder ids(final JsonArray ids) {
assert (ids != null);
assert (!ids.isJsonNull());
assert (ids.size() <= 50);
return setBodyParameter("ids", ids);
}
/**
* The request build method.
*
* @return A custom {@link UnfollowArtistsOrUsersRequest}.
*/
@Override
public UnfollowArtistsOrUsersRequest build() {
setContentType(ContentType.APPLICATION_JSON);
setPath("/v1/me/following");
return new UnfollowArtistsOrUsersRequest(this);
}
@Override
protected Builder self() {
return this;
}
}
}