2014-06-17 10:39:32 +02:00
|
|
|
package com.rarchives.ripme.ripper.rippers;
|
|
|
|
|
|
|
|
import java.io.IOException;
|
|
|
|
import java.net.MalformedURLException;
|
|
|
|
import java.net.URL;
|
2014-06-25 04:05:54 +02:00
|
|
|
import java.util.ArrayList;
|
|
|
|
import java.util.List;
|
2014-06-17 10:39:32 +02:00
|
|
|
import java.util.regex.Matcher;
|
|
|
|
import java.util.regex.Pattern;
|
|
|
|
|
|
|
|
import org.jsoup.nodes.Document;
|
|
|
|
import org.jsoup.nodes.Element;
|
|
|
|
import org.jsoup.select.Elements;
|
|
|
|
|
2014-06-25 04:05:54 +02:00
|
|
|
import com.rarchives.ripme.ripper.AbstractHTMLRipper;
|
2014-06-17 10:39:32 +02:00
|
|
|
import com.rarchives.ripme.ripper.DownloadThreadPool;
|
2014-06-22 02:08:42 +02:00
|
|
|
import com.rarchives.ripme.utils.Http;
|
2014-06-17 10:39:32 +02:00
|
|
|
import com.rarchives.ripme.utils.Utils;
|
|
|
|
|
2014-06-25 04:05:54 +02:00
|
|
|
public class ImagevenueRipper extends AbstractHTMLRipper {
|
2014-06-17 10:39:32 +02:00
|
|
|
|
|
|
|
// Thread pool for finding direct image links from "image" pages (html)
|
|
|
|
private DownloadThreadPool imagevenueThreadPool = new DownloadThreadPool("imagevenue");
|
2014-06-25 04:05:54 +02:00
|
|
|
@Override
|
|
|
|
public DownloadThreadPool getThreadPool() {
|
|
|
|
return imagevenueThreadPool;
|
|
|
|
}
|
2014-06-17 10:39:32 +02:00
|
|
|
|
|
|
|
public ImagevenueRipper(URL url) throws IOException {
|
|
|
|
super(url);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public String getHost() {
|
2014-06-25 04:05:54 +02:00
|
|
|
return "imagevenue";
|
2014-06-17 10:39:32 +02:00
|
|
|
}
|
2014-06-25 04:05:54 +02:00
|
|
|
@Override
|
|
|
|
public String getDomain() {
|
|
|
|
return "imagevenue.com";
|
2014-06-17 10:39:32 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public String getGID(URL url) throws MalformedURLException {
|
|
|
|
Pattern p;
|
|
|
|
Matcher m;
|
|
|
|
|
|
|
|
p = Pattern.compile("^https?://.*imagevenue.com/galshow.php\\?gal=([a-zA-Z0-9\\-_]+).*$");
|
|
|
|
m = p.matcher(url.toExternalForm());
|
|
|
|
if (m.matches()) {
|
|
|
|
return m.group(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
throw new MalformedURLException(
|
|
|
|
"Expected imagevenue gallery format: "
|
|
|
|
+ "http://...imagevenue.com/galshow.php?gal=gallery_...."
|
|
|
|
+ " Got: " + url);
|
|
|
|
}
|
2017-05-10 00:22:55 +02:00
|
|
|
|
2014-06-17 10:39:32 +02:00
|
|
|
@Override
|
2014-06-25 04:05:54 +02:00
|
|
|
public Document getFirstPage() throws IOException {
|
|
|
|
return Http.url(url).get();
|
|
|
|
}
|
2017-05-10 00:22:55 +02:00
|
|
|
|
2014-06-25 04:05:54 +02:00
|
|
|
public List<String> getURLsFromPage(Document doc) {
|
2017-10-24 16:33:28 +02:00
|
|
|
List<String> imageURLs = new ArrayList<>();
|
2014-06-25 04:05:54 +02:00
|
|
|
for (Element thumb : doc.select("a[target=_blank]")) {
|
|
|
|
imageURLs.add(thumb.attr("href"));
|
2014-06-17 10:39:32 +02:00
|
|
|
}
|
2014-06-25 04:05:54 +02:00
|
|
|
return imageURLs;
|
2014-06-17 10:39:32 +02:00
|
|
|
}
|
2017-05-10 00:22:55 +02:00
|
|
|
|
2014-06-25 04:05:54 +02:00
|
|
|
public void downloadURL(URL url, int index) {
|
|
|
|
ImagevenueImageThread t = new ImagevenueImageThread(url, index);
|
|
|
|
imagevenueThreadPool.addThread(t);
|
2014-06-17 10:39:32 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Helper class to find and download images found on "image" pages
|
2017-05-10 00:22:55 +02:00
|
|
|
*
|
2014-06-17 10:39:32 +02:00
|
|
|
* Handles case when site has IP-banned the user.
|
|
|
|
*/
|
|
|
|
private class ImagevenueImageThread extends Thread {
|
|
|
|
private URL url;
|
|
|
|
private int index;
|
|
|
|
|
2017-10-24 16:33:28 +02:00
|
|
|
ImagevenueImageThread(URL url, int index) {
|
2014-06-17 10:39:32 +02:00
|
|
|
super();
|
|
|
|
this.url = url;
|
|
|
|
this.index = index;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void run() {
|
|
|
|
fetchImage();
|
|
|
|
}
|
2017-05-10 00:22:55 +02:00
|
|
|
|
2014-06-17 10:39:32 +02:00
|
|
|
private void fetchImage() {
|
|
|
|
try {
|
2014-06-25 04:05:54 +02:00
|
|
|
Document doc = Http.url(url)
|
|
|
|
.retries(3)
|
|
|
|
.get();
|
2014-06-17 10:39:32 +02:00
|
|
|
// Find image
|
|
|
|
Elements images = doc.select("a > img");
|
2018-05-30 04:48:44 +02:00
|
|
|
if (images.isEmpty()) {
|
2018-06-03 03:14:41 +02:00
|
|
|
LOGGER.warn("Image not found at " + this.url);
|
2014-06-17 10:39:32 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
Element image = images.first();
|
|
|
|
String imgsrc = image.attr("src");
|
|
|
|
imgsrc = "http://" + this.url.getHost() + "/" + imgsrc;
|
|
|
|
// Provide prefix and let the AbstractRipper "guess" the filename
|
|
|
|
String prefix = "";
|
|
|
|
if (Utils.getConfigBoolean("download.save_order", true)) {
|
|
|
|
prefix = String.format("%03d_", index);
|
|
|
|
}
|
|
|
|
addURLToDownload(new URL(imgsrc), prefix);
|
|
|
|
} catch (IOException e) {
|
2018-06-03 03:14:41 +02:00
|
|
|
LOGGER.error("[!] Exception while loading/parsing " + this.url, e);
|
2014-06-17 10:39:32 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|