-
Notifications
You must be signed in to change notification settings - Fork 631
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #714 from cyian-1756/picstatioRipper
Picstatio ripper
- Loading branch information
Showing
2 changed files
with
102 additions
and
0 deletions.
There are no files selected for viewing
83 changes: 83 additions & 0 deletions
83
src/main/java/com/rarchives/ripme/ripper/rippers/PicstatioRipper.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 com.rarchives.ripme.ripper.AbstractHTMLRipper; | ||
import com.rarchives.ripme.utils.Http; | ||
|
||
public class PicstatioRipper extends AbstractHTMLRipper { | ||
|
||
public PicstatioRipper(URL url) throws IOException { | ||
super(url); | ||
} | ||
|
||
private String getFullSizedImageFromURL(String fileName) { | ||
try { | ||
LOGGER.info("https://www.picstatio.com/wallpaper/" + fileName + "/download"); | ||
return Http.url("https://www.picstatio.com/wallpaper/" + fileName + "/download").get().select("p.text-center > span > a").attr("href"); | ||
} catch (IOException e) { | ||
e.printStackTrace(); | ||
return null; | ||
} | ||
} | ||
|
||
@Override | ||
public String getHost() { | ||
return "picstatio"; | ||
} | ||
|
||
@Override | ||
public String getDomain() { | ||
return "picstatio.com"; | ||
} | ||
|
||
@Override | ||
public String getGID(URL url) throws MalformedURLException { | ||
Pattern p = Pattern.compile("https?://www.picstatio.com/([a-zA-Z1-9_-]*)/?$"); | ||
Matcher m = p.matcher(url.toExternalForm()); | ||
if (m.matches()) { | ||
return m.group(1); | ||
} | ||
throw new MalformedURLException("Expected picstatio URL format: " + | ||
"www.picstatio.com//ID - 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 { | ||
if (doc.select("a.next_page") != null) { | ||
return Http.url("https://www.picstatio.com" + doc.select("a.next_page").attr("href")).get(); | ||
} | ||
throw new IOException("No more pages"); | ||
} | ||
|
||
@Override | ||
public List<String> getURLsFromPage(Document doc) { | ||
List<String> result = new ArrayList<>(); | ||
for (Element e : doc.select("img.img")) { | ||
String imageName = e.parent().attr("href"); | ||
LOGGER.info(getFullSizedImageFromURL(imageName.split("/")[2])); | ||
result.add(getFullSizedImageFromURL(imageName.split("/")[2])); | ||
} | ||
return result; | ||
} | ||
|
||
@Override | ||
public void downloadURL(URL url, int index) { | ||
addURLToDownload(url, getPrefix(index)); | ||
} | ||
} |
19 changes: 19 additions & 0 deletions
19
src/test/java/com/rarchives/ripme/tst/ripper/rippers/PicstatioRipperTest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
package com.rarchives.ripme.tst.ripper.rippers; | ||
|
||
import java.io.IOException; | ||
import java.net.URL; | ||
|
||
import com.rarchives.ripme.ripper.rippers.PicstatioRipper; | ||
|
||
public class PicstatioRipperTest extends RippersTest { | ||
|
||
public void testRip() throws IOException { | ||
PicstatioRipper ripper = new PicstatioRipper(new URL("https://www.picstatio.com/aerial-view-wallpapers")); | ||
testRipper(ripper); | ||
} | ||
|
||
public void testGID() throws IOException { | ||
PicstatioRipper ripper = new PicstatioRipper(new URL("https://www.picstatio.com/aerial-view-wallpapers")); | ||
assertEquals("aerial-view-wallpapers", ripper.getGID(new URL("https://www.picstatio.com/aerial-view-wallpapers"))); | ||
} | ||
} |