parent
d4d6e4f57b
commit
bd70b6f4dd
2
pom.xml
2
pom.xml
@ -4,7 +4,7 @@
|
||||
<groupId>com.rarchives.ripme</groupId>
|
||||
<artifactId>ripme</artifactId>
|
||||
<packaging>jar</packaging>
|
||||
<version>1.2.6</version>
|
||||
<version>1.2.7</version>
|
||||
<name>ripme</name>
|
||||
<url>http://rip.rarchives.com</url>
|
||||
<properties>
|
||||
|
@ -185,24 +185,29 @@ public class FivehundredpxRipper extends AbstractJSONRipper {
|
||||
List<String> imageURLs = new ArrayList<String>();
|
||||
JSONArray photos = json.getJSONArray("photos");
|
||||
for (int i = 0; i < photos.length(); i++) {
|
||||
if (super.isStopped()) {
|
||||
break;
|
||||
}
|
||||
JSONObject photo = photos.getJSONObject(i);
|
||||
String imageURL = null;
|
||||
String rawUrl = "https://500px.com" + photo.getString("url");
|
||||
Document doc;
|
||||
Elements metas = new Elements();
|
||||
Elements images = new Elements();
|
||||
try {
|
||||
logger.debug("Loading " + rawUrl);
|
||||
super.retrievingSource(rawUrl);
|
||||
doc = Http.url(rawUrl).get();
|
||||
metas = doc.select("meta[property=\"twitter:image:src\"]");
|
||||
images = doc.select("div#preload img");
|
||||
}
|
||||
catch (IOException e) {
|
||||
logger.error("Error fetching full-size image from " + rawUrl, e);
|
||||
}
|
||||
if (metas.size() > 0) {
|
||||
imageURL = metas.first().attr("content");
|
||||
if (images.size() > 0) {
|
||||
imageURL = images.first().attr("src");
|
||||
logger.debug("Found full-size non-watermarked image: " + imageURL);
|
||||
}
|
||||
else {
|
||||
logger.debug("Falling back to image_url from API response");
|
||||
imageURL = photo.getString("image_url");
|
||||
imageURL = imageURL.replaceAll("/4\\.", "/5.");
|
||||
// See if there's larger images
|
||||
|
@ -21,7 +21,7 @@ import com.rarchives.ripme.utils.Utils;
|
||||
public class UpdateUtils {
|
||||
|
||||
private static final Logger logger = Logger.getLogger(UpdateUtils.class);
|
||||
private static final String DEFAULT_VERSION = "1.2.6";
|
||||
private static final String DEFAULT_VERSION = "1.2.7";
|
||||
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";
|
||||
|
Loading…
Reference in New Issue
Block a user