se.michaelthelin.spotify.requests.data.follow.UnfollowPlaylistRequest 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 org.apache.hc.core5.http.ParseException;
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 a playlist.
*/
@JsonDeserialize(builder = UnfollowPlaylistRequest.Builder.class)
public class UnfollowPlaylistRequest extends AbstractDataRequest {
/**
* The private {@link UnfollowPlaylistRequest} constructor.
*
* @param builder A {@link UnfollowPlaylistRequest.Builder}.
*/
private UnfollowPlaylistRequest(final Builder builder) {
super(builder);
}
/**
* Unfollow a playlist.
*
* @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 UnfollowPlaylistRequest}.
*/
public static final class Builder extends AbstractDataRequest.Builder {
/**
* Create a new {@link UnfollowPlaylistRequest.Builder} instance.
*
* Unfollowing a publicly followed playlist for a user requires authorization of the {@code playlist-modify-public}
* scope; unfollowing a privately followed playlist requires the {@code playlist-modify-private} 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 playlist ID setter.
*
* @param playlist_id The Spotify ID of the playlist that is to be no longer followed.
* @return An {@link UnfollowPlaylistRequest.Builder}.
* @see Spotify: URIs & IDs
*/
public Builder playlist_id(final String playlist_id) {
assert (playlist_id != null);
assert (!playlist_id.equals(""));
return setPathParameter("playlist_id", playlist_id);
}
/**
* The request build method.
*
* @return A custom {@link UnfollowPlaylistRequest}.
*/
@Override
public UnfollowPlaylistRequest build() {
setPath("/v1/playlists/{playlist_id}/followers");
return new UnfollowPlaylistRequest(this);
}
@Override
protected Builder self() {
return this;
}
}
}