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

se.michaelthelin.spotify.requests.data.library.SaveEpisodesForCurrentUserRequest 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;

/**
 * Save one or more episodes to the current user's library.
 */
@JsonDeserialize(builder = SaveEpisodesForCurrentUserRequest.Builder.class)
public class SaveEpisodesForCurrentUserRequest extends AbstractDataRequest {

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

  /**
   * Save one or more episodes.
   *
   * @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.
   */
  @Override
  public String execute() throws
    IOException,
    SpotifyWebApiException,
    ParseException {
    return putJson();
  }

  /**
   * Builder class for building a {@link SaveEpisodesForCurrentUserRequest}.
   */
  public static final class Builder extends AbstractDataRequest.Builder {

    /**
     * Create a new {@link SaveEpisodesForCurrentUserRequest.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: Scopes */ public Builder(String accessToken) { super(accessToken); } /** * The episode IDs setter. * * @param ids Optional. A comma-separated list of Spotify IDs for the episodes to be added to the user’s library. * @return A {@link SaveEpisodesForCurrentUserRequest.Builder}. * @see Spotify: URIs & IDs */ public SaveEpisodesForCurrentUserRequest.Builder ids(final String ids) { assert (ids != null); assert (ids.split(",").length <= 50); return setQueryParameter("ids", ids); } /** * The episode 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 Spotify IDs for the episodes to be added to the user’s library. * @return A {@link SaveEpisodesForCurrentUserRequest.Builder}. * @see Spotify: URIs & IDs */ public SaveEpisodesForCurrentUserRequest.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 SaveEpisodesForCurrentUserRequest}. */ @Override public SaveEpisodesForCurrentUserRequest build() { setContentType(ContentType.APPLICATION_JSON); setPath("/v1/me/episodes"); return new SaveEpisodesForCurrentUserRequest(this); } @Override protected SaveEpisodesForCurrentUserRequest.Builder self() { return this; } } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy