2017-02-21 23:14:59 +01:00
|
|
|
package com.rarchives.ripme.ripper.rippers;
|
|
|
|
|
|
|
|
import com.rarchives.ripme.ripper.AbstractHTMLRipper;
|
|
|
|
import com.rarchives.ripme.utils.Http;
|
|
|
|
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;
|
2017-05-23 18:59:49 +02:00
|
|
|
import org.jsoup.select.Elements;
|
|
|
|
import java.util.Arrays;
|
2017-02-21 23:14:59 +01:00
|
|
|
|
|
|
|
public class MyhentaicomicsRipper extends AbstractHTMLRipper {
|
|
|
|
public static boolean isTag;
|
|
|
|
|
|
|
|
public MyhentaicomicsRipper(URL url) throws IOException {
|
|
|
|
super(url);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public String getHost() {
|
|
|
|
return "myhentaicomics";
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public String getDomain() {
|
|
|
|
return "myhentaicomics.com";
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public String getGID(URL url) throws MalformedURLException {
|
|
|
|
Pattern p = Pattern.compile("^https?://myhentaicomics.com/index.php/([a-zA-Z0-9-]*)/?$");
|
|
|
|
Matcher m = p.matcher(url.toExternalForm());
|
|
|
|
if (m.matches()) {
|
|
|
|
isTag = false;
|
|
|
|
return m.group(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
Pattern pa = Pattern.compile("^https?://myhentaicomics.com/index.php/search\\?q=([a-zA-Z0-9-]*)([a-zA-Z0-9=&]*)?$");
|
|
|
|
Matcher ma = pa.matcher(url.toExternalForm());
|
|
|
|
if (ma.matches()) {
|
|
|
|
isTag = true;
|
|
|
|
return ma.group(1);
|
|
|
|
}
|
|
|
|
|
2017-05-23 18:59:49 +02:00
|
|
|
Pattern pat = Pattern.compile("^https?://myhentaicomics.com/index.php/tag/([0-9]*)/?([a-zA-Z%0-9+\\?=:]*)?$");
|
2017-02-21 23:14:59 +01:00
|
|
|
Matcher mat = pat.matcher(url.toExternalForm());
|
|
|
|
if (mat.matches()) {
|
|
|
|
isTag = true;
|
|
|
|
return mat.group(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
throw new MalformedURLException("Expected myhentaicomics.com URL format: " +
|
|
|
|
"myhentaicomics.com/index.php/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 = "";
|
|
|
|
Element elem = doc.select("a.ui-icon-right").first();
|
|
|
|
String nextPage = elem.attr("href");
|
|
|
|
Pattern p = Pattern.compile("/index.php/[a-zA-Z0-9_-]*\\?page=\\d");
|
|
|
|
Matcher m = p.matcher(nextPage);
|
|
|
|
if (m.matches()) {
|
|
|
|
nextUrl = "http://myhentaicomics.com" + m.group(0);
|
|
|
|
}
|
|
|
|
if (nextUrl == "") {
|
|
|
|
throw new IOException("No more pages");
|
|
|
|
}
|
|
|
|
// Sleep for half a sec to avoid getting IP banned
|
|
|
|
sleep(500);
|
|
|
|
return Http.url(nextUrl).get();
|
|
|
|
}
|
|
|
|
|
|
|
|
// This replaces getNextPage when downloading from searchs and tags
|
|
|
|
public List<String> getNextAlbumPage(String pageUrl) {
|
|
|
|
List<String> albumPagesList = new ArrayList<String>();
|
|
|
|
int pageNumber = 1;
|
|
|
|
albumPagesList.add("http://myhentaicomics.com/index.php/" + pageUrl.split("\\?")[0] + "?page=" + Integer.toString(pageNumber));
|
2017-05-10 02:50:32 +02:00
|
|
|
while (true) {
|
2017-02-21 23:14:59 +01:00
|
|
|
String urlToGet = "http://myhentaicomics.com/index.php/" + pageUrl.split("\\?")[0] + "?page=" + Integer.toString(pageNumber);
|
|
|
|
Document nextAlbumPage;
|
|
|
|
try {
|
|
|
|
logger.info("Grabbing " + urlToGet);
|
|
|
|
nextAlbumPage = Http.url(urlToGet).get();
|
2017-06-19 19:32:57 +02:00
|
|
|
} catch (IOException e) {
|
2017-02-21 23:14:59 +01:00
|
|
|
logger.warn("Failed to log link in Jsoup");
|
|
|
|
nextAlbumPage = null;
|
|
|
|
e.printStackTrace();
|
|
|
|
}
|
|
|
|
Element elem = nextAlbumPage.select("a.ui-icon-right").first();
|
|
|
|
String nextPage = elem.attr("href");
|
|
|
|
pageNumber = pageNumber + 1;
|
2017-05-10 02:50:32 +02:00
|
|
|
if (nextPage == "") {
|
2017-02-21 23:14:59 +01:00
|
|
|
logger.info("Got " + pageNumber + " pages");
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
logger.info(nextPage);
|
|
|
|
albumPagesList.add(nextPage);
|
|
|
|
logger.info("Adding " + nextPage);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return albumPagesList;
|
|
|
|
}
|
|
|
|
|
2017-05-23 18:59:49 +02:00
|
|
|
public List<String> getAlbumsFromPage(String url) {
|
2017-02-21 23:14:59 +01:00
|
|
|
List<String> pagesToRip;
|
2017-05-23 18:59:49 +02:00
|
|
|
List<String> result = new ArrayList<String>();
|
|
|
|
logger.info("Running getAlbumsFromPage");
|
|
|
|
Document doc;
|
|
|
|
try {
|
|
|
|
doc = Http.url("http://myhentaicomics.com" + url).get();
|
2017-06-19 19:32:57 +02:00
|
|
|
} catch (IOException e) {
|
2017-05-23 18:59:49 +02:00
|
|
|
logger.warn("Failed to log link in Jsoup");
|
|
|
|
doc = null;
|
|
|
|
e.printStackTrace();
|
|
|
|
}
|
|
|
|
// This for goes over every album on the page
|
|
|
|
for (Element elem : doc.select("li.g-album > a")) {
|
|
|
|
String link = elem.attr("href");
|
|
|
|
logger.info("Grabbing album " + link);
|
|
|
|
pagesToRip = getNextAlbumPage(link);
|
|
|
|
logger.info(pagesToRip);
|
|
|
|
for (String element : pagesToRip) {
|
|
|
|
Document album_doc;
|
|
|
|
try {
|
|
|
|
logger.info("grabbing " + element + " with jsoup");
|
|
|
|
boolean startsWithHttp = element.startsWith("http://");
|
|
|
|
if (!startsWithHttp) {
|
|
|
|
album_doc = Http.url("http://myhentaicomics.com/" + element).get();
|
2017-02-21 23:14:59 +01:00
|
|
|
}
|
2017-05-23 18:59:49 +02:00
|
|
|
else {
|
|
|
|
album_doc = Http.url(element).get();
|
|
|
|
}
|
2017-06-19 19:32:57 +02:00
|
|
|
} catch (IOException e) {
|
2017-05-23 18:59:49 +02:00
|
|
|
logger.warn("Failed to log link in Jsoup");
|
|
|
|
album_doc = null;
|
|
|
|
e.printStackTrace();
|
|
|
|
}
|
|
|
|
for (Element el :album_doc.select("img")) {
|
|
|
|
String imageSource = el.attr("src");
|
|
|
|
// This bool is here so we don't try and download the site logo
|
|
|
|
if (!imageSource.startsWith("http://")) {
|
|
|
|
// We replace thumbs with resizes so we can the full sized images
|
|
|
|
imageSource = imageSource.replace("thumbs", "resizes");
|
|
|
|
String url_string = "http://myhentaicomics.com/" + imageSource;
|
|
|
|
url_string = url_string.replace("%20", "_");
|
|
|
|
url_string = url_string.replace("%27", "");
|
|
|
|
url_string = url_string.replace("%28", "_");
|
|
|
|
url_string = url_string.replace("%29", "_");
|
|
|
|
url_string = url_string.replace("%2C", "_");
|
|
|
|
if (isTag == true) {
|
|
|
|
logger.info("Downloading from a tag or search");
|
|
|
|
try {
|
|
|
|
sleep(500);
|
2017-05-09 23:11:17 +02:00
|
|
|
result.add("http://myhentaicomics.com/" + imageSource);
|
2017-05-23 18:59:49 +02:00
|
|
|
addURLToDownload(new URL("http://myhentaicomics.com/" + imageSource), "", url_string.split("/")[6]);
|
|
|
|
}
|
2017-06-19 19:32:57 +02:00
|
|
|
catch (MalformedURLException e) {
|
2017-05-23 18:59:49 +02:00
|
|
|
logger.warn("Malformed URL");
|
|
|
|
e.printStackTrace();
|
2017-05-09 23:11:17 +02:00
|
|
|
}
|
|
|
|
}
|
2017-02-21 23:14:59 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2017-05-23 18:59:49 +02:00
|
|
|
}
|
2017-05-09 23:11:17 +02:00
|
|
|
return result;
|
2017-05-23 18:59:49 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
public List<String> getListOfPages(Document doc) {
|
|
|
|
List<String> pages = new ArrayList<String>();
|
|
|
|
// Get the link from the last button
|
|
|
|
String nextPageUrl = doc.select("a.ui-icon-right").last().attr("href");
|
|
|
|
Pattern pat = Pattern.compile("\\/index\\.php\\/tag\\/[0-9]*\\/[a-zA-Z0-9_\\-\\:+]*\\?page=(\\d+)");
|
|
|
|
Matcher mat = pat.matcher(nextPageUrl);
|
|
|
|
if (mat.matches()) {
|
|
|
|
logger.debug("Getting pages from a tag");
|
|
|
|
String base_link = mat.group(0).replaceAll("\\?page=\\d+", "");
|
|
|
|
logger.debug("base_link is " + base_link);
|
|
|
|
int numOfPages = Integer.parseInt(mat.group(1));
|
|
|
|
for (int x = 1; x != numOfPages +1; x++) {
|
|
|
|
logger.debug("running loop");
|
|
|
|
String link = base_link + "?page=" + Integer.toString(x);
|
|
|
|
pages.add(link);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
Pattern pa = Pattern.compile("\\/index\\.php\\/search\\?q=[a-zA-Z0-9_\\-\\:]*\\&page=(\\d+)");
|
|
|
|
Matcher ma = pa.matcher(nextPageUrl);
|
|
|
|
if (ma.matches()) {
|
|
|
|
logger.debug("Getting pages from a search");
|
|
|
|
String base_link = ma.group(0).replaceAll("page=\\d+", "");
|
|
|
|
logger.debug("base_link is " + base_link);
|
|
|
|
int numOfPages = Integer.parseInt(ma.group(1));
|
|
|
|
for (int x = 1; x != numOfPages +1; x++) {
|
|
|
|
logger.debug("running loop");
|
|
|
|
String link = base_link + "page=" + Integer.toString(x);
|
|
|
|
logger.debug(link);
|
|
|
|
pages.add(link);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return pages;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public List<String> getURLsFromPage(Document doc) {
|
|
|
|
List<String> result = new ArrayList<String>();
|
|
|
|
// Checks if this is a comic page or a page of albums
|
|
|
|
// If true the page is a page of albums
|
|
|
|
if (doc.toString().contains("class=\"g-item g-album\"")) {
|
|
|
|
// This if checks that there is more than 1 page
|
|
|
|
if (doc.select("a.ui-icon-right").last().attr("href") != "") {
|
|
|
|
// There is more than one page so we call getListOfPages
|
|
|
|
List<String> pagesToRip = getListOfPages(doc);
|
|
|
|
logger.debug("Pages to rip = " + pagesToRip);
|
|
|
|
for (String url : pagesToRip) {
|
|
|
|
logger.debug("Getting albums from " + url);
|
|
|
|
result = getAlbumsFromPage(url);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
logger.debug("There is only one page on this page of albums");
|
|
|
|
// There is only 1 page so we call getAlbumsFromPage and pass it the page url
|
|
|
|
result = getAlbumsFromPage(doc.select("div.g-description > a").attr("href"));
|
|
|
|
}
|
|
|
|
return result;
|
2017-02-21 23:14:59 +01:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
for (Element el : doc.select("img")) {
|
|
|
|
String imageSource = el.attr("src");
|
|
|
|
// This bool is here so we don't try and download the site logo
|
2017-10-15 17:56:50 +02:00
|
|
|
if (!imageSource.startsWith("http://") && !imageSource.startsWith("https://")) {
|
2017-02-21 23:14:59 +01:00
|
|
|
// We replace thumbs with resizes so we can the full sized images
|
|
|
|
imageSource = imageSource.replace("thumbs", "resizes");
|
|
|
|
result.add("http://myhentaicomics.com/" + imageSource);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void downloadURL(URL url, int index) {
|
2017-05-09 23:11:17 +02:00
|
|
|
addURLToDownload(url, getPrefix(index));
|
2017-02-21 23:14:59 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
}
|