86 lines
2.7 KiB
Java
86 lines
2.7 KiB
Java
package org.schabi.newpipe.extractor.channel;
|
|
|
|
import org.schabi.newpipe.extractor.InfoItem;
|
|
import org.schabi.newpipe.extractor.exceptions.ParsingException;
|
|
import org.schabi.newpipe.extractor.stream_info.StreamInfoItem;
|
|
import org.schabi.newpipe.extractor.stream_info.StreamInfoItemCollector;
|
|
|
|
import java.util.List;
|
|
import java.util.Vector;
|
|
|
|
/**
|
|
* Created by Christian Schabesberger on 31.07.16.
|
|
*
|
|
* Copyright (C) Christian Schabesberger 2016 <chris.schabesberger@mailbox.org>
|
|
* 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 <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
public class ChannelInfo {
|
|
public void addException(Exception e) {
|
|
errors.add(e);
|
|
}
|
|
|
|
public static ChannelInfo getInfo(ChannelExtractor extractor)
|
|
throws ParsingException {
|
|
ChannelInfo info = new ChannelInfo();
|
|
|
|
// importand data
|
|
info.service_id = extractor.getServiceId();
|
|
info.channel_name = extractor.getChannelName();
|
|
info.hasNextPage = extractor.hasNextPage();
|
|
|
|
try {
|
|
info.avatar_url = extractor.getAvatarUrl();
|
|
} catch (Exception e) {
|
|
info.errors.add(e);
|
|
}
|
|
try {
|
|
info.banner_url = extractor.getBannerUrl();
|
|
} catch (Exception e) {
|
|
info.errors.add(e);
|
|
}
|
|
try {
|
|
info.feed_url = extractor.getFeedUrl();
|
|
} catch(Exception e) {
|
|
info.errors.add(e);
|
|
}
|
|
try {
|
|
StreamInfoItemCollector c = extractor.getStreams();
|
|
info.related_streams = c.getItemList();
|
|
info.errors.addAll(c.getErrors());
|
|
} catch(Exception e) {
|
|
info.errors.add(e);
|
|
}
|
|
try {
|
|
info.subscriberCount = extractor.getSubscriberCount();
|
|
} catch (Exception e) {
|
|
info.errors.add(e);
|
|
}
|
|
|
|
return info;
|
|
}
|
|
|
|
public int service_id = -1;
|
|
public String channel_name = "";
|
|
public String avatar_url = "";
|
|
public String banner_url = "";
|
|
public String feed_url = "";
|
|
public List<InfoItem> related_streams = null;
|
|
public long subscriberCount = -1;
|
|
public boolean hasNextPage = false;
|
|
|
|
public List<Throwable> errors = new Vector<>();
|
|
}
|