Skip to content

Commit

Permalink
1.0.23 - Added teenplanet album ripper #8
Browse files Browse the repository at this point in the history
  • Loading branch information
4pr0n committed Apr 21, 2014
1 parent 20b3974 commit acc7f87
Show file tree
Hide file tree
Showing 3 changed files with 96 additions and 2 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.22</version>
<version>1.0.23</version>
<name>ripme</name>
<url>http://rip.rarchives.com</url>
<properties>
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,94 @@
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 org.jsoup.select.Elements;

import com.rarchives.ripme.ripper.AlbumRipper;

public class TeenplanetRipper extends AlbumRipper {

private static final String DOMAIN = "teenplanet.org",
HOST = "teenplanet";
private static final Logger logger = Logger.getLogger(TeenplanetRipper.class);

private Document albumDoc = null;

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

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

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

public String getAlbumTitle(URL url) throws MalformedURLException {
try {
// Attempt to use album title as GID
if (albumDoc == null) {
albumDoc = Jsoup.connect(url.toExternalForm()).get();
}
Elements elems = albumDoc.select("div.header > h2");
return elems.get(0).text();
} catch (Exception e) {
// Fall back to default album naming convention
e.printStackTrace();
}
return super.getAlbumTitle(url);
}

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

p = Pattern.compile("^.*teenplanet.org/galleries/([a-zA-Z0-9\\-]+).html$");
m = p.matcher(url.toExternalForm());
if (m.matches()) {
return m.group(1);
}

throw new MalformedURLException(
"Expected teenplanet.org gallery format: "
+ "teenplanet.org/galleries/....html"
+ " Got: " + url);
}

@Override
public void rip() throws IOException {
int index = 0;
logger.info(" Retrieving " + this.url.toExternalForm());
if (albumDoc == null) {
albumDoc = Jsoup.connect(this.url.toExternalForm()).get();
}
for (Element thumb : albumDoc.select("#galleryImages > a > img")) {
if (!thumb.hasAttr("src")) {
continue;
}
String image = thumb.attr("src");
image = image.replace(
"/thumbs/",
"/");
index += 1;
addURLToDownload(new URL(image), String.format("%03d_", index));
}
waitForThreads();
}

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

}
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 @@ -19,7 +19,7 @@
public class UpdateUtils {

private static final Logger logger = Logger.getLogger(UpdateUtils.class);
private static final String DEFAULT_VERSION = "1.0.22";
private static final String DEFAULT_VERSION = "1.0.23";
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 acc7f87

Please sign in to comment.