All Downloads are FREE. Search and download functionalities are using the official Maven repository.

se.michaelthelin.spotify.requests.data.library.RemoveAlbumsForCurrentUserRequest Maven / Gradle / Ivy

There is a newer version: 9.0.0-RC1
Show newest version
package se.michaelthelin.spotify.requests.data.library;

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.exceptions.SpotifyWebApiException;
import se.michaelthelin.spotify.requests.data.AbstractDataRequest;

import java.io.IOException;

/**
 * Remove one or more albums from the current user’s "Your Music" library.
 */
@JsonDeserialize(builder = RemoveAlbumsForCurrentUserRequest.Builder.class)
public class RemoveAlbumsForCurrentUserRequest extends AbstractDataRequest {

  /**
   * The private {@link RemoveAlbumsForCurrentUserRequest} constructor.
   *
   * @param builder A {@link RemoveAlbumsForCurrentUserRequest.Builder}.
   */
  private RemoveAlbumsForCurrentUserRequest(final Builder builder) {
    super(builder);
  }

  /**
   * Remove one or more albums from the current user’s ‘Your Music’ library.
   *
   * @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 a {@link RemoveAlbumsForCurrentUserRequest}.
   */
  public static final class Builder extends AbstractDataRequest.Builder {

    /**
     * Create a new {@link RemoveAlbumsForCurrentUserRequest.Builder} instance.
     * 

* Modification of the current user's "Your Music" collection requires authorization of the * {@code user-library-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 album IDs setter. * * @param ids Optional. A comma-separated list of the Spotify IDs. Maximum: 50 IDs. * @return A {@link RemoveAlbumsForCurrentUserRequest.Builder}. * @see Spotify: URIs & IDs */ public Builder ids(final String ids) { assert (ids != null); assert (ids.split(",").length <= 50); return setQueryParameter("ids", ids); } /** * The album 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 Spotify IDs. Maximum: 50 IDs. * @return A {@link RemoveAlbumsForCurrentUserRequest.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 RemoveAlbumsForCurrentUserRequest.Builder}. */ @Override public RemoveAlbumsForCurrentUserRequest build() { setContentType(ContentType.APPLICATION_JSON); setPath("/v1/me/albums"); return new RemoveAlbumsForCurrentUserRequest(this); } @Override protected Builder self() { return this; } } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy