Handle statigr.am URLs (for re-ripping)
This commit is contained in:
parent
749d0dfb87
commit
9ccbc8ac09
@ -27,7 +27,8 @@ public class InstagramRipper extends AlbumRipper {
|
||||
|
||||
@Override
|
||||
public boolean canRip(URL url) {
|
||||
return url.getHost().endsWith(DOMAIN);
|
||||
return (url.getHost().endsWith(DOMAIN)
|
||||
|| url.getHost().endsWith("statigr.am"));
|
||||
}
|
||||
|
||||
@Override
|
||||
@ -45,11 +46,16 @@ public class InstagramRipper extends AlbumRipper {
|
||||
}
|
||||
p = Pattern.compile("^.*instagram.com/([a-zA-Z0-9\\-_]{3,}).*$");
|
||||
m = p.matcher(url.toExternalForm());
|
||||
if (!m.matches()) {
|
||||
throw new MalformedURLException("Expected username in URL (instagram.com/username and not " + url);
|
||||
}
|
||||
if (m.matches()) {
|
||||
return new URL("http://statigr.am/" + m.group(1));
|
||||
}
|
||||
p = Pattern.compile("^.*statigr.am/([a-zA-Z0-9\\-_]{3,}).*$");
|
||||
m = p.matcher(url.toExternalForm());
|
||||
if (m.matches()) {
|
||||
return new URL("http://statigr.am/" + m.group(1));
|
||||
}
|
||||
throw new MalformedURLException("Expected username in URL (instagram.com/username and not " + url);
|
||||
}
|
||||
|
||||
private URL getUserPageFromImage(URL url) throws IOException {
|
||||
Document doc = Jsoup.connect(url.toExternalForm()).get();
|
||||
|
Loading…
Reference in New Issue
Block a user