forked from RipMeApp/ripme
-
Notifications
You must be signed in to change notification settings - Fork 0
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 RipMeApp#1224 from cyian-1756/myreadingmanga
Added ripper for Myreadingmanga.info
- Loading branch information
Showing
2 changed files
with
78 additions
and
0 deletions.
There are no files selected for viewing
65 changes: 65 additions & 0 deletions
65
src/main/java/com/rarchives/ripme/ripper/rippers/MyreadingmangaRipper.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,65 @@ | ||
|
||
package com.rarchives.ripme.ripper.rippers; | ||
|
||
import com.rarchives.ripme.ripper.AbstractHTMLRipper; | ||
import com.rarchives.ripme.utils.Http; | ||
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; | ||
|
||
public class MyreadingmangaRipper extends AbstractHTMLRipper { | ||
|
||
public MyreadingmangaRipper(URL url) throws IOException { | ||
super(url); | ||
} | ||
|
||
@Override | ||
public String getHost() { | ||
return "myreadingmanga"; | ||
} | ||
|
||
@Override | ||
public String getDomain() { | ||
return "myreadingmanga.info"; | ||
} | ||
|
||
@Override | ||
public String getGID(URL url) throws MalformedURLException { | ||
Pattern p = Pattern.compile("https://myreadingmanga.info/([a-zA-Z_\\-0-9]+)/?$"); | ||
Matcher m = p.matcher(url.toExternalForm()); | ||
if (m.matches()) { | ||
return m.group(1); | ||
} | ||
|
||
throw new MalformedURLException("Expected myreadingmanga.info URL format: " | ||
+ "myreadingmanga.info/title - got " + url + " instead"); | ||
} | ||
|
||
@Override | ||
public Document getFirstPage() throws IOException { | ||
// "url" is an instance field of the superclass | ||
return Http.url(url).get(); | ||
} | ||
|
||
@Override | ||
public List<String> getURLsFromPage(Document doc) { | ||
List<String> result = new ArrayList<>(); | ||
for (Element el : doc.select("div.separator > img")) { | ||
String imageSource = el.attr("data-lazy-src"); | ||
result.add(imageSource); | ||
} | ||
return result; | ||
} | ||
|
||
@Override | ||
public void downloadURL(URL url, int index) { | ||
addURLToDownload(url, getPrefix(index)); | ||
} | ||
|
||
} |
13 changes: 13 additions & 0 deletions
13
src/test/java/com/rarchives/ripme/tst/ripper/rippers/MyreadingmangaRipperTest.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,13 @@ | ||
package com.rarchives.ripme.tst.ripper.rippers; | ||
|
||
import java.io.IOException; | ||
import java.net.URL; | ||
import com.rarchives.ripme.ripper.rippers.MyreadingmangaRipper; | ||
|
||
|
||
public class MyreadingmangaRipperTest extends RippersTest { | ||
public void testRip() throws IOException { | ||
MyreadingmangaRipper ripper = new MyreadingmangaRipper(new URL("https://myreadingmanga.info/zelo-lee-brave-lover-dj-slave-market-jp/")); | ||
testRipper(ripper); | ||
} | ||
} |