2015-10-15 21:48:35 +02:00
|
|
|
package com.rarchives.ripme.ripper.rippers;
|
|
|
|
|
|
|
|
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;
|
|
|
|
|
|
|
|
import com.rarchives.ripme.ripper.AbstractHTMLRipper;
|
|
|
|
import com.rarchives.ripme.utils.Http;
|
|
|
|
|
|
|
|
public class tamindirmp3 extends AbstractHTMLRipper {
|
|
|
|
|
|
|
|
public tamindirmp3(URL url) throws IOException {
|
|
|
|
super(url);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public String getHost() {
|
|
|
|
return "tamindir";
|
|
|
|
}
|
|
|
|
@Override
|
|
|
|
public String getDomain() {
|
|
|
|
return "tamindir.com";
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public String getGID(URL url) throws MalformedURLException {
|
|
|
|
Pattern p = Pattern.compile("^https?://[server48.]*tamindir\\.com/files/([a-zA-Z0-9]+).*$");
|
|
|
|
Matcher m = p.matcher(url.toExternalForm());
|
|
|
|
if (m.matches()) {
|
|
|
|
return m.group(1);
|
|
|
|
}
|
|
|
|
throw new MalformedURLException("Expected tamindir.com URL format: " +
|
|
|
|
"tamindir.com/files/albumid - got " + url + "instead");
|
|
|
|
}
|
2017-05-10 00:22:55 +02:00
|
|
|
|
2015-10-15 21:48:35 +02:00
|
|
|
@Override
|
|
|
|
public Document getFirstPage() throws IOException {
|
|
|
|
return Http.url(url).get();
|
2017-05-10 00:22:55 +02:00
|
|
|
|
2015-10-15 21:48:35 +02:00
|
|
|
}
|
2017-05-10 00:22:55 +02:00
|
|
|
|
2015-10-15 21:48:35 +02:00
|
|
|
@Override
|
|
|
|
public List<String> getURLsFromPage(Document doc) {
|
|
|
|
List<String> music = new ArrayList<String>();
|
|
|
|
for (Element el : doc.select("mp3")) {
|
|
|
|
music.add(el.attr("src"));
|
|
|
|
}
|
2015-12-19 15:24:20 +01:00
|
|
|
return music;
|
2015-10-15 21:48:35 +02:00
|
|
|
}
|
|
|
|
@Override
|
|
|
|
public void downloadURL(URL url, int index) {
|
|
|
|
addURLToDownload(url, getPrefix(index));
|
|
|
|
}
|
|
|
|
}
|