Skip to content

Commit

Permalink
1.0.50 - Smutty.com ripper
Browse files Browse the repository at this point in the history
  • Loading branch information
4pr0n committed Jun 1, 2014
1 parent cf7fbb9 commit e9bee91
Show file tree
Hide file tree
Showing 4 changed files with 115 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.49</version>
<version>1.0.50</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 @@ -27,7 +27,6 @@ public ImagestashRipper(URL url) throws IOException {
}

public boolean canRip(URL url) {
System.err.println(url.getHost() +"/"+DOMAIN);
return url.getHost().equals(DOMAIN);
}

Expand Down
113 changes: 113 additions & 0 deletions src/main/java/com/rarchives/ripme/ripper/rippers/SmuttyRipper.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,113 @@
package com.rarchives.ripme.ripper.rippers;

import java.io.IOException;
import java.net.MalformedURLException;
import java.net.URL;
import java.util.regex.Matcher;
import java.util.regex.Pattern;

import org.apache.log4j.Logger;
import org.jsoup.Jsoup;
import org.jsoup.nodes.Document;
import org.jsoup.nodes.Element;

import com.rarchives.ripme.ripper.AlbumRipper;
import com.rarchives.ripme.ui.RipStatusMessage.STATUS;

public class SmuttyRipper extends AlbumRipper {

private static final String DOMAIN = "smutty.com",
HOST = "smutty";
private static final Logger logger = Logger.getLogger(SmuttyRipper.class);

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

@Override
public boolean canRip(URL url) {
return (url.getHost().endsWith(DOMAIN));
}

@Override
public URL sanitizeURL(URL url) throws MalformedURLException {
return url;
}

@Override
public void rip() throws IOException {
int page = 0;
String url, tag = getGID(this.url);
boolean hasNextPage = true;
while (hasNextPage) {
page++;
url = "http://smutty.com/h/" + tag + "/?q=%23" + tag + "&page=" + page + "&sort=date&lazy=1";
this.sendUpdate(STATUS.LOADING_RESOURCE, url);
logger.info(" Retrieving " + url);
Document doc;
try {
doc = Jsoup.connect(url)
.userAgent(USER_AGENT)
.ignoreContentType(true)
.get();
} catch (IOException e) {
if (e.toString().contains("Status=404")) {
logger.info("No more pages to load");
} else {
logger.warn("Exception while loading " + url, e);
}
break;
}
for (Element image : doc.select("a.l > img")) {
String imageUrl = image.attr("src");

// Construct direct link to image based on thumbnail
StringBuilder sb = new StringBuilder();
String[] fields = imageUrl.split("/");
for (int i = 0; i < fields.length; i++) {
if (i == fields.length - 2 && fields[i].equals("m")) {
fields[i] = "b";
}
sb.append(fields[i]);
if (i < fields.length - 1) {
sb.append("/");
}
}
imageUrl = sb.toString();
addURLToDownload(new URL(imageUrl));
}
if (doc.select("#next").size() == 0) {
break; // No more pages
}
// Wait before loading next page
try {
Thread.sleep(1000);
} catch (InterruptedException e) {
logger.error("[!] Interrupted while waiting to load next album:", e);
break;
}
}
waitForThreads();
}

@Override
public String getHost() {
return HOST;
}

@Override
public String getGID(URL url) throws MalformedURLException {
Pattern p = Pattern.compile("^https?://smutty\\.com/h/([a-zA-Z0-9\\-_]+).*$");
Matcher m = p.matcher(url.toExternalForm());
if (m.matches()) {
return m.group(1);
}
p = Pattern.compile("^https?://[wm.]*smutty\\.com/search/\\?q=([a-zA-Z0-9\\-_%]+).*$");
m = p.matcher(url.toExternalForm());
if (m.matches()) {
return m.group(1).replace("%23", "");
}
throw new MalformedURLException("Expected tag in URL (smutty.com/h/tag and not " + url);
}

}
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.49";
private static final String DEFAULT_VERSION = "1.0.50";
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 e9bee91

Please sign in to comment.