ImgScroll/src/main/java/com/rarchives/ripme/ripper/rippers/HentaifoundryRipper.java

174 lines
6.3 KiB
Java
Raw Normal View History

2014-06-17 10:39:49 +02:00
package com.rarchives.ripme.ripper.rippers;
import java.io.IOException;
import java.net.MalformedURLException;
import java.net.URL;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
2014-06-17 10:39:49 +02:00
import java.util.Map;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
2018-04-21 10:46:16 +02:00
import org.jsoup.Connection.Method;
2014-06-17 10:39:49 +02:00
import org.jsoup.Connection.Response;
import org.jsoup.nodes.Document;
import org.jsoup.nodes.Element;
import org.jsoup.select.Elements;
import com.rarchives.ripme.ripper.AbstractHTMLRipper;
import com.rarchives.ripme.utils.Http;
2014-06-17 10:39:49 +02:00
public class HentaifoundryRipper extends AbstractHTMLRipper {
2014-06-17 10:39:49 +02:00
private Map<String,String> cookies = new HashMap<>();
2014-06-17 10:39:49 +02:00
public HentaifoundryRipper(URL url) throws IOException {
super(url);
}
@Override
public String getHost() {
return "hentai-foundry";
}
@Override
public String getDomain() {
return "hentai-foundry.com";
2014-06-17 10:39:49 +02:00
}
@Override
public String getGID(URL url) throws MalformedURLException {
Pattern p = Pattern.compile("^.*hentai-foundry\\.com/pictures/user/([a-zA-Z0-9\\-_]+).*$");
Matcher m = p.matcher(url.toExternalForm());
if (m.matches()) {
return m.group(1);
}
throw new MalformedURLException(
"Expected hentai-foundry.com gallery format: "
+ "hentai-foundry.com/pictures/user/USERNAME"
+ " Got: " + url);
2014-06-17 10:39:49 +02:00
}
@Override
public Document getFirstPage() throws IOException {
2018-04-21 10:46:16 +02:00
Response resp;
Document doc;
resp = Http.url("http://www.hentai-foundry.com/?enterAgree=1&size=1500")
.referrer("http://www.hentai-foundry.com/")
.cookies(cookies)
.response();
// The only cookie that seems to matter in getting around the age wall is the phpsession cookie
cookies.putAll(resp.cookies());
2018-04-21 10:46:16 +02:00
doc = resp.parse();
String csrf_token = doc.select("input[name=YII_CSRF_TOKEN]")
.first().attr("value");
if (csrf_token != null) {
Map<String,String> data = new HashMap<>();
data.put("YII_CSRF_TOKEN" , csrf_token);
data.put("rating_nudity" , "3");
data.put("rating_violence" , "3");
data.put("rating_profanity", "3");
data.put("rating_racism" , "3");
data.put("rating_sex" , "3");
data.put("rating_spoilers" , "3");
data.put("rating_yaoi" , "1");
data.put("rating_yuri" , "1");
data.put("rating_teen" , "1");
data.put("rating_guro" , "1");
data.put("rating_furry" , "1");
data.put("rating_beast" , "1");
data.put("rating_male" , "1");
data.put("rating_female" , "1");
data.put("rating_futa" , "1");
data.put("rating_other" , "1");
data.put("rating_scat" , "1");
data.put("rating_incest" , "1");
data.put("rating_rape" , "1");
data.put("filter_media" , "A");
data.put("filter_order" , "date_new");
data.put("filter_type" , "0");
resp = Http.url("http://www.hentai-foundry.com/site/filters")
.referrer("http://www.hentai-foundry.com/")
.cookies(cookies)
.data(data)
.method(Method.POST)
.response();
cookies.putAll(resp.cookies());
}
else {
2018-06-03 03:14:41 +02:00
LOGGER.info("unable to find csrf_token and set filter");
2018-04-21 10:46:16 +02:00
}
resp = Http.url(url)
.referrer("http://www.hentai-foundry.com/")
.cookies(cookies)
.response();
cookies.putAll(resp.cookies());
return resp.parse();
}
2017-03-17 23:09:52 +01:00
@Override
public Document getNextPage(Document doc) throws IOException {
if (!doc.select("li.next.hidden").isEmpty()) {
// Last page
throw new IOException("No more pages");
}
Elements els = doc.select("li.next > a");
Element first = els.first();
try {
String nextURL = first.attr("href");
nextURL = "http://www.hentai-foundry.com" + nextURL;
return Http.url(nextURL)
.referrer(url)
.cookies(cookies)
.get();
} catch (NullPointerException e) {
throw new IOException("No more pages");
}
}
@Override
public List<String> getURLsFromPage(Document doc) {
List<String> imageURLs = new ArrayList<>();
Pattern imgRegex = Pattern.compile(".*/user/([a-zA-Z0-9\\-_]+)/(\\d+)/.*");
for (Element thumb : doc.select("div.thumb_square > a.thumbLink")) {
2014-06-17 10:39:49 +02:00
if (isStopped()) {
break;
}
Matcher imgMatcher = imgRegex.matcher(thumb.attr("href"));
if (!imgMatcher.matches()) {
2018-06-03 03:14:41 +02:00
LOGGER.info("Couldn't find user & image ID in " + thumb.attr("href"));
continue;
2014-06-17 10:39:49 +02:00
}
Document imagePage;
try {
2018-06-03 03:14:41 +02:00
LOGGER.info("grabbing " + "http://www.hentai-foundry.com" + thumb.attr("href"));
imagePage = Http.url("http://www.hentai-foundry.com" + thumb.attr("href")).cookies(cookies).get();
}
catch (IOException e) {
2018-06-03 03:14:41 +02:00
LOGGER.debug(e.getMessage());
LOGGER.debug("Warning: imagePage is null!");
imagePage = null;
}
2017-04-25 20:39:05 +02:00
// This is here for when the image is resized to a thumbnail because ripme doesn't report a screensize
if (imagePage.select("div.boxbody > img.center").attr("src").contains("thumbs.")) {
2017-04-25 20:39:05 +02:00
imageURLs.add("http:" + imagePage.select("div.boxbody > img.center").attr("onclick").replace("this.src=", "").replace("'", "").replace("; $(#resize_message).hide();", ""));
}
else {
imageURLs.add("http:" + imagePage.select("div.boxbody > img.center").attr("src"));
}
2014-06-17 10:39:49 +02:00
}
return imageURLs;
2014-06-17 10:39:49 +02:00
}
2017-03-17 23:09:52 +01:00
2014-06-17 10:39:49 +02:00
@Override
public void downloadURL(URL url, int index) {
addURLToDownload(url, getPrefix(index));
2014-06-17 10:39:49 +02:00
}
}