2014-04-20 07:41:11 +02:00
|
|
|
package com.rarchives.ripme.ripper;
|
|
|
|
|
|
|
|
import java.io.File;
|
2014-06-28 18:49:11 +02:00
|
|
|
import java.io.FileWriter;
|
2014-04-20 07:41:11 +02:00
|
|
|
import java.io.IOException;
|
|
|
|
import java.net.MalformedURLException;
|
|
|
|
import java.net.URL;
|
2014-04-23 05:48:41 +02:00
|
|
|
import java.util.Map;
|
2014-04-20 07:41:11 +02:00
|
|
|
|
|
|
|
import com.rarchives.ripme.ui.RipStatusMessage;
|
|
|
|
import com.rarchives.ripme.ui.RipStatusMessage.STATUS;
|
|
|
|
import com.rarchives.ripme.utils.Utils;
|
|
|
|
|
|
|
|
public abstract class VideoRipper extends AbstractRipper {
|
|
|
|
|
|
|
|
private int bytesTotal = 1,
|
|
|
|
bytesCompleted = 1;
|
|
|
|
|
2017-10-24 16:33:28 +02:00
|
|
|
protected VideoRipper(URL url) throws IOException {
|
2014-04-20 07:41:11 +02:00
|
|
|
super(url);
|
|
|
|
}
|
|
|
|
|
|
|
|
public abstract boolean canRip(URL url);
|
|
|
|
public abstract void rip() throws IOException;
|
|
|
|
public abstract String getHost();
|
|
|
|
public abstract String getGID(URL url) throws MalformedURLException;
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void setBytesTotal(int bytes) {
|
|
|
|
this.bytesTotal = bytes;
|
|
|
|
}
|
|
|
|
@Override
|
|
|
|
public void setBytesCompleted(int bytes) {
|
|
|
|
this.bytesCompleted = bytes;
|
|
|
|
}
|
|
|
|
|
2014-04-20 09:12:48 +02:00
|
|
|
@Override
|
|
|
|
public String getAlbumTitle(URL url) {
|
|
|
|
return "videos";
|
|
|
|
}
|
|
|
|
|
2014-04-20 07:41:11 +02:00
|
|
|
@Override
|
2014-10-21 10:10:09 +02:00
|
|
|
public boolean addURLToDownload(URL url, File saveAs) {
|
2014-06-28 18:49:11 +02:00
|
|
|
if (Utils.getConfigBoolean("urls_only.save", false)) {
|
|
|
|
// Output URL to file
|
|
|
|
String urlFile = this.workingDir + File.separator + "urls.txt";
|
|
|
|
try {
|
|
|
|
FileWriter fw = new FileWriter(urlFile, true);
|
|
|
|
fw.write(url.toExternalForm());
|
|
|
|
fw.write("\n");
|
|
|
|
fw.close();
|
|
|
|
RipStatusMessage msg = new RipStatusMessage(STATUS.DOWNLOAD_COMPLETE, urlFile);
|
|
|
|
observer.update(this, msg);
|
|
|
|
} catch (IOException e) {
|
|
|
|
logger.error("Error while writing to " + urlFile, e);
|
2014-10-21 10:10:09 +02:00
|
|
|
return false;
|
2014-06-28 18:49:11 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
2015-02-06 08:58:17 +01:00
|
|
|
if (isThisATest()) {
|
2015-02-10 08:29:29 +01:00
|
|
|
// Tests shouldn't download the whole video
|
|
|
|
// Just change this.url to the download URL so the test knows we found it.
|
|
|
|
logger.debug("Test rip, found URL: " + url);
|
2015-02-06 12:01:02 +01:00
|
|
|
this.url = url;
|
2015-02-06 08:58:17 +01:00
|
|
|
return true;
|
|
|
|
}
|
2014-06-28 18:49:11 +02:00
|
|
|
threadPool.addThread(new DownloadVideoThread(url, saveAs, this));
|
|
|
|
}
|
2014-10-21 10:10:09 +02:00
|
|
|
return true;
|
2014-04-20 07:41:11 +02:00
|
|
|
}
|
|
|
|
|
2014-04-23 05:48:41 +02:00
|
|
|
@Override
|
2014-10-21 10:10:09 +02:00
|
|
|
public boolean addURLToDownload(URL url, File saveAs, String referrer, Map<String,String> cookies) {
|
|
|
|
return addURLToDownload(url, saveAs);
|
2014-04-23 05:48:41 +02:00
|
|
|
}
|
|
|
|
|
2014-04-20 07:41:11 +02:00
|
|
|
@Override
|
|
|
|
public void setWorkingDir(URL url) throws IOException {
|
|
|
|
String path = Utils.getWorkingDirectory().getCanonicalPath();
|
|
|
|
if (!path.endsWith(File.separator)) {
|
|
|
|
path += File.separator;
|
|
|
|
}
|
|
|
|
path += "videos" + File.separator;
|
|
|
|
this.workingDir = new File(path);
|
|
|
|
if (!this.workingDir.exists()) {
|
|
|
|
logger.info("[+] Creating directory: " + Utils.removeCWD(this.workingDir));
|
|
|
|
this.workingDir.mkdirs();
|
|
|
|
}
|
|
|
|
logger.debug("Set working directory to: " + this.workingDir);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public int getCompletionPercentage() {
|
|
|
|
return (int) (100 * (bytesCompleted / (float) bytesTotal));
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void downloadCompleted(URL url, File saveAs) {
|
|
|
|
if (observer == null) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
try {
|
|
|
|
String path = Utils.removeCWD(saveAs);
|
|
|
|
RipStatusMessage msg = new RipStatusMessage(STATUS.DOWNLOAD_COMPLETE, path);
|
|
|
|
observer.update(this, msg);
|
|
|
|
|
|
|
|
checkIfComplete();
|
|
|
|
} catch (Exception e) {
|
|
|
|
logger.error("Exception while updating observer: ", e);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
@Override
|
|
|
|
public void downloadErrored(URL url, String reason) {
|
|
|
|
if (observer == null) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
observer.update(this, new RipStatusMessage(STATUS.DOWNLOAD_ERRORED, url + " : " + reason));
|
|
|
|
checkIfComplete();
|
|
|
|
}
|
|
|
|
@Override
|
2015-01-11 14:11:10 +01:00
|
|
|
public void downloadExists(URL url, File file) {
|
2014-04-20 07:41:11 +02:00
|
|
|
if (observer == null) {
|
|
|
|
return;
|
|
|
|
}
|
2015-01-11 14:11:10 +01:00
|
|
|
observer.update(this, new RipStatusMessage(STATUS.DOWNLOAD_WARN, url + " already saved as " + file));
|
2014-04-20 07:41:11 +02:00
|
|
|
checkIfComplete();
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public String getStatusText() {
|
|
|
|
StringBuilder sb = new StringBuilder();
|
|
|
|
sb.append(getCompletionPercentage())
|
|
|
|
.append("% ")
|
|
|
|
.append(" - ")
|
|
|
|
.append(Utils.bytesToHumanReadable(bytesCompleted))
|
|
|
|
.append(" / ")
|
|
|
|
.append(Utils.bytesToHumanReadable(bytesTotal));
|
|
|
|
return sb.toString();
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public URL sanitizeURL(URL url) throws MalformedURLException {
|
|
|
|
return url;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Notifies observers and updates state if all files have been ripped.
|
|
|
|
*/
|
|
|
|
@Override
|
|
|
|
protected void checkIfComplete() {
|
|
|
|
if (observer == null) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (bytesCompleted >= bytesTotal) {
|
|
|
|
super.checkIfComplete();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|