2017-02-22 15:58:52 +01:00
|
|
|
package com.rarchives.ripme.ripper.rippers;
|
|
|
|
|
|
|
|
import com.rarchives.ripme.ripper.AbstractHTMLRipper;
|
|
|
|
import com.rarchives.ripme.utils.Http;
|
2017-11-08 09:03:09 +01:00
|
|
|
|
2017-02-22 15:58:52 +01:00
|
|
|
import java.io.IOException;
|
|
|
|
import java.net.MalformedURLException;
|
|
|
|
import java.net.URL;
|
|
|
|
import java.util.ArrayList;
|
|
|
|
import java.util.List;
|
|
|
|
import java.util.regex.Matcher;
|
|
|
|
import java.util.regex.Pattern;
|
|
|
|
import org.jsoup.nodes.Document;
|
|
|
|
import org.jsoup.nodes.Element;
|
|
|
|
|
|
|
|
public class SinnercomicsRipper extends AbstractHTMLRipper {
|
|
|
|
|
|
|
|
public SinnercomicsRipper(URL url) throws IOException {
|
|
|
|
super(url);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public String getHost() {
|
|
|
|
return "sinnercomics";
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public String getDomain() {
|
|
|
|
return "sinnercomics.com";
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public String getGID(URL url) throws MalformedURLException {
|
|
|
|
Pattern p = Pattern.compile("^https?://sinnercomics.com/comic/([a-zA-Z0-9-]*)/?$");
|
|
|
|
Matcher m = p.matcher(url.toExternalForm());
|
|
|
|
if (m.matches()) {
|
2018-05-13 16:11:38 +02:00
|
|
|
return m.group(1).replaceAll("-page-\\d+", "");
|
2017-02-22 15:58:52 +01:00
|
|
|
}
|
|
|
|
throw new MalformedURLException("Expected sinnercomics.com URL format: " +
|
|
|
|
"sinnercomics.com/comic/albumName - got " + url + " instead");
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public Document getFirstPage() throws IOException {
|
|
|
|
// "url" is an instance field of the superclass
|
|
|
|
return Http.url(url).get();
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public Document getNextPage(Document doc) throws IOException {
|
|
|
|
// Find next page
|
|
|
|
String nextUrl = "";
|
|
|
|
// We use comic-nav-next to the find the next page
|
|
|
|
Element elem = doc.select("a.comic-nav-next").first();
|
|
|
|
if (elem == null) {
|
|
|
|
throw new IOException("No more pages");
|
|
|
|
}
|
|
|
|
String nextPage = elem.attr("href");
|
|
|
|
// Wait half a sec to avoid IP bans
|
|
|
|
sleep(500);
|
|
|
|
return Http.url(nextPage).get();
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public List<String> getURLsFromPage(Document doc) {
|
2017-10-24 16:33:28 +02:00
|
|
|
List<String> result = new ArrayList<>();
|
2017-02-22 15:58:52 +01:00
|
|
|
for (Element el : doc.select("meta[property=og:image]")) {
|
|
|
|
String imageSource = el.attr("content");
|
2017-03-14 22:16:33 +01:00
|
|
|
imageSource = imageSource.replace(" alt=", "");
|
2017-02-22 15:58:52 +01:00
|
|
|
result.add(imageSource);
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void downloadURL(URL url, int index) {
|
|
|
|
addURLToDownload(url, getPrefix(index));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
}
|