2014-02-27 04:54:44 +01:00
|
|
|
package com.rarchives.ripme.ripper.rippers;
|
|
|
|
|
2014-04-13 01:53:49 +02:00
|
|
|
import java.io.File;
|
2014-02-27 04:54:44 +01:00
|
|
|
import java.io.IOException;
|
|
|
|
import java.net.MalformedURLException;
|
|
|
|
import java.net.URL;
|
2014-03-11 09:29:46 +01:00
|
|
|
import java.util.ArrayList;
|
|
|
|
import java.util.List;
|
2014-02-27 04:54:44 +01:00
|
|
|
import java.util.regex.Matcher;
|
|
|
|
import java.util.regex.Pattern;
|
|
|
|
|
2014-02-28 12:04:03 +01:00
|
|
|
import org.json.JSONArray;
|
|
|
|
import org.json.JSONException;
|
|
|
|
import org.json.JSONObject;
|
2014-02-27 04:54:44 +01:00
|
|
|
import org.jsoup.Jsoup;
|
|
|
|
import org.jsoup.nodes.Document;
|
|
|
|
import org.jsoup.nodes.Element;
|
2014-04-06 21:07:53 +02:00
|
|
|
import org.jsoup.select.Elements;
|
2014-02-27 04:54:44 +01:00
|
|
|
|
2014-04-20 07:41:11 +02:00
|
|
|
import com.rarchives.ripme.ripper.AlbumRipper;
|
2014-03-01 11:13:32 +01:00
|
|
|
import com.rarchives.ripme.ui.RipStatusMessage.STATUS;
|
2014-06-22 02:08:42 +02:00
|
|
|
import com.rarchives.ripme.utils.Http;
|
2014-04-13 01:53:49 +02:00
|
|
|
import com.rarchives.ripme.utils.Utils;
|
2014-02-27 04:54:44 +01:00
|
|
|
|
2014-04-20 07:41:11 +02:00
|
|
|
public class ImgurRipper extends AlbumRipper {
|
2014-02-27 04:54:44 +01:00
|
|
|
|
|
|
|
private static final String DOMAIN = "imgur.com",
|
|
|
|
HOST = "imgur";
|
2014-03-03 09:44:07 +01:00
|
|
|
|
2014-02-28 12:04:03 +01:00
|
|
|
private final int SLEEP_BETWEEN_ALBUMS;
|
2014-06-12 09:23:22 +02:00
|
|
|
|
|
|
|
private Document albumDoc;
|
2014-03-03 09:44:07 +01:00
|
|
|
|
2014-02-27 04:54:44 +01:00
|
|
|
static enum ALBUM_TYPE {
|
|
|
|
ALBUM,
|
|
|
|
USER,
|
|
|
|
USER_ALBUM,
|
2014-04-20 22:21:52 +02:00
|
|
|
USER_IMAGES,
|
2014-04-06 21:07:53 +02:00
|
|
|
SERIES_OF_IMAGES,
|
|
|
|
SUBREDDIT
|
2014-02-27 04:54:44 +01:00
|
|
|
};
|
|
|
|
private ALBUM_TYPE albumType;
|
|
|
|
|
|
|
|
public ImgurRipper(URL url) throws IOException {
|
|
|
|
super(url);
|
2014-02-28 12:04:03 +01:00
|
|
|
SLEEP_BETWEEN_ALBUMS = 1;
|
2014-02-27 04:54:44 +01:00
|
|
|
}
|
|
|
|
|
2014-05-01 05:13:44 +02:00
|
|
|
/**
|
|
|
|
* Imgur ripper does not return the same URL except when ripping
|
|
|
|
* many albums at once (USER). In this case, we want duplicates.
|
|
|
|
*/
|
|
|
|
@Override
|
|
|
|
public boolean allowDuplicates() {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2014-02-27 04:54:44 +01:00
|
|
|
public boolean canRip(URL url) {
|
|
|
|
if (!url.getHost().endsWith(DOMAIN)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
try {
|
|
|
|
getGID(url);
|
|
|
|
} catch (Exception e) {
|
|
|
|
// Can't get GID, can't rip it.
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
public URL sanitizeURL(URL url) throws MalformedURLException {
|
|
|
|
String u = url.toExternalForm();
|
|
|
|
if (u.indexOf('#') >= 0) {
|
|
|
|
u = u.substring(0, u.indexOf('#'));
|
|
|
|
}
|
2015-12-21 16:36:28 +01:00
|
|
|
u = u.replace("imgur.com/gallery/", "imgur.com/a/");
|
2014-03-03 09:44:07 +01:00
|
|
|
u = u.replace("https?://m\\.imgur\\.com", "http://imgur.com");
|
|
|
|
u = u.replace("https?://i\\.imgur\\.com", "http://imgur.com");
|
2014-02-27 04:54:44 +01:00
|
|
|
return new URL(u);
|
|
|
|
}
|
|
|
|
|
2014-06-12 09:23:22 +02:00
|
|
|
public String getAlbumTitle(URL url) throws MalformedURLException {
|
|
|
|
String gid = getGID(url);
|
|
|
|
if (this.albumType == ALBUM_TYPE.ALBUM) {
|
|
|
|
try {
|
|
|
|
// Attempt to use album title as GID
|
|
|
|
if (albumDoc == null) {
|
2014-06-22 02:08:42 +02:00
|
|
|
albumDoc = Http.url(url).get();
|
2014-06-12 09:23:22 +02:00
|
|
|
}
|
|
|
|
String title = albumDoc.title();
|
|
|
|
if (!title.contains(" - Imgur")
|
|
|
|
|| title.contains("'s albums")) {
|
|
|
|
throw new IOException("No title found");
|
|
|
|
}
|
|
|
|
title = title.replaceAll(" - Imgur.*", "");
|
|
|
|
return "imgur_" + gid + " (" + title + ")";
|
|
|
|
} catch (IOException e) {
|
|
|
|
// Fall back to default album naming convention
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return getHost() + "_" + gid;
|
|
|
|
}
|
|
|
|
|
2014-02-27 04:54:44 +01:00
|
|
|
@Override
|
|
|
|
public void rip() throws IOException {
|
|
|
|
switch (albumType) {
|
|
|
|
case ALBUM:
|
|
|
|
// Fall-through
|
|
|
|
case USER_ALBUM:
|
|
|
|
ripAlbum(this.url);
|
|
|
|
break;
|
|
|
|
case SERIES_OF_IMAGES:
|
2014-02-28 12:04:03 +01:00
|
|
|
ripAlbum(this.url);
|
2014-02-27 04:54:44 +01:00
|
|
|
break;
|
|
|
|
case USER:
|
2014-02-28 12:04:03 +01:00
|
|
|
ripUserAccount(url);
|
2014-02-27 04:54:44 +01:00
|
|
|
break;
|
2014-04-06 21:07:53 +02:00
|
|
|
case SUBREDDIT:
|
|
|
|
ripSubreddit(url);
|
|
|
|
break;
|
2014-04-20 22:21:52 +02:00
|
|
|
case USER_IMAGES:
|
|
|
|
ripUserImages(url);
|
|
|
|
break;
|
2014-02-27 04:54:44 +01:00
|
|
|
}
|
2014-03-02 03:08:16 +01:00
|
|
|
waitForThreads();
|
2014-02-27 04:54:44 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
private void ripAlbum(URL url) throws IOException {
|
2014-02-28 12:04:03 +01:00
|
|
|
ripAlbum(url, "");
|
|
|
|
}
|
|
|
|
|
|
|
|
private void ripAlbum(URL url, String subdirectory) throws IOException {
|
2014-02-27 04:54:44 +01:00
|
|
|
int index = 0;
|
2014-03-01 11:13:32 +01:00
|
|
|
this.sendUpdate(STATUS.LOADING_RESOURCE, url.toExternalForm());
|
2014-03-11 09:29:46 +01:00
|
|
|
index = 0;
|
2014-04-13 01:53:49 +02:00
|
|
|
ImgurAlbum album = getImgurAlbum(url);
|
|
|
|
for (ImgurImage imgurImage : album.images) {
|
2014-04-18 07:11:37 +02:00
|
|
|
stopCheck();
|
2014-04-13 01:53:49 +02:00
|
|
|
String saveAs = workingDir.getCanonicalPath();
|
|
|
|
if (!saveAs.endsWith(File.separator)) {
|
|
|
|
saveAs += File.separator;
|
|
|
|
}
|
|
|
|
if (subdirectory != null && !subdirectory.equals("")) {
|
|
|
|
saveAs += subdirectory;
|
|
|
|
}
|
|
|
|
if (!saveAs.endsWith(File.separator)) {
|
|
|
|
saveAs += File.separator;
|
|
|
|
}
|
2014-04-19 20:13:56 +02:00
|
|
|
File subdirFile = new File(saveAs);
|
|
|
|
if (!subdirFile.exists()) {
|
|
|
|
subdirFile.mkdirs();
|
|
|
|
}
|
2014-03-11 09:29:46 +01:00
|
|
|
index += 1;
|
2014-05-26 09:31:58 +02:00
|
|
|
if (Utils.getConfigBoolean("download.save_order", true)) {
|
|
|
|
saveAs += String.format("%03d_", index);
|
|
|
|
}
|
|
|
|
saveAs += imgurImage.getSaveAs();
|
2014-04-13 01:53:49 +02:00
|
|
|
addURLToDownload(imgurImage.url, new File(saveAs));
|
2014-03-11 09:29:46 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-12-21 23:47:07 +01:00
|
|
|
public static ImgurAlbum getImgurSeries(URL url) throws IOException {
|
2016-04-17 03:56:57 +02:00
|
|
|
Pattern p = Pattern.compile("^.*imgur\\.com/([a-zA-Z0-9,]*).*$");
|
|
|
|
Matcher m = p.matcher(url.toExternalForm());
|
|
|
|
ImgurAlbum album = new ImgurAlbum(url);
|
|
|
|
if (m.matches()) {
|
|
|
|
String[] imageIds = m.group(1).split(",");
|
|
|
|
for (String imageId : imageIds) {
|
|
|
|
// TODO: Fetch image with ID imageId
|
|
|
|
logger.debug("Fetching image info for ID " + imageId);;
|
|
|
|
try {
|
|
|
|
JSONObject json = Http.url("https://api.imgur.com/2/image/" + imageId + ".json").getJSON();
|
|
|
|
if (!json.has("image")) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
JSONObject image = json.getJSONObject("image");
|
|
|
|
if (!image.has("links")) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
JSONObject links = image.getJSONObject("links");
|
|
|
|
if (!links.has("original")) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
String original = links.getString("original");
|
|
|
|
ImgurImage theImage = new ImgurImage(new URL(original));
|
|
|
|
album.addImage(theImage);
|
|
|
|
} catch (Exception e) {
|
|
|
|
logger.error("Got exception while fetching imgur ID " + imageId, e);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return album;
|
2015-12-21 23:47:07 +01:00
|
|
|
}
|
|
|
|
|
2014-04-13 01:53:49 +02:00
|
|
|
public static ImgurAlbum getImgurAlbum(URL url) throws IOException {
|
2016-04-17 03:56:57 +02:00
|
|
|
String strUrl = url.toExternalForm();
|
|
|
|
if (!strUrl.contains(",")) {
|
|
|
|
strUrl += "/all";
|
|
|
|
}
|
|
|
|
logger.info(" Retrieving " + strUrl);
|
|
|
|
Document doc = Jsoup.connect(strUrl)
|
2014-03-09 08:59:36 +01:00
|
|
|
.userAgent(USER_AGENT)
|
2014-05-01 05:13:44 +02:00
|
|
|
.timeout(10 * 1000)
|
2014-04-29 15:17:49 +02:00
|
|
|
.maxBodySize(0)
|
2014-03-09 08:59:36 +01:00
|
|
|
.get();
|
2014-02-28 12:04:03 +01:00
|
|
|
|
|
|
|
// Try to use embedded JSON to retrieve images
|
2015-09-17 11:04:57 +02:00
|
|
|
Pattern p = Pattern.compile("^.*Imgur\\.Album\\.getInstance\\((.*?)\\);.*$", Pattern.DOTALL);
|
2014-02-28 12:04:03 +01:00
|
|
|
Matcher m = p.matcher(doc.body().html());
|
|
|
|
if (m.matches()) {
|
|
|
|
try {
|
|
|
|
JSONObject json = new JSONObject(m.group(1));
|
2014-04-13 01:53:49 +02:00
|
|
|
JSONObject jsonAlbum = json.getJSONObject("album");
|
|
|
|
ImgurAlbum imgurAlbum = new ImgurAlbum(url, jsonAlbum.getString("title_clean"));
|
2015-09-17 11:04:57 +02:00
|
|
|
JSONArray images = json.getJSONObject("images").getJSONArray("images");
|
2014-02-28 12:04:03 +01:00
|
|
|
int imagesLength = images.length();
|
|
|
|
for (int i = 0; i < imagesLength; i++) {
|
|
|
|
JSONObject image = images.getJSONObject(i);
|
2015-12-24 22:40:04 +01:00
|
|
|
String ext = image.getString("ext");
|
|
|
|
if (ext.equals(".gif") && Utils.getConfigBoolean("prefer.mp4", false)) {
|
2016-04-17 03:56:57 +02:00
|
|
|
ext = ".mp4";
|
2015-12-24 22:40:04 +01:00
|
|
|
}
|
2014-02-28 12:04:03 +01:00
|
|
|
URL imageURL = new URL(
|
|
|
|
// CDN url is provided elsewhere in the document
|
|
|
|
"http://i.imgur.com/"
|
|
|
|
+ image.get("hash")
|
2015-12-24 22:40:04 +01:00
|
|
|
+ ext);
|
2014-04-13 01:53:49 +02:00
|
|
|
ImgurImage imgurImage = new ImgurImage(imageURL,
|
|
|
|
image.getString("title"),
|
|
|
|
image.getString("description"));
|
|
|
|
imgurAlbum.addImage(imgurImage);
|
2014-02-28 12:04:03 +01:00
|
|
|
}
|
2014-04-13 01:53:49 +02:00
|
|
|
return imgurAlbum;
|
2014-02-28 12:04:03 +01:00
|
|
|
} catch (JSONException e) {
|
2016-04-17 03:56:57 +02:00
|
|
|
logger.debug("Error while parsing JSON at " + strUrl + ", continuing", e);
|
2014-02-28 12:04:03 +01:00
|
|
|
}
|
|
|
|
}
|
2015-09-17 11:04:57 +02:00
|
|
|
p = Pattern.compile("^.*widgetFactory.mergeConfig\\('gallery', (.*?)\\);.*$", Pattern.DOTALL);
|
2014-02-28 12:04:03 +01:00
|
|
|
m = p.matcher(doc.body().html());
|
|
|
|
if (m.matches()) {
|
|
|
|
try {
|
2014-04-13 01:53:49 +02:00
|
|
|
ImgurAlbum imgurAlbum = new ImgurAlbum(url);
|
2014-02-28 12:04:03 +01:00
|
|
|
JSONObject json = new JSONObject(m.group(1));
|
2015-09-17 11:04:57 +02:00
|
|
|
JSONArray images = json.getJSONObject("image")
|
|
|
|
.getJSONObject("album_images")
|
|
|
|
.getJSONArray("images");
|
2014-02-28 12:04:03 +01:00
|
|
|
int imagesLength = images.length();
|
|
|
|
for (int i = 0; i < imagesLength; i++) {
|
|
|
|
JSONObject image = images.getJSONObject(i);
|
2015-12-24 22:40:04 +01:00
|
|
|
String ext = image.getString("ext");
|
|
|
|
if (ext.equals(".gif") && Utils.getConfigBoolean("prefer.mp4", false)) {
|
2016-04-17 03:56:57 +02:00
|
|
|
ext = ".mp4";
|
2015-12-24 22:40:04 +01:00
|
|
|
}
|
2014-02-28 12:04:03 +01:00
|
|
|
URL imageURL = new URL(
|
2015-09-17 11:04:57 +02:00
|
|
|
"http://i.imgur.com/"
|
2014-04-13 01:53:49 +02:00
|
|
|
+ image.getString("hash")
|
2015-12-24 22:40:04 +01:00
|
|
|
+ ext);
|
2014-04-13 01:53:49 +02:00
|
|
|
ImgurImage imgurImage = new ImgurImage(imageURL);
|
2015-12-24 22:40:04 +01:00
|
|
|
imgurImage.extension = ext;
|
2014-04-13 01:53:49 +02:00
|
|
|
imgurAlbum.addImage(imgurImage);
|
2014-02-28 12:04:03 +01:00
|
|
|
}
|
2014-04-13 01:53:49 +02:00
|
|
|
return imgurAlbum;
|
2014-02-28 12:04:03 +01:00
|
|
|
} catch (JSONException e) {
|
|
|
|
logger.debug("Error while parsing JSON at " + url + ", continuing", e);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-03-07 08:41:49 +01:00
|
|
|
// TODO If album is empty, use this to check for cached images:
|
|
|
|
// http://i.rarchives.com/search.cgi?cache=http://imgur.com/a/albumID
|
|
|
|
// At the least, get the thumbnails.
|
2014-04-04 09:55:04 +02:00
|
|
|
|
|
|
|
logger.info("[!] Falling back to /noscript method");
|
|
|
|
|
|
|
|
String newUrl = url.toExternalForm() + "/noscript";
|
|
|
|
logger.info(" Retrieving " + newUrl);
|
|
|
|
doc = Jsoup.connect(newUrl)
|
|
|
|
.userAgent(USER_AGENT)
|
|
|
|
.get();
|
2014-02-28 12:04:03 +01:00
|
|
|
|
|
|
|
// Fall back to parsing HTML elements
|
|
|
|
// NOTE: This does not always get the highest-resolution images!
|
2014-04-13 01:53:49 +02:00
|
|
|
ImgurAlbum imgurAlbum = new ImgurAlbum(url);
|
2014-02-27 04:54:44 +01:00
|
|
|
for (Element thumb : doc.select("div.image")) {
|
|
|
|
String image;
|
|
|
|
if (thumb.select("a.zoom").size() > 0) {
|
|
|
|
// Clickably full-size
|
|
|
|
image = "http:" + thumb.select("a").attr("href");
|
|
|
|
} else if (thumb.select("img").size() > 0) {
|
|
|
|
image = "http:" + thumb.select("img").attr("src");
|
|
|
|
} else {
|
|
|
|
// Unable to find image in this div
|
2014-02-28 04:49:28 +01:00
|
|
|
logger.error("[!] Unable to find image in div: " + thumb.toString());
|
2014-02-27 04:54:44 +01:00
|
|
|
continue;
|
|
|
|
}
|
2015-12-24 22:40:04 +01:00
|
|
|
if (image.endsWith(".gif") && Utils.getConfigBoolean("prefer.mp4", false)) {
|
2016-04-17 03:56:57 +02:00
|
|
|
image = image.replace(".gif", ".mp4");
|
2015-12-24 22:40:04 +01:00
|
|
|
}
|
2014-04-13 01:53:49 +02:00
|
|
|
ImgurImage imgurImage = new ImgurImage(new URL(image));
|
|
|
|
imgurAlbum.addImage(imgurImage);
|
2014-02-28 12:04:03 +01:00
|
|
|
}
|
2014-04-13 01:53:49 +02:00
|
|
|
return imgurAlbum;
|
2014-02-28 12:04:03 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Rips all albums in an imgur user's account.
|
|
|
|
* @param url
|
|
|
|
* URL to imgur user account (http://username.imgur.com)
|
|
|
|
* @throws IOException
|
|
|
|
*/
|
|
|
|
private void ripUserAccount(URL url) throws IOException {
|
2014-06-20 13:09:36 +02:00
|
|
|
logger.info("Retrieving " + url);
|
|
|
|
sendUpdate(STATUS.LOADING_RESOURCE, url.toExternalForm());
|
2014-06-22 02:08:42 +02:00
|
|
|
Document doc = Http.url(url).get();
|
2014-02-28 12:04:03 +01:00
|
|
|
for (Element album : doc.select("div.cover a")) {
|
2014-04-18 07:11:37 +02:00
|
|
|
stopCheck();
|
2014-02-28 12:04:03 +01:00
|
|
|
if (!album.hasAttr("href")
|
|
|
|
|| !album.attr("href").contains("imgur.com/a/")) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
String albumID = album.attr("href").substring(album.attr("href").lastIndexOf('/') + 1);
|
|
|
|
URL albumURL = new URL("http:" + album.attr("href") + "/noscript");
|
|
|
|
try {
|
|
|
|
ripAlbum(albumURL, albumID);
|
|
|
|
Thread.sleep(SLEEP_BETWEEN_ALBUMS * 1000);
|
|
|
|
} catch (Exception e) {
|
|
|
|
logger.error("Error while ripping album: " + e.getMessage(), e);
|
|
|
|
continue;
|
|
|
|
}
|
2014-02-27 04:54:44 +01:00
|
|
|
}
|
|
|
|
}
|
2014-04-06 21:07:53 +02:00
|
|
|
|
2014-04-20 22:21:52 +02:00
|
|
|
private void ripUserImages(URL url) throws IOException {
|
|
|
|
int page = 0; int imagesFound = 0; int imagesTotal = 0;
|
|
|
|
String jsonUrl = url.toExternalForm().replace("/all", "/ajax/images");
|
|
|
|
if (jsonUrl.contains("#")) {
|
|
|
|
jsonUrl = jsonUrl.substring(0, jsonUrl.indexOf("#"));
|
|
|
|
}
|
|
|
|
|
|
|
|
while (true) {
|
|
|
|
try {
|
|
|
|
page++;
|
|
|
|
String jsonUrlWithParams = jsonUrl + "?sort=0&order=1&album=0&page=" + page + "&perPage=60";
|
2014-06-22 02:08:42 +02:00
|
|
|
JSONObject json = Http.url(jsonUrlWithParams).getJSON();
|
2014-04-20 22:21:52 +02:00
|
|
|
JSONObject jsonData = json.getJSONObject("data");
|
|
|
|
if (jsonData.has("count")) {
|
|
|
|
imagesTotal = jsonData.getInt("count");
|
|
|
|
}
|
|
|
|
JSONArray images = jsonData.getJSONArray("images");
|
|
|
|
for (int i = 0; i < images.length(); i++) {
|
|
|
|
imagesFound++;
|
|
|
|
JSONObject image = images.getJSONObject(i);
|
|
|
|
String imageUrl = "http://i.imgur.com/" + image.getString("hash") + image.getString("ext");
|
2014-05-26 09:31:58 +02:00
|
|
|
String prefix = "";
|
|
|
|
if (Utils.getConfigBoolean("download.save_order", true)) {
|
|
|
|
prefix = String.format("%03d_", imagesFound);
|
|
|
|
}
|
|
|
|
addURLToDownload(new URL(imageUrl), prefix);
|
2014-04-20 22:21:52 +02:00
|
|
|
}
|
|
|
|
if (imagesFound >= imagesTotal) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
Thread.sleep(1000);
|
|
|
|
} catch (Exception e) {
|
|
|
|
logger.error("Error while ripping user images: " + e.getMessage(), e);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-04-06 21:07:53 +02:00
|
|
|
private void ripSubreddit(URL url) throws IOException {
|
|
|
|
int page = 0;
|
|
|
|
while (true) {
|
2014-04-18 07:11:37 +02:00
|
|
|
stopCheck();
|
2014-04-06 21:07:53 +02:00
|
|
|
String pageURL = url.toExternalForm();
|
|
|
|
if (!pageURL.endsWith("/")) {
|
|
|
|
pageURL += "/";
|
|
|
|
}
|
|
|
|
pageURL += "page/" + page + "/miss?scrolled";
|
|
|
|
logger.info(" Retrieving " + pageURL);
|
2014-06-22 02:08:42 +02:00
|
|
|
Document doc = Http.url(pageURL).get();
|
2014-04-06 21:07:53 +02:00
|
|
|
Elements imgs = doc.select(".post img");
|
|
|
|
for (Element img : imgs) {
|
|
|
|
String image = img.attr("src");
|
|
|
|
if (image.startsWith("//")) {
|
|
|
|
image = "http:" + image;
|
|
|
|
}
|
|
|
|
if (image.contains("b.")) {
|
|
|
|
image = image.replace("b.", ".");
|
|
|
|
}
|
|
|
|
URL imageURL = new URL(image);
|
|
|
|
addURLToDownload(imageURL);
|
|
|
|
}
|
|
|
|
if (imgs.size() == 0) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
page++;
|
|
|
|
try {
|
|
|
|
Thread.sleep(1000);
|
|
|
|
} catch (InterruptedException e) {
|
|
|
|
logger.error("Interrupted while waiting to load next album: ", e);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2014-02-27 04:54:44 +01:00
|
|
|
|
|
|
|
@Override
|
|
|
|
public String getHost() {
|
|
|
|
return HOST;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public String getGID(URL url) throws MalformedURLException {
|
2015-12-21 23:47:07 +01:00
|
|
|
Pattern p = Pattern.compile("^https?://(www\\.|m\\.)?imgur\\.com/a/([a-zA-Z0-9]{5,8}).*$");
|
2014-02-27 04:54:44 +01:00
|
|
|
Matcher m = p.matcher(url.toExternalForm());
|
|
|
|
if (m.matches()) {
|
|
|
|
// Imgur album
|
|
|
|
albumType = ALBUM_TYPE.ALBUM;
|
|
|
|
String gid = m.group(m.groupCount());
|
|
|
|
this.url = new URL("http://imgur.com/a/" + gid);
|
|
|
|
return gid;
|
|
|
|
}
|
2015-12-21 23:47:07 +01:00
|
|
|
p = Pattern.compile("^https?://(www\\.|m\\.)?imgur\\.com/gallery/([a-zA-Z0-9]{5,8}).*$");
|
2015-12-21 16:36:28 +01:00
|
|
|
m = p.matcher(url.toExternalForm());
|
|
|
|
if (m.matches()) {
|
|
|
|
// Imgur gallery
|
|
|
|
albumType = ALBUM_TYPE.ALBUM;
|
|
|
|
String gid = m.group(m.groupCount());
|
|
|
|
this.url = new URL("http://imgur.com/a/" + gid);
|
|
|
|
return gid;
|
|
|
|
}
|
2014-03-03 09:44:07 +01:00
|
|
|
p = Pattern.compile("^https?://([a-zA-Z0-9\\-]{3,})\\.imgur\\.com/?$");
|
2014-02-27 04:54:44 +01:00
|
|
|
m = p.matcher(url.toExternalForm());
|
|
|
|
if (m.matches()) {
|
|
|
|
// Root imgur account
|
2014-03-03 09:44:07 +01:00
|
|
|
String gid = m.group(1);
|
2014-04-06 21:07:53 +02:00
|
|
|
if (gid.equals("www")) {
|
|
|
|
throw new MalformedURLException("Cannot rip the www.imgur.com homepage");
|
2014-03-03 09:44:07 +01:00
|
|
|
}
|
2014-02-27 04:54:44 +01:00
|
|
|
albumType = ALBUM_TYPE.USER;
|
2014-03-03 09:44:07 +01:00
|
|
|
return gid;
|
2014-02-27 04:54:44 +01:00
|
|
|
}
|
2014-04-20 22:21:52 +02:00
|
|
|
p = Pattern.compile("^https?://([a-zA-Z0-9\\-]{3,})\\.imgur\\.com/all.*$");
|
|
|
|
m = p.matcher(url.toExternalForm());
|
|
|
|
if (m.matches()) {
|
|
|
|
// Imgur account images
|
|
|
|
albumType = ALBUM_TYPE.USER_IMAGES;
|
|
|
|
return m.group(1) + "_images";
|
|
|
|
}
|
2014-05-03 08:13:31 +02:00
|
|
|
p = Pattern.compile("^https?://([a-zA-Z0-9\\-]{3,})\\.imgur\\.com/([a-zA-Z0-9\\-_]+).*$");
|
|
|
|
m = p.matcher(url.toExternalForm());
|
|
|
|
if (m.matches()) {
|
|
|
|
// Imgur account album
|
|
|
|
albumType = ALBUM_TYPE.USER_ALBUM;
|
|
|
|
return m.group(1) + "-" + m.group(2);
|
|
|
|
}
|
2015-12-21 23:47:07 +01:00
|
|
|
p = Pattern.compile("^https?://(www\\.|m\\.)?imgur\\.com/r/([a-zA-Z0-9\\-_]{3,})(/top|/new)?(/all|/year|/month|/week)?/?$");
|
2014-04-06 21:07:53 +02:00
|
|
|
m = p.matcher(url.toExternalForm());
|
|
|
|
if (m.matches()) {
|
|
|
|
// Imgur subreddit aggregator
|
|
|
|
albumType = ALBUM_TYPE.SUBREDDIT;
|
|
|
|
String album = m.group(2);
|
|
|
|
for (int i = 3; i <= m.groupCount(); i++) {
|
|
|
|
if (m.group(i) != null) {
|
|
|
|
album += "_" + m.group(i).replace("/", "");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return album;
|
|
|
|
}
|
2015-12-21 23:47:07 +01:00
|
|
|
p = Pattern.compile("^https?://(i\\.|www\\.|m\\.)?imgur\\.com/([a-zA-Z0-9,]{5,}).*$");
|
2014-02-27 04:54:44 +01:00
|
|
|
m = p.matcher(url.toExternalForm());
|
|
|
|
if (m.matches()) {
|
|
|
|
// Series of imgur images
|
|
|
|
albumType = ALBUM_TYPE.SERIES_OF_IMAGES;
|
2014-03-03 09:44:07 +01:00
|
|
|
String gid = m.group(m.groupCount());
|
|
|
|
if (!gid.contains(",")) {
|
|
|
|
throw new MalformedURLException("Imgur image doesn't contain commas");
|
|
|
|
}
|
|
|
|
return gid.replaceAll(",", "-");
|
2014-02-27 04:54:44 +01:00
|
|
|
}
|
2014-05-03 08:13:31 +02:00
|
|
|
throw new MalformedURLException("Unsupported imgur URL format: " + url.toExternalForm());
|
2014-02-27 04:54:44 +01:00
|
|
|
}
|
|
|
|
|
2014-03-03 09:44:07 +01:00
|
|
|
public ALBUM_TYPE getAlbumType() {
|
|
|
|
return albumType;
|
|
|
|
}
|
2014-04-13 01:53:49 +02:00
|
|
|
|
|
|
|
public static class ImgurImage {
|
|
|
|
public String title = "",
|
|
|
|
description = "",
|
|
|
|
extension = "";
|
|
|
|
public URL url = null;
|
|
|
|
|
|
|
|
public ImgurImage(URL url) {
|
|
|
|
this.url = url;
|
|
|
|
String tempUrl = url.toExternalForm();
|
|
|
|
this.extension = tempUrl.substring(tempUrl.lastIndexOf('.'));
|
2014-04-20 22:21:52 +02:00
|
|
|
if (this.extension.contains("?")) {
|
|
|
|
this.extension = this.extension.substring(0, this.extension.indexOf("?"));
|
|
|
|
}
|
2014-04-13 01:53:49 +02:00
|
|
|
}
|
|
|
|
public ImgurImage(URL url, String title) {
|
|
|
|
this(url);
|
|
|
|
this.title = title;
|
|
|
|
}
|
|
|
|
public ImgurImage(URL url, String title, String description) {
|
|
|
|
this(url, title);
|
|
|
|
this.description = description;
|
|
|
|
}
|
|
|
|
public String getSaveAs() {
|
|
|
|
String saveAs = this.title;
|
|
|
|
String u = url.toExternalForm();
|
2014-04-20 22:21:52 +02:00
|
|
|
if (u.contains("?")) {
|
|
|
|
u = u.substring(0, u.indexOf("?"));
|
|
|
|
}
|
2014-04-13 01:53:49 +02:00
|
|
|
String imgId = u.substring(u.lastIndexOf('/') + 1, u.lastIndexOf('.'));
|
|
|
|
if (saveAs == null || saveAs.equals("")) {
|
|
|
|
saveAs = imgId;
|
|
|
|
} else {
|
|
|
|
saveAs = saveAs + "_" + imgId;
|
|
|
|
}
|
|
|
|
saveAs = Utils.filesystemSafe(saveAs);
|
|
|
|
return saveAs + this.extension;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public static class ImgurAlbum {
|
|
|
|
public String title = null;
|
|
|
|
public URL url = null;
|
|
|
|
public List<ImgurImage> images = new ArrayList<ImgurImage>();
|
|
|
|
public ImgurAlbum(URL url) {
|
|
|
|
this.url = url;
|
|
|
|
}
|
|
|
|
public ImgurAlbum(URL url, String title) {
|
|
|
|
this(url);
|
|
|
|
this.title = title;
|
|
|
|
}
|
|
|
|
public void addImage(ImgurImage image) {
|
|
|
|
images.add(image);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|