mirror of
https://github.com/RipMeApp/ripme.git
synced 2025-08-09 15:26:53 +02:00
reimplement
This commit is contained in:
@@ -10,6 +10,7 @@ import java.util.regex.Pattern;
|
|||||||
|
|
||||||
import org.jsoup.nodes.Document;
|
import org.jsoup.nodes.Document;
|
||||||
import org.jsoup.nodes.Element;
|
import org.jsoup.nodes.Element;
|
||||||
|
import org.jsoup.select.Elements;
|
||||||
|
|
||||||
import com.rarchives.ripme.ripper.AbstractHTMLRipper;
|
import com.rarchives.ripme.ripper.AbstractHTMLRipper;
|
||||||
import com.rarchives.ripme.utils.Http;
|
import com.rarchives.ripme.utils.Http;
|
||||||
@@ -31,7 +32,7 @@ public class CfakeRipper extends AbstractHTMLRipper {
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
public String getGID(URL url) throws MalformedURLException {
|
public String getGID(URL url) throws MalformedURLException {
|
||||||
Pattern p = Pattern.compile("https?://cfake\\.com/(?:picture|images/celebrity)/([a-zA-Z1-9_-]*)/\\d+/?$");
|
Pattern p = Pattern.compile("https?://cfake\\.com/images/celebrity/([a-zA-Z1-9_-]*)/\\d+/?$");
|
||||||
Matcher m = p.matcher(url.toExternalForm());
|
Matcher m = p.matcher(url.toExternalForm());
|
||||||
if (m.matches()) {
|
if (m.matches()) {
|
||||||
return m.group(1);
|
return m.group(1);
|
||||||
@@ -49,13 +50,26 @@ public class CfakeRipper extends AbstractHTMLRipper {
|
|||||||
@Override
|
@Override
|
||||||
public Document getNextPage(Document doc) throws IOException {
|
public Document getNextPage(Document doc) throws IOException {
|
||||||
// We use comic-nav-next to the find the next page
|
// We use comic-nav-next to the find the next page
|
||||||
Element elem = doc.select("td > div.next > a").first();
|
Element elem = doc.select("div#wrapper_path div#content_path div#num_page").last();
|
||||||
if (elem == null) {
|
if (elem == null) {
|
||||||
throw new IOException("No more pages");
|
throw new IOException("No more pages (cannot find nav)");
|
||||||
}
|
}
|
||||||
String nextPage = elem.attr("href");
|
|
||||||
// Some times this returns a empty string
|
Element nextAnchor = elem.select("a").first();
|
||||||
// This for stops that
|
if (nextAnchor == null) {
|
||||||
|
throw new IOException("No more pages (cannot find anchor)");
|
||||||
|
}
|
||||||
|
|
||||||
|
Elements nextSpans = nextAnchor.select("span");
|
||||||
|
if (nextSpans.isEmpty()) {
|
||||||
|
// This is the expected case that we're done iterating.
|
||||||
|
throw new IOException("No more pages (last page)");
|
||||||
|
}
|
||||||
|
|
||||||
|
// Use the nextAnchor (parent of the span) for the URL
|
||||||
|
String nextPage = nextAnchor.attr("href");
|
||||||
|
|
||||||
|
// Sometimes this returns an empty string; this stops that
|
||||||
if (nextPage.equals("")) {
|
if (nextPage.equals("")) {
|
||||||
return null;
|
return null;
|
||||||
} else {
|
} else {
|
||||||
@@ -66,17 +80,15 @@ public class CfakeRipper extends AbstractHTMLRipper {
|
|||||||
@Override
|
@Override
|
||||||
public List<String> getURLsFromPage(Document doc) {
|
public List<String> getURLsFromPage(Document doc) {
|
||||||
List<String> result = new ArrayList<>();
|
List<String> result = new ArrayList<>();
|
||||||
for (Element el : doc.select("table.display > tbody > tr > td > table > tbody > tr > td > a")) {
|
for (Element el : doc.select("div#media_content .responsive .gallery > a img")) {
|
||||||
if (el.attr("href").contains("upload")) {
|
// Convert found src value e.g. /medias/thumbs/2025/17358722979850276d_cfake.jpg
|
||||||
return result;
|
// to photo src value e.g.
|
||||||
} else {
|
// https://cfake.com/medias/photos/2025/17358722979850276d_cfake.jpg
|
||||||
String imageSource = el.select("img").attr("src");
|
String imageSource = el.attr("src");
|
||||||
// We remove the .md from images so we download the full size image
|
imageSource = imageSource.replace("thumbs", "photos");
|
||||||
// not the thumbnail ones
|
result.add("http://cfake.com" + imageSource);
|
||||||
imageSource = imageSource.replace("thumbs", "photos");
|
|
||||||
result.add("http://cfake.com" + imageSource);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user