com.jaeksoft.searchlib.util.video.YouTube Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of opensearchserver Show documentation
Show all versions of opensearchserver Show documentation
OpenSearchServer is a powerful, enterprise-class, search engine program. Using the web user interface, the crawlers (web, file, database, ...) and the REST/RESTFul API you will be able to integrate quickly and easily advanced full-text search capabilities in your application. OpenSearchServer runs on Windows and Linux/Unix/BSD.
The newest version!
/**
* License Agreement for OpenSearchServer
*
* Copyright (C) 2012-2016 Emmanuel Keller / Jaeksoft
*
* http://www.open-search-server.com
*
* This file is part of OpenSearchServer.
*
* OpenSearchServer 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.
*
* OpenSearchServer 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 OpenSearchServer.
* If not, see .
**/
package com.jaeksoft.searchlib.util.video;
import com.jaeksoft.searchlib.Logging;
import com.jaeksoft.searchlib.SearchLibException;
import com.jaeksoft.searchlib.crawler.web.spider.DownloadItem;
import com.jaeksoft.searchlib.crawler.web.spider.HttpDownloader;
import com.jaeksoft.searchlib.util.IOUtils;
import com.jaeksoft.searchlib.util.LinkUtils;
import org.apache.http.NameValuePair;
import org.apache.http.client.utils.URLEncodedUtils;
import org.json.JSONException;
import java.io.IOException;
import java.io.InputStream;
import java.net.MalformedURLException;
import java.net.URI;
import java.net.URISyntaxException;
import java.net.URL;
import java.util.List;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
public class YouTube {
private final static String API_URL = "http://gdata.youtube.com/feeds/api/videos/";
private final static String THUMBNAIL = "http://img.youtube.com/vi/";
public static YouTubeItem getInfo(URL url, HttpDownloader httpDownloader)
throws MalformedURLException, IOException, URISyntaxException, JSONException, IllegalStateException,
SearchLibException {
String videoId = getVideoId(url);
if (videoId == null)
throw new IOException("No video ID found: " + url);
YouTubeItem youtubeItem = YouTubeItemCache.getItem(videoId);
if (youtubeItem != null) {
if (Logging.isDebug)
Logging.debug("YouTube cache");
return youtubeItem;
}
String videoApiURL = API_URL + videoId + "?alt=json";
String thumbnail = THUMBNAIL + videoId + "/default.jpg";
DownloadItem downloadItem = httpDownloader.get(new URI(videoApiURL), null);
if (downloadItem.getStatusCode() != 200)
throw new IOException("Wrong HTTP code for " + url.toString() + " (" + downloadItem.getStatusCode() + ")");
InputStream inputStream = null;
try {
inputStream = downloadItem.getContentInputStream();
if (inputStream == null)
throw new IOException("No respond returned from YouTube API: " + videoApiURL);
youtubeItem = new YouTubeItem(inputStream, videoId, thumbnail);
YouTubeItemCache.addItem(videoId, youtubeItem);
return youtubeItem;
} finally {
IOUtils.close(inputStream);
}
}
private final static Pattern[] idPatterns = { Pattern.compile("/embed/([^/]*)"),
Pattern.compile("/v/([a-zA-Z0-9]*)[&|?]?.*") };
/*
* This method is to extract the Video id from youtube urls like
* http://www.youtube.com/watch?v=asdoss-1
* http://www.youtube.com/v/Ahg6qcgoay4
*/
private static String getVideoId(URL url) throws URISyntaxException {
URI uri = url.toURI();
// Checking v=
List pairs = URLEncodedUtils.parse(uri, "UTF-8");
for (NameValuePair pair : pairs)
if ("v".equals(pair.getName()))
return pair.getValue();
// Checking on path
String path = uri.getPath();
for (Pattern pattern : idPatterns) {
synchronized (pattern) {
Matcher urlMatcher = pattern.matcher(path);
if (urlMatcher.matches())
return urlMatcher.group(1);
}
}
return null;
}
public final static void main(String[] args)
throws MalformedURLException, IOException, URISyntaxException, JSONException, IllegalStateException,
SearchLibException {
HttpDownloader downloader = new HttpDownloader("OpenSearchServer", true, null, 600);
String[] urls = { "http://www.youtube.com/watch?h=test&v=O04CHuJaPWc",
"http://www.youtube.com/v/Ig1WxMI9bxQ?hl=fr" };
for (String u : urls) {
URL url = LinkUtils.newEncodedURL(u);
System.out.println(getInfo(url, downloader).toJson(url));
}
downloader.release();
}
}