Skip to content

Commit

Permalink
1.0.78 - Added BCFakes ripper #8
Browse files Browse the repository at this point in the history
  • Loading branch information
4pr0n committed Jul 20, 2014
1 parent 1057923 commit aa296ef
Show file tree
Hide file tree
Showing 4 changed files with 86 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<groupId>com.rarchives.ripme</groupId>
<artifactId>ripme</artifactId>
<packaging>jar</packaging>
<version>1.0.77</version>
<version>1.0.78</version>
<name>ripme</name>
<url>http://rip.rarchives.com</url>
<properties>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ public void rip() throws IOException {
List<String> imageURLs = getURLsFromPage(doc);

if (imageURLs.size() == 0) {
throw new IOException("No images found at " + this.url);
throw new IOException("No images found at " + doc.location());
}

for (String imageURL : imageURLs) {
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,83 @@
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 org.jsoup.select.Elements;

import com.rarchives.ripme.ripper.AbstractHTMLRipper;
import com.rarchives.ripme.utils.Http;

public class BcfakesRipper extends AbstractHTMLRipper {

public BcfakesRipper(URL url) throws IOException {
super(url);
}

@Override
public String getHost() {
return "bcfakes";
}
@Override
public String getDomain() {
return "bcfakes.com";
}

@Override
public String getGID(URL url) throws MalformedURLException {
Pattern p;
Matcher m;

p = Pattern.compile("^https?://[wm.]*bcfakes.com/celebritylist/([a-zA-Z0-9\\-_]+).*$");
m = p.matcher(url.toExternalForm());
if (m.matches()) {
return m.group(1);
}

throw new MalformedURLException(
"Expected bcfakes gallery format: "
+ "http://www.bcfakes.com/celebritylist/name"
+ " Got: " + url);
}

@Override
public Document getFirstPage() throws IOException {
return Http.url(url).get();
}

@Override
public Document getNextPage(Document doc) throws IOException {
// Find next page
Elements hrefs = doc.select("a.next");
if (hrefs.size() == 0) {
throw new IOException("No more pages");
}
String nextUrl = "http://www.bcfakes.com" + hrefs.first().attr("href");
sleep(500);
return Http.url(nextUrl).get();
}

@Override
public List<String> getURLsFromPage(Document doc) {
List<String> imageURLs = new ArrayList<String>();
for (Element thumb : doc.select("div.ngg-gallery-thumbnail > a > img")) {
String imageURL = thumb.attr("src");
imageURL = imageURL.replace("thumbs/thumbs_", "");
imageURLs.add(imageURL);
}
return imageURLs;
}

@Override
public void downloadURL(URL url, int index) {
addURLToDownload(url, getPrefix(index));
}

}
2 changes: 1 addition & 1 deletion src/main/java/com/rarchives/ripme/ui/UpdateUtils.java
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
public class UpdateUtils {

private static final Logger logger = Logger.getLogger(UpdateUtils.class);
private static final String DEFAULT_VERSION = "1.0.77";
private static final String DEFAULT_VERSION = "1.0.78";
private static final String updateJsonURL = "http://rarchives.com/ripme.json";
private static final String updateJarURL = "http://rarchives.com/ripme.jar";
private static final String mainFileName = "ripme.jar";
Expand Down

0 comments on commit aa296ef

Please sign in to comment.