Added ripper for Theyiffgallery
This commit is contained in:
parent
c94de79c46
commit
a6b3f50b73
@ -0,0 +1,75 @@
|
||||
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.List;
|
||||
import java.util.regex.Matcher;
|
||||
import java.util.regex.Pattern;
|
||||
|
||||
import org.jsoup.nodes.Document;
|
||||
import org.jsoup.nodes.Element;
|
||||
|
||||
import com.rarchives.ripme.ripper.AbstractHTMLRipper;
|
||||
import com.rarchives.ripme.utils.Http;
|
||||
|
||||
public class TheyiffgalleryRipper extends AbstractHTMLRipper {
|
||||
|
||||
public TheyiffgalleryRipper(URL url) throws IOException {
|
||||
super(url);
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getHost() {
|
||||
return "theyiffgallery";
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getDomain() {
|
||||
return "theyiffgallery.com";
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getGID(URL url) throws MalformedURLException {
|
||||
Pattern p = Pattern.compile("https?://theyiffgallery.com/index\\?/category/(\\d+)");
|
||||
Matcher m = p.matcher(url.toExternalForm());
|
||||
if (m.matches()) {
|
||||
return m.group(1);
|
||||
}
|
||||
throw new MalformedURLException("Expected theyiffgallery URL format: " +
|
||||
"theyiffgallery.com/index?/category/#### - 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 {
|
||||
String nextPage = doc.select("span.navPrevNext > a").attr("href");
|
||||
if (nextPage != null && !nextPage.isEmpty() && nextPage.contains("start-")) {
|
||||
return Http.url("https://theyiffgallery.com/" + nextPage).get();
|
||||
}
|
||||
throw new IOException("No more pages");
|
||||
}
|
||||
|
||||
@Override
|
||||
public List<String> getURLsFromPage(Document doc) {
|
||||
List<String> result = new ArrayList<>();
|
||||
for (Element el : doc.select("ul.thumbnails > li.gdthumb")) {
|
||||
String imageSource = el.select("a > img").attr("src");
|
||||
imageSource = imageSource.replaceAll("_data/i", "");
|
||||
imageSource = imageSource.replaceAll("-\\w\\w_\\w\\d+x\\d+", "");
|
||||
result.add("https://theyiffgallery.com" + imageSource);
|
||||
}
|
||||
return result;
|
||||
}
|
||||
|
||||
@Override
|
||||
public void downloadURL(URL url, int index) {
|
||||
addURLToDownload(url, getPrefix(index));
|
||||
}
|
||||
}
|
@ -28,6 +28,7 @@ import com.rarchives.ripme.ripper.rippers.VidbleRipper;
|
||||
import com.rarchives.ripme.ripper.rippers.VineRipper;
|
||||
import com.rarchives.ripme.ripper.rippers.VkRipper;
|
||||
import com.rarchives.ripme.ripper.rippers.XhamsterRipper;
|
||||
import com.rarchives.ripme.ripper.rippers.TheyiffgalleryRipper;
|
||||
|
||||
/**
|
||||
* Simple test cases for various rippers.
|
||||
@ -214,6 +215,11 @@ public class BasicRippersTest extends RippersTest {
|
||||
testRipper(ripper);
|
||||
}
|
||||
|
||||
public void testTheyiffgallery() throws IOException {
|
||||
AbstractRipper ripper = new TheyiffgalleryRipper(new URL("https://theyiffgallery.com/index?/category/4303"));
|
||||
testRipper(ripper);
|
||||
}
|
||||
|
||||
/*
|
||||
public void testSankakuChanRip() throws IOException {
|
||||
AbstractRipper ripper = new SankakuComplexRipper(new URL("https://chan.sankakucomplex.com/?tags=cleavage"));
|
||||
|
Loading…
Reference in New Issue
Block a user