2015-11-26 19:18:03 +01:00
|
|
|
package com.rarchives.ripme.ripper.rippers;
|
|
|
|
|
|
|
|
import com.rarchives.ripme.ripper.AbstractHTMLRipper;
|
|
|
|
import com.rarchives.ripme.utils.Http;
|
2015-11-27 00:45:14 +01:00
|
|
|
import com.rarchives.ripme.utils.Utils;
|
|
|
|
import java.io.File;
|
2015-11-26 19:18:03 +01:00
|
|
|
import java.io.IOException;
|
|
|
|
import java.net.MalformedURLException;
|
2015-11-27 00:45:14 +01:00
|
|
|
import java.net.URI;
|
|
|
|
import java.net.URISyntaxException;
|
2015-11-26 19:18:03 +01:00
|
|
|
import java.net.URL;
|
|
|
|
import java.util.ArrayList;
|
|
|
|
import java.util.HashMap;
|
|
|
|
import java.util.List;
|
|
|
|
import java.util.Map;
|
|
|
|
import java.util.regex.Matcher;
|
|
|
|
import java.util.regex.Pattern;
|
2017-11-20 04:42:12 +01:00
|
|
|
import org.apache.log4j.Logger;
|
2015-11-26 19:18:03 +01:00
|
|
|
import org.jsoup.nodes.Document;
|
|
|
|
import org.jsoup.nodes.Element;
|
|
|
|
import org.jsoup.select.Elements;
|
|
|
|
|
2017-05-10 00:36:37 +02:00
|
|
|
public class PahealRipper extends AbstractHTMLRipper {
|
2017-11-20 04:42:12 +01:00
|
|
|
private static final Logger logger = Logger.getLogger(PahealRipper.class);
|
|
|
|
|
2017-05-10 00:36:37 +02:00
|
|
|
private static Map<String, String> cookies = null;
|
|
|
|
private static Pattern gidPattern = null;
|
|
|
|
|
|
|
|
private static Map<String, String> getCookies() {
|
|
|
|
if (cookies == null) {
|
2017-10-24 16:33:28 +02:00
|
|
|
cookies = new HashMap<>(1);
|
2017-05-10 00:36:37 +02:00
|
|
|
cookies.put("ui-tnc-agreed", "true");
|
|
|
|
}
|
|
|
|
return cookies;
|
|
|
|
}
|
|
|
|
|
|
|
|
public PahealRipper(URL url) throws IOException {
|
|
|
|
super(url);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public String getDomain() {
|
|
|
|
return "rule34.paheal.net";
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public String getHost() {
|
|
|
|
return "paheal";
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public Document getFirstPage() throws IOException {
|
|
|
|
return Http.url("http://rule34.paheal.net/post/list/" + getTerm(url) + "/1").cookies(getCookies()).get();
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public Document getNextPage(Document page) throws IOException {
|
|
|
|
for (Element e : page.select("#paginator a")) {
|
|
|
|
if (e.text().toLowerCase().equals("next")) {
|
|
|
|
return Http.url(e.absUrl("href")).cookies(getCookies()).get();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public List<String> getURLsFromPage(Document page) {
|
|
|
|
Elements elements = page.select(".shm-thumb.thumb>a").not(".shm-thumb-link");
|
2017-10-24 16:33:28 +02:00
|
|
|
List<String> res = new ArrayList<>(elements.size());
|
2017-05-10 00:36:37 +02:00
|
|
|
|
|
|
|
for (Element e : elements) {
|
|
|
|
res.add(e.absUrl("href"));
|
|
|
|
}
|
|
|
|
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void downloadURL(URL url, int index) {
|
|
|
|
try {
|
|
|
|
String name = url.getPath();
|
|
|
|
String ext = ".png";
|
|
|
|
|
|
|
|
name = name.substring(name.lastIndexOf('/') + 1);
|
|
|
|
if (name.indexOf('.') >= 0) {
|
|
|
|
ext = name.substring(name.lastIndexOf('.'));
|
|
|
|
name = name.substring(0, name.length() - ext.length());
|
|
|
|
}
|
|
|
|
|
|
|
|
File outFile = new File(workingDir.getCanonicalPath()
|
|
|
|
+ File.separator
|
|
|
|
+ Utils.filesystemSafe(new URI(name).getPath())
|
|
|
|
+ ext);
|
|
|
|
addURLToDownload(url, outFile);
|
2017-10-24 16:33:28 +02:00
|
|
|
} catch (IOException | URISyntaxException ex) {
|
2017-11-20 04:42:12 +01:00
|
|
|
logger.error("Error while downloading URL " + url, ex);
|
2017-05-10 00:36:37 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private String getTerm(URL url) throws MalformedURLException {
|
|
|
|
if (gidPattern == null) {
|
|
|
|
gidPattern = Pattern.compile("^https?://(www\\.)?rule34\\.paheal\\.net/post/list/([a-zA-Z0-9$_.+!*'(),%-]+)(/.*)?(#.*)?$");
|
|
|
|
}
|
|
|
|
|
|
|
|
Matcher m = gidPattern.matcher(url.toExternalForm());
|
|
|
|
if (m.matches()) {
|
|
|
|
return m.group(2);
|
|
|
|
}
|
|
|
|
|
|
|
|
throw new MalformedURLException("Expected paheal.net URL format: rule34.paheal.net/post/list/searchterm - got " + url + " instead");
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public String getGID(URL url) throws MalformedURLException {
|
|
|
|
try {
|
|
|
|
return Utils.filesystemSafe(new URI(getTerm(url)).getPath());
|
|
|
|
} catch (URISyntaxException ex) {
|
2017-11-20 04:42:12 +01:00
|
|
|
logger.error(ex);
|
2017-05-10 00:36:37 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
throw new MalformedURLException("Expected paheal.net URL format: rule34.paheal.net/post/list/searchterm - got " + url + " instead");
|
|
|
|
}
|
2015-11-26 19:18:03 +01:00
|
|
|
}
|