113 lines
3.9 KiB
Java
113 lines
3.9 KiB
Java
package com.rarchives.ripme.ripper.rippers;
|
|
|
|
import java.io.IOException;
|
|
import java.net.MalformedURLException;
|
|
import java.net.URL;
|
|
import java.net.URLEncoder;
|
|
import java.util.ArrayList;
|
|
import java.util.HashMap;
|
|
import java.util.List;
|
|
import java.util.Map;
|
|
import java.util.regex.Matcher;
|
|
import java.util.regex.Pattern;
|
|
|
|
import com.rarchives.ripme.ui.RipStatusMessage;
|
|
import org.json.JSONArray;
|
|
import org.json.JSONObject;
|
|
import org.jsoup.Connection;
|
|
import org.jsoup.Jsoup;
|
|
import org.jsoup.nodes.Document;
|
|
|
|
|
|
import com.rarchives.ripme.ripper.AbstractHTMLRipper;
|
|
import com.rarchives.ripme.utils.Http;
|
|
|
|
public class TsuminoRipper extends AbstractHTMLRipper {
|
|
private Map<String,String> cookies = new HashMap<>();
|
|
|
|
public TsuminoRipper(URL url) throws IOException {
|
|
super(url);
|
|
}
|
|
|
|
private JSONArray getPageUrls() {
|
|
String postURL = "http://www.tsumino.com/Read/Load";
|
|
try {
|
|
// This sessionId will expire and need to be replaced
|
|
cookies.put("ASP.NET_SessionId","c4rbzccf0dvy3e0cloolmlkq");
|
|
Document doc = Jsoup.connect(postURL).data("q", getAlbumID()).userAgent(USER_AGENT).cookies(cookies).referrer("http://www.tsumino.com/Read/View/" + getAlbumID()).post();
|
|
String jsonInfo = doc.html().replaceAll("<html>","").replaceAll("<head></head>", "").replaceAll("<body>", "").replaceAll("</body>", "")
|
|
.replaceAll("</html>", "").replaceAll("\n", "");
|
|
JSONObject json = new JSONObject(jsonInfo);
|
|
return json.getJSONArray("reader_page_urls");
|
|
} catch (IOException e) {
|
|
LOGGER.info(e);
|
|
sendUpdate(RipStatusMessage.STATUS.DOWNLOAD_ERRORED, "Unable to download album, please compete the captcha at http://www.tsumino.com/Read/Auth/"
|
|
+ getAlbumID() + " and try again");
|
|
return null;
|
|
}
|
|
}
|
|
|
|
@Override
|
|
public String getHost() {
|
|
return "tsumino";
|
|
}
|
|
|
|
@Override
|
|
public String getDomain() {
|
|
return "tsumino.com";
|
|
}
|
|
|
|
@Override
|
|
public String getGID(URL url) throws MalformedURLException {
|
|
Pattern p = Pattern.compile("https?://www.tsumino.com/Book/Info/([0-9]+)/([a-zA-Z0-9_-]*)/?");
|
|
Matcher m = p.matcher(url.toExternalForm());
|
|
if (m.matches()) {
|
|
return m.group(1) + "_" + m.group(2);
|
|
}
|
|
p = Pattern.compile("https?://www.tsumino.com/Book/Info/([0-9]+)/?");
|
|
m = p.matcher(url.toExternalForm());
|
|
if (m.matches()) {
|
|
return m.group(1);
|
|
}
|
|
throw new MalformedURLException("Expected tsumino URL format: " +
|
|
"tsumino.com/Book/Info/ID/TITLE - got " + url + " instead");
|
|
}
|
|
|
|
private String getAlbumID() {
|
|
Pattern p = Pattern.compile("https?://www.tsumino.com/Book/Info/([0-9]+)/\\S*");
|
|
Matcher m = p.matcher(url.toExternalForm());
|
|
if (m.matches()) {
|
|
return m.group(1);
|
|
}
|
|
return null;
|
|
}
|
|
|
|
@Override
|
|
public Document getFirstPage() throws IOException {
|
|
Connection.Response resp = Http.url(url).response();
|
|
cookies.putAll(resp.cookies());
|
|
return resp.parse();
|
|
}
|
|
|
|
@Override
|
|
public List<String> getURLsFromPage(Document doc) {
|
|
JSONArray imageIds = getPageUrls();
|
|
List<String> result = new ArrayList<>();
|
|
for (int i = 0; i < imageIds.length(); i++) {
|
|
result.add("http://www.tsumino.com/Image/Object?name=" + URLEncoder.encode(imageIds.getString(i)));
|
|
}
|
|
|
|
return result;
|
|
}
|
|
|
|
@Override
|
|
public void downloadURL(URL url, int index) {
|
|
sleep(1000);
|
|
/*
|
|
There is no way to tell if an image returned from tsumino.com is a png to jpg. The content-type header is always
|
|
"image/jpeg" even when the image is a png. The file ext is not included in the url.
|
|
*/
|
|
addURLToDownload(url, getPrefix(index), "", null, null, null, null, true);
|
|
}
|
|
}
|