NewPipeExtractor/extractor/src/main/java/org/schabi/newpipe/extractor/services/soundcloud/SoundcloudChannelExtractor....

137 lines
4.4 KiB
Java
Raw Normal View History

package org.schabi.newpipe.extractor.services.soundcloud;
import com.grack.nanojson.JsonArray;
import com.grack.nanojson.JsonObject;
import com.grack.nanojson.JsonParser;
import com.grack.nanojson.JsonParserException;
import org.schabi.newpipe.extractor.Downloader;
2017-08-06 22:20:15 +02:00
import org.schabi.newpipe.extractor.StreamingService;
2017-08-11 03:23:09 +02:00
import org.schabi.newpipe.extractor.channel.ChannelExtractor;
import org.schabi.newpipe.extractor.exceptions.ExtractionException;
import org.schabi.newpipe.extractor.exceptions.ParsingException;
2018-03-01 01:02:43 +01:00
import org.schabi.newpipe.extractor.stream.StreamInfoItem;
2018-02-24 22:20:50 +01:00
import org.schabi.newpipe.extractor.stream.StreamInfoItemsCollector;
import javax.annotation.Nonnull;
2017-08-06 22:20:15 +02:00
import java.io.IOException;
import static org.schabi.newpipe.extractor.utils.Utils.replaceHttpWithHttps;
@SuppressWarnings("WeakerAccess")
2017-08-11 03:23:09 +02:00
public class SoundcloudChannelExtractor extends ChannelExtractor {
2017-08-07 18:12:51 +02:00
private String userId;
private JsonObject user;
2018-02-26 15:55:27 +01:00
private StreamInfoItemsCollector streamInfoItemsCollector = null;
private String nextPageUrl = null;
2018-02-26 16:19:58 +01:00
public SoundcloudChannelExtractor(StreamingService service, String url) {
2018-02-26 15:55:27 +01:00
super(service, url);
2017-08-06 22:20:15 +02:00
}
2017-08-06 22:20:15 +02:00
@Override
2017-11-28 13:37:01 +01:00
public void onFetchPage(@Nonnull Downloader downloader) throws IOException, ExtractionException {
2017-08-07 18:12:51 +02:00
userId = getUrlIdHandler().getId(getOriginalUrl());
String apiUrl = "https://api-v2.soundcloud.com/users/" + userId +
2017-08-06 22:20:15 +02:00
"?client_id=" + SoundcloudParsingHelper.clientId();
2017-11-28 13:37:01 +01:00
String response = downloader.download(apiUrl);
try {
user = JsonParser.object().from(response);
} catch (JsonParserException e) {
throw new ParsingException("Could not parse json response", e);
}
}
@Nonnull
2017-08-06 22:20:15 +02:00
@Override
public String getCleanUrl() {
return user.isString("permalink_url") ? replaceHttpWithHttps(user.getString("permalink_url")) : getOriginalUrl();
2017-08-06 22:20:15 +02:00
}
@Nonnull
@Override
2017-08-11 03:23:09 +02:00
public String getId() {
2017-08-07 18:12:51 +02:00
return userId;
}
@Nonnull
@Override
2017-08-11 03:23:09 +02:00
public String getName() {
2017-08-07 18:12:51 +02:00
return user.getString("username");
}
@Override
public String getAvatarUrl() {
return user.getString("avatar_url");
}
@Override
2017-09-16 10:19:07 +02:00
public String getBannerUrl() {
return user.getObject("visuals", new JsonObject())
.getArray("visuals", new JsonArray())
.getObject(0, new JsonObject())
.getString("visual_url");
}
2017-08-11 03:23:09 +02:00
@Override
2017-09-16 10:19:07 +02:00
public String getFeedUrl() {
2017-08-11 03:23:09 +02:00
return null;
}
@Override
public long getSubscriberCount() {
return user.getNumber("followers_count", 0).longValue();
}
@Override
2018-02-26 15:55:27 +01:00
public String getDescription() {
return user.getString("description", "");
}
2017-11-25 02:03:30 +01:00
@Nonnull
@Override
public InfoItemsPage<StreamInfoItem> getInitialPage() throws ExtractionException {
2018-02-26 15:55:27 +01:00
if(streamInfoItemsCollector == null) {
computeNextPageAndGetStreams();
}
return new InfoItemsPage<>(streamInfoItemsCollector, getNextPageUrl());
2018-02-26 15:55:27 +01:00
}
2018-02-26 15:55:27 +01:00
@Override
public String getNextPageUrl() throws ExtractionException {
if(nextPageUrl == null) {
computeNextPageAndGetStreams();
}
return nextPageUrl;
}
private void computeNextPageAndGetStreams() throws ExtractionException {
try {
streamInfoItemsCollector = new StreamInfoItemsCollector(getServiceId());
2018-02-26 15:55:27 +01:00
String apiUrl = "https://api-v2.soundcloud.com/users/" + getId() + "/tracks"
+ "?client_id=" + SoundcloudParsingHelper.clientId()
+ "&limit=20"
+ "&linked_partitioning=1";
nextPageUrl = SoundcloudParsingHelper.getStreamsFromApiMinItems(15, streamInfoItemsCollector, apiUrl);
} catch (Exception e) {
throw new ExtractionException("Could not get next page", e);
}
}
2017-08-06 22:20:15 +02:00
@Override
public InfoItemsPage<StreamInfoItem> getPage(final String pageUrl) throws IOException, ExtractionException {
2018-03-01 01:02:43 +01:00
if (pageUrl == null || pageUrl.isEmpty()) {
throw new ExtractionException(new IllegalArgumentException("Page url is empty or null"));
2017-08-06 22:20:15 +02:00
}
2018-02-24 22:20:50 +01:00
StreamInfoItemsCollector collector = new StreamInfoItemsCollector(getServiceId());
2018-02-26 15:55:27 +01:00
String nextPageUrl = SoundcloudParsingHelper.getStreamsFromApiMinItems(15, collector, pageUrl);
2017-08-06 22:20:15 +02:00
return new InfoItemsPage<>(collector, nextPageUrl);
2017-08-06 22:20:15 +02:00
}
}