Skip to content

Commit

Permalink
Revert some changes
Browse files Browse the repository at this point in the history
  • Loading branch information
mauriciocolli committed Apr 21, 2017
1 parent afef926 commit 5907c35
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 15 deletions.
25 changes: 15 additions & 10 deletions services/youtube/YoutubeChannelExtractor.java
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
import org.schabi.newpipe.extractor.stream_info.StreamInfoItemCollector;
import org.schabi.newpipe.extractor.stream_info.StreamInfoItemExtractor;


import java.io.IOException;

/**
Expand Down Expand Up @@ -45,20 +46,19 @@ public class YoutubeChannelExtractor extends ChannelExtractor {
private static final String TAG = YoutubeChannelExtractor.class.toString();

// private CSSOMParser cssParser = new CSSOMParser(new SACParserCSS3());
private static final String CHANNEL_FEED_BASE = "https://www.youtube.com/feeds/videos.xml?channel_id=";

private Document doc = null;

private boolean isAjaxPage = false;
private String userUrl = "";
private String channelName = "";
private String avatarUrl = "";
private String bannerUrl = "";
private String feedUrl = "";
private long subscriberCount = -1;
private static String userUrl = "";
private static String channelName = "";
private static String avatarUrl = "";
private static String bannerUrl = "";
private static String feedUrl = "";
private static long subscriberCount = -1;
// the fist page is html all other pages are ajax. Every new page can be requested by sending
// this request url.
private String nextPageUrl = "";
private static String nextPageUrl = "";

public YoutubeChannelExtractor(UrlIdHandler urlIdHandler, String url, int page, int serviceId)
throws ExtractionException, IOException {
Expand Down Expand Up @@ -318,8 +318,13 @@ public long getSubscriberCount() throws ParsingException {
@Override
public String getFeedUrl() throws ParsingException {
try {
String channelId = doc.getElementsByClass("yt-uix-subscription-button").first().attr("data-channel-external-id");
feedUrl = CHANNEL_FEED_BASE + channelId;
if(userUrl.contains("channel")) {
//channels don't have feeds in youtube, only user can provide such
return "";
}
if(!isAjaxPage) {
feedUrl = doc.select("link[title=\"RSS\"]").first().attr("abs:href");
}
return feedUrl;
} catch(Exception e) {
throw new ParsingException("Could not get feed url", e);
Expand Down
10 changes: 5 additions & 5 deletions services/youtube/YoutubePlayListExtractor.java
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,11 @@ public class YoutubePlayListExtractor extends PlayListExtractor {
private Document doc = null;

private boolean isAjaxPage = false;
private String name = "";
private String feedUrl = "";
private String avatarUrl = "";
private String bannerUrl = "";
private String nextPageUrl = "";
private static String name = "";
private static String feedUrl = "";
private static String avatarUrl = "";
private static String bannerUrl = "";
private static String nextPageUrl = "";

public YoutubePlayListExtractor(UrlIdHandler urlIdHandler,
String url, int page, int serviceId) throws IOException, ExtractionException {
Expand Down

0 comments on commit 5907c35

Please sign in to comment.