NewPipeExtractor/extractor/src/main/java/org/schabi/newpipe/extractor/services/youtube/YoutubeService.java

112 lines
3.7 KiB
Java
Raw Normal View History

2017-03-01 18:47:52 +01:00
package org.schabi.newpipe.extractor.services.youtube;
import org.schabi.newpipe.extractor.StreamingService;
import org.schabi.newpipe.extractor.SuggestionExtractor;
2017-03-01 18:47:52 +01:00
import org.schabi.newpipe.extractor.UrlIdHandler;
2017-08-11 20:21:49 +02:00
import org.schabi.newpipe.extractor.channel.ChannelExtractor;
2017-03-01 18:47:52 +01:00
import org.schabi.newpipe.extractor.exceptions.ExtractionException;
import org.schabi.newpipe.extractor.kiosk.KioskExtractor;
2017-08-12 17:29:28 +02:00
import org.schabi.newpipe.extractor.kiosk.KioskList;
import org.schabi.newpipe.extractor.playlist.PlaylistExtractor;
2017-03-01 18:47:52 +01:00
import org.schabi.newpipe.extractor.search.SearchEngine;
import org.schabi.newpipe.extractor.stream.StreamExtractor;
import org.schabi.newpipe.extractor.subscription.SubscriptionExtractor;
2017-03-01 18:47:52 +01:00
import static java.util.Arrays.asList;
import static org.schabi.newpipe.extractor.StreamingService.ServiceInfo.MediaCapability.*;
2017-03-01 18:47:52 +01:00
/*
2017-03-01 18:47:52 +01:00
* Created by Christian Schabesberger on 23.08.15.
*
* Copyright (C) Christian Schabesberger 2015 <chris.schabesberger@mailbox.org>
* YoutubeService.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 YoutubeService extends StreamingService {
public YoutubeService(int id) {
super(id, "YouTube", asList(AUDIO, VIDEO, LIVE));
2017-03-01 18:47:52 +01:00
}
@Override
2017-08-06 22:20:15 +02:00
public SearchEngine getSearchEngine() {
return new YoutubeSearchEngine(getServiceId());
2017-03-01 18:47:52 +01:00
}
@Override
2017-08-06 22:20:15 +02:00
public UrlIdHandler getStreamUrlIdHandler() {
2017-03-01 18:47:52 +01:00
return YoutubeStreamUrlIdHandler.getInstance();
}
@Override
2017-08-11 03:23:09 +02:00
public UrlIdHandler getChannelUrlIdHandler() {
return YoutubeChannelUrlIdHandler.getInstance();
2017-03-01 18:47:52 +01:00
}
@Override
2017-08-06 22:20:15 +02:00
public UrlIdHandler getPlaylistUrlIdHandler() {
return YoutubePlaylistUrlIdHandler.getInstance();
}
2017-08-06 22:20:15 +02:00
@Override
2018-02-26 16:19:58 +01:00
public StreamExtractor getStreamExtractor(String url) {
2017-08-06 22:20:15 +02:00
return new YoutubeStreamExtractor(this, url);
}
2017-03-01 18:47:52 +01:00
@Override
2018-02-26 16:19:58 +01:00
public ChannelExtractor getChannelExtractor(String url) {
2018-02-26 15:55:27 +01:00
return new YoutubeChannelExtractor(this, url);
2017-03-01 18:47:52 +01:00
}
@Override
2018-02-26 16:19:58 +01:00
public PlaylistExtractor getPlaylistExtractor(String url) {
2018-02-26 15:55:27 +01:00
return new YoutubePlaylistExtractor(this, url);
}
2017-03-01 18:47:52 +01:00
@Override
2017-08-06 22:20:15 +02:00
public SuggestionExtractor getSuggestionExtractor() {
2017-03-01 18:47:52 +01:00
return new YoutubeSuggestionExtractor(getServiceId());
}
2017-08-12 17:29:28 +02:00
@Override
public KioskList getKioskList() throws ExtractionException {
2017-08-12 17:29:28 +02:00
KioskList list = new KioskList(getServiceId());
// add kiosks here e.g.:
2017-08-12 21:10:21 +02:00
try {
list.addKioskEntry(new KioskList.KioskExtractorFactory() {
@Override
2018-02-26 15:55:27 +01:00
public KioskExtractor createNewKiosk(StreamingService streamingService, String url, String id)
throws ExtractionException {
return new YoutubeTrendingExtractor(YoutubeService.this, url, id);
}
}, new YoutubeTrendingUrlIdHandler(), "Trending");
2017-09-23 15:59:00 +02:00
list.setDefaultKiosk("Trending");
2017-08-12 21:10:21 +02:00
} catch (Exception e) {
throw new ExtractionException(e);
}
2017-08-12 17:29:28 +02:00
return list;
}
@Override
public SubscriptionExtractor getSubscriptionExtractor() {
return new YoutubeSubscriptionExtractor(this);
}
2017-03-01 18:47:52 +01:00
}