-
Notifications
You must be signed in to change notification settings - Fork 627
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
110 additions
and
2 deletions.
There are no files selected for viewing
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
86 changes: 86 additions & 0 deletions
86
src/main/java/com/rarchives/ripme/ripper/rippers/FuskatorRipper.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,86 @@ | ||
package com.rarchives.ripme.ripper.rippers; | ||
|
||
import java.io.IOException; | ||
import java.io.UnsupportedEncodingException; | ||
import java.net.MalformedURLException; | ||
import java.net.URL; | ||
import java.net.URLDecoder; | ||
import java.util.ArrayList; | ||
import java.util.List; | ||
import java.util.regex.Matcher; | ||
import java.util.regex.Pattern; | ||
|
||
import org.jsoup.nodes.Document; | ||
|
||
import com.rarchives.ripme.ripper.AbstractHTMLRipper; | ||
import com.rarchives.ripme.utils.Http; | ||
import com.rarchives.ripme.utils.Utils; | ||
|
||
public class FuskatorRipper extends AbstractHTMLRipper { | ||
|
||
public FuskatorRipper(URL url) throws IOException { | ||
super(url); | ||
} | ||
|
||
@Override | ||
public String getHost() { | ||
return "fuskator"; | ||
} | ||
@Override | ||
public String getDomain() { | ||
return "fuskator.com"; | ||
} | ||
|
||
@Override | ||
public URL sanitizeURL(URL url) throws MalformedURLException { | ||
String u = url.toExternalForm(); | ||
if (u.contains("/thumbs/")) { | ||
u = u.replace("/thumbs/", "/full/"); | ||
} | ||
return new URL(u); | ||
} | ||
|
||
@Override | ||
public String getGID(URL url) throws MalformedURLException { | ||
Pattern p = Pattern.compile("^.*fuskator.com/full/([a-zA-Z0-9\\-]+).*$"); | ||
Matcher m = p.matcher(url.toExternalForm()); | ||
if (m.matches()) { | ||
return m.group(1); | ||
} | ||
throw new MalformedURLException( | ||
"Expected fuskator.com gallery formats: " | ||
+ "fuskator.com/full/id/..." | ||
+ " Got: " + url); | ||
} | ||
|
||
@Override | ||
public Document getFirstPage() throws IOException { | ||
return Http.url(url).get(); | ||
} | ||
|
||
@Override | ||
public List<String> getURLsFromPage(Document doc) { | ||
List<String> imageURLs = new ArrayList<String>(); | ||
String html = doc.html(); | ||
// Get "baseUrl" | ||
String baseUrl = Utils.between(html, "var baseUrl = unescape('", "'").get(0); | ||
try { | ||
baseUrl = URLDecoder.decode(baseUrl, "UTF-8"); | ||
} catch (UnsupportedEncodingException e) { | ||
logger.warn("Error while decoding " + baseUrl, e); | ||
} | ||
if (baseUrl.startsWith("//")) { | ||
baseUrl = "http:" + baseUrl; | ||
} | ||
// Iterate over images | ||
for (String filename : Utils.between(html, ".src=baseUrl+'", "'")) { | ||
imageURLs.add(baseUrl + filename); | ||
} | ||
return imageURLs; | ||
} | ||
|
||
@Override | ||
public void downloadURL(URL url, int index) { | ||
addURLToDownload(url, getPrefix(index)); | ||
} | ||
} |
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
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