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

132 lines
4.3 KiB
Java
Raw Normal View History

package org.schabi.newpipe.extractor.services.soundcloud.extractors;
import com.grack.nanojson.JsonObject;
import com.grack.nanojson.JsonParser;
import com.grack.nanojson.JsonParserException;
2020-04-15 14:09:46 +02:00
import org.schabi.newpipe.extractor.Page;
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.downloader.Downloader;
import org.schabi.newpipe.extractor.exceptions.ExtractionException;
import org.schabi.newpipe.extractor.exceptions.ParsingException;
import org.schabi.newpipe.extractor.linkhandler.ListLinkHandler;
import org.schabi.newpipe.extractor.services.soundcloud.SoundcloudParsingHelper;
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;
2017-08-06 22:20:15 +02:00
import java.io.IOException;
import javax.annotation.Nonnull;
2020-04-16 16:08:14 +02:00
import static org.schabi.newpipe.extractor.utils.JsonUtils.EMPTY_STRING;
import static org.schabi.newpipe.extractor.utils.Utils.isNullOrEmpty;
2020-04-16 16:08:14 +02:00
@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;
public SoundcloudChannelExtractor(StreamingService service, ListLinkHandler linkHandler) {
super(service, linkHandler);
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 {
userId = getLinkHandler().getId();
String apiUrl = "https://api-v2.soundcloud.com/users/" + userId +
2017-08-06 22:20:15 +02:00
"?client_id=" + SoundcloudParsingHelper.clientId();
String response = downloader.get(apiUrl, getExtractorLocalization()).responseBody();
try {
user = JsonParser.object().from(response);
} catch (JsonParserException e) {
throw new ParsingException("Could not parse json response", e);
}
}
@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() {
2020-04-16 16:08:14 +02:00
return user.getObject("visuals").getArray("visuals").getObject(0).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() {
2020-04-16 16:08:14 +02:00
return user.getString("description", EMPTY_STRING);
}
@Override
public String getParentChannelName() throws ParsingException {
return "";
}
@Override
public String getParentChannelUrl() throws ParsingException {
return "";
}
@Override
public String getParentChannelAvatarUrl() throws ParsingException {
return "";
}
2017-11-25 02:03:30 +01:00
@Nonnull
@Override
public InfoItemsPage<StreamInfoItem> getInitialPage() throws ExtractionException {
2018-02-26 15:55:27 +01:00
try {
StreamInfoItemsCollector 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";
String nextPageUrl = SoundcloudParsingHelper.getStreamsFromApiMinItems(15, streamInfoItemsCollector, apiUrl);
2020-04-15 14:09:46 +02:00
return new InfoItemsPage<>(streamInfoItemsCollector, new Page(nextPageUrl));
2018-02-26 15:55:27 +01:00
} catch (Exception e) {
throw new ExtractionException("Could not get next page", e);
}
}
2017-08-06 22:20:15 +02:00
@Override
2020-04-15 14:09:46 +02:00
public InfoItemsPage<StreamInfoItem> getPage(final Page page) throws IOException, ExtractionException {
if (page == null || isNullOrEmpty(page.getUrl())) {
throw new IllegalArgumentException("Page doesn't contain an URL");
}
2018-02-24 22:20:50 +01:00
StreamInfoItemsCollector collector = new StreamInfoItemsCollector(getServiceId());
2020-04-15 14:09:46 +02:00
String nextPageUrl = SoundcloudParsingHelper.getStreamsFromApiMinItems(15, collector, page.getUrl());
2017-08-06 22:20:15 +02:00
2020-04-15 14:09:46 +02:00
return new InfoItemsPage<>(collector, new Page(nextPageUrl));
2017-08-06 22:20:15 +02:00
}
}