package org.schabi.newpipe.extractor.channel; import org.schabi.newpipe.extractor.ListExtractor.InfoItemsPage; import org.schabi.newpipe.extractor.ListInfo; import org.schabi.newpipe.extractor.NewPipe; import org.schabi.newpipe.extractor.Page; import org.schabi.newpipe.extractor.StreamingService; import org.schabi.newpipe.extractor.exceptions.ExtractionException; import org.schabi.newpipe.extractor.linkhandler.ListLinkHandler; import org.schabi.newpipe.extractor.stream.StreamInfoItem; import org.schabi.newpipe.extractor.utils.ExtractorHelper; import java.io.IOException; /* * Created by Christian Schabesberger on 31.07.16. * * Copyright (C) Christian Schabesberger 2016 * ChannelInfo.java is part of NewPipe. * * NewPipe is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * NewPipe is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with NewPipe. If not, see . */ public class ChannelInfo extends ListInfo { public ChannelInfo(int serviceId, String id, String url, String originalUrl, String name, ListLinkHandler listLinkHandler) { super(serviceId, id, url, originalUrl, name, listLinkHandler.getContentFilters(), listLinkHandler.getSortFilter()); } public static ChannelInfo getInfo(String url) throws IOException, ExtractionException { return getInfo(NewPipe.getServiceByUrl(url), url); } public static ChannelInfo getInfo(StreamingService service, String url) throws IOException, ExtractionException { ChannelExtractor extractor = service.getChannelExtractor(url); extractor.fetchPage(); return getInfo(extractor); } public static InfoItemsPage getMoreItems(StreamingService service, String url, Page page) throws IOException, ExtractionException { return service.getChannelExtractor(url).getPage(page); } public static ChannelInfo getInfo(ChannelExtractor extractor) throws IOException, ExtractionException { final int serviceId = extractor.getServiceId(); final String id = extractor.getId(); final String url = extractor.getUrl(); final String originalUrl = extractor.getOriginalUrl(); final String name = extractor.getName(); final ChannelInfo info = new ChannelInfo(serviceId, id, url, originalUrl, name, extractor.getLinkHandler()); try { info.setAvatarUrl(extractor.getAvatarUrl()); } catch (Exception e) { info.addError(e); } try { info.setBannerUrl(extractor.getBannerUrl()); } catch (Exception e) { info.addError(e); } try { info.setFeedUrl(extractor.getFeedUrl()); } catch (Exception e) { info.addError(e); } final InfoItemsPage itemsPage = ExtractorHelper.getItemsPageOrLogError(info, extractor); info.setRelatedItems(itemsPage.getItems()); info.setNextPage(itemsPage.getNextPage()); try { info.setSubscriberCount(extractor.getSubscriberCount()); } catch (Exception e) { info.addError(e); } try { info.setDescription(extractor.getDescription()); } catch (Exception e) { info.addError(e); } try { info.setParentChannelName(extractor.getParentChannelName()); } catch (Exception e) { info.addError(e); } try { info.setParentChannelUrl(extractor.getParentChannelUrl()); } catch (Exception e) { info.addError(e); } try { info.setParentChannelAvatarUrl(extractor.getParentChannelAvatarUrl()); } catch (Exception e) { info.addError(e); } return info; } private String avatarUrl; private String parentChannelName; private String parentChannelUrl; private String parentChannelAvatarUrl; private String bannerUrl; private String feedUrl; private long subscriberCount = -1; private String description; private String[] donationLinks; public String getParentChannelName() { return parentChannelName; } public void setParentChannelName(String parentChannelName) { this.parentChannelName = parentChannelName; } public String getParentChannelUrl() { return parentChannelUrl; } public void setParentChannelUrl(String parentChannelUrl) { this.parentChannelUrl = parentChannelUrl; } public String getParentChannelAvatarUrl() { return parentChannelAvatarUrl; } public void setParentChannelAvatarUrl(String parentChannelAvatarUrl) { this.parentChannelAvatarUrl = parentChannelAvatarUrl; } public String getAvatarUrl() { return avatarUrl; } public void setAvatarUrl(String avatarUrl) { this.avatarUrl = avatarUrl; } public String getBannerUrl() { return bannerUrl; } public void setBannerUrl(String bannerUrl) { this.bannerUrl = bannerUrl; } public String getFeedUrl() { return feedUrl; } public void setFeedUrl(String feedUrl) { this.feedUrl = feedUrl; } public long getSubscriberCount() { return subscriberCount; } public void setSubscriberCount(long subscriberCount) { this.subscriberCount = subscriberCount; } public String getDescription() { return description; } public void setDescription(String description) { this.description = description; } public String[] getDonationLinks() { return donationLinks; } public void setDonationLinks(String[] donationLinks) { this.donationLinks = donationLinks; } }