NewPipeExtractor/extractor/src/main/java/org/schabi/newpipe/extractor/services/peertube/extractors/PeertubeSearchExtractor.java

109 lines
3.9 KiB
Java
Raw Normal View History

2018-10-11 21:10:22 +02:00
package org.schabi.newpipe.extractor.services.peertube.extractors;
import com.grack.nanojson.JsonArray;
import com.grack.nanojson.JsonObject;
import com.grack.nanojson.JsonParser;
2018-10-11 21:10:22 +02:00
import org.jsoup.helper.StringUtil;
import org.schabi.newpipe.extractor.InfoItem;
import org.schabi.newpipe.extractor.InfoItemExtractor;
import org.schabi.newpipe.extractor.InfoItemsCollector;
import org.schabi.newpipe.extractor.StreamingService;
2019-11-19 22:38:17 +01:00
import org.schabi.newpipe.extractor.downloader.Downloader;
import org.schabi.newpipe.extractor.downloader.Response;
2018-10-11 21:10:22 +02:00
import org.schabi.newpipe.extractor.exceptions.ExtractionException;
import org.schabi.newpipe.extractor.exceptions.ParsingException;
import org.schabi.newpipe.extractor.linkhandler.SearchQueryHandler;
import org.schabi.newpipe.extractor.search.InfoItemsSearchCollector;
import org.schabi.newpipe.extractor.search.SearchExtractor;
import org.schabi.newpipe.extractor.services.peertube.PeertubeParsingHelper;
2018-10-11 21:10:22 +02:00
import org.schabi.newpipe.extractor.utils.JsonUtils;
import org.schabi.newpipe.extractor.utils.Parser;
import org.schabi.newpipe.extractor.utils.Parser.RegexException;
import javax.annotation.Nonnull;
import java.io.IOException;
2018-10-11 21:10:22 +02:00
import static org.schabi.newpipe.extractor.services.peertube.PeertubeParsingHelper.*;
2018-10-11 21:10:22 +02:00
public class PeertubeSearchExtractor extends SearchExtractor {
2018-10-11 21:10:22 +02:00
private InfoItemsPage<InfoItem> initPage;
private long total;
2019-11-19 22:38:17 +01:00
public PeertubeSearchExtractor(StreamingService service, SearchQueryHandler linkHandler) {
super(service, linkHandler);
2018-10-11 21:10:22 +02:00
}
@Nonnull
2018-10-11 21:10:22 +02:00
@Override
public String getSearchSuggestion() throws ParsingException {
return "";
2018-10-11 21:10:22 +02:00
}
@Override
public boolean isCorrectedSearch() {
return false;
2018-10-11 21:10:22 +02:00
}
2018-10-11 21:10:22 +02:00
@Override
public InfoItemsPage<InfoItem> getInitialPage() throws IOException, ExtractionException {
super.fetchPage();
return initPage;
}
private InfoItemsCollector<InfoItem, InfoItemExtractor> collectStreamsFrom(JsonObject json) throws ParsingException {
final InfoItemsSearchCollector collector = new InfoItemsSearchCollector(getServiceId());
2018-10-11 21:10:22 +02:00
JsonArray contents;
try {
contents = (JsonArray) JsonUtils.getValue(json, "data");
} catch (Exception e) {
2018-10-11 21:10:22 +02:00
throw new ParsingException("unable to extract search info", e);
}
2019-11-22 19:35:49 +01:00
String baseUrl = getBaseUrl();
for (Object c : contents) {
if (c instanceof JsonObject) {
2018-10-11 21:10:22 +02:00
final JsonObject item = (JsonObject) c;
PeertubeStreamInfoItemExtractor extractor = new PeertubeStreamInfoItemExtractor(item, baseUrl);
2018-10-11 21:10:22 +02:00
collector.commit(extractor);
}
}
2018-10-11 21:10:22 +02:00
return collector;
2018-10-11 21:10:22 +02:00
}
@Override
public String getNextPageUrl() throws IOException, ExtractionException {
super.fetchPage();
return initPage.getNextPageUrl();
}
@Override
public InfoItemsPage<InfoItem> getPage(String pageUrl) throws IOException, ExtractionException {
2019-11-19 22:38:17 +01:00
Response response = getDownloader().get(pageUrl);
2018-10-11 21:10:22 +02:00
JsonObject json = null;
if (null != response && !StringUtil.isBlank(response.responseBody())) {
2018-10-11 21:10:22 +02:00
try {
2019-11-19 22:38:17 +01:00
json = JsonParser.object().from(response.responseBody());
2018-10-11 21:10:22 +02:00
} catch (Exception e) {
throw new ParsingException("Could not parse json data for search info", e);
}
}
if (json != null) {
total = JsonUtils.getNumber(json, "total").longValue();
return new InfoItemsPage<>(collectStreamsFrom(json), PeertubeParsingHelper.getNextPageUrl(pageUrl, total));
2018-10-11 21:10:22 +02:00
} else {
throw new ExtractionException("Unable to get peertube search info");
}
}
@Override
public void onFetchPage(Downloader downloader) throws IOException, ExtractionException {
initPage = getPage(getUrl() + "&" + START_KEY + "=0&" + COUNT_KEY + "=" + ITEMS_PER_PAGE);
2018-10-11 21:10:22 +02:00
}
2018-10-11 21:10:22 +02:00
}