Skip to content

Commit

Permalink
Added eroshare mirror eroshae
Browse files Browse the repository at this point in the history
  • Loading branch information
cyian-1756 committed Aug 9, 2017
1 parent fdf82f5 commit cdbdc99
Showing 1 changed file with 9 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -51,13 +51,13 @@ public void downloadURL(URL url, int index) {
}
@Override
public boolean canRip(URL url) {
Pattern p = Pattern.compile("^https?://spacescience.tech/([a-zA-Z0-9\\-_]+)/?$");
Pattern p = Pattern.compile("^https?://eroshae.com/([a-zA-Z0-9\\-_]+)/?$");
Matcher m = p.matcher(url.toExternalForm());
if (m.matches()) {
return true;
}

Pattern pa = Pattern.compile("^https?://spacescience.tech/u/([a-zA-Z0-9\\-_]+)/?$");
Pattern pa = Pattern.compile("^https?://eroshae.com/u/([a-zA-Z0-9\\-_]+)/?$");
Matcher ma = pa.matcher(url.toExternalForm());
if (ma.matches()) {
return true;
Expand All @@ -78,7 +78,7 @@ public boolean canRip(URL url) {
}

public boolean is_profile(URL url) {
Pattern pa = Pattern.compile("^https?://spacescience.tech/u/([a-zA-Z0-9\\-_]+)/?$");
Pattern pa = Pattern.compile("^https?://eroshae.com/u/([a-zA-Z0-9\\-_]+)/?$");
Matcher ma = pa.matcher(url.toExternalForm());
if (ma.matches()) {
return true;
Expand All @@ -98,7 +98,7 @@ public Document getNextPage(Document doc) throws IOException {
if (nextUrl == "") {
throw new IOException("No more pages");
}
return Http.url("spacescience.tech" + nextUrl).get();
return Http.url("eroshae.com" + nextUrl).get();
}

@Override
Expand Down Expand Up @@ -146,7 +146,7 @@ public List<String> getURLsFromPage(Document doc) {
for (Element link : links) {
Document video_page;
try {
video_page = Http.url("spacescience.tech" + link.attr("href")).get();
video_page = Http.url("eroshae.com" + link.attr("href")).get();
} catch (IOException e) {
logger.warn("Failed to log link in Jsoup");
video_page = null;
Expand All @@ -168,7 +168,7 @@ public List<String> getURLsFromPage(Document doc) {
@Override
public Document getFirstPage() throws IOException {
String urlToDownload = this.url.toExternalForm();
Response resp = Http.url(urlToDownload.replace("eroshare.com", "spacescience.tech"))
Response resp = Http.url(urlToDownload.replace("eroshare.com", "eroshae.com"))
.ignoreContentType()
.response();

Expand All @@ -179,7 +179,7 @@ public Document getFirstPage() throws IOException {

@Override
public String getGID(URL url) throws MalformedURLException {
Pattern p = Pattern.compile("^https?://spacescience.tech/([a-zA-Z0-9\\-_]+)/?$");
Pattern p = Pattern.compile("^https?://eroshae.com/([a-zA-Z0-9\\-_]+)/?$");
Matcher m = p.matcher(url.toExternalForm());
if (m.matches()) {
return m.group(1);
Expand All @@ -197,13 +197,13 @@ public String getGID(URL url) throws MalformedURLException {
return m_eroshare_profile.group(1) + "_profile";
}

Pattern pa = Pattern.compile("^https?://spacescience.tech/u/([a-zA-Z0-9\\-_]+)/?$");
Pattern pa = Pattern.compile("^https?://eroshae.com/u/([a-zA-Z0-9\\-_]+)/?$");
Matcher ma = pa.matcher(url.toExternalForm());
if (ma.matches()) {
return m.group(1) + "_profile";
}

throw new MalformedURLException("eroshare album not found in " + url + ", expected https://eroshare.com/album or spacescience.tech/album");
throw new MalformedURLException("eroshare album not found in " + url + ", expected https://eroshare.com/album or eroshae.com/album");
}

public static List<URL> getURLs(URL url) throws IOException{
Expand Down

0 comments on commit cdbdc99

Please sign in to comment.