conversations-classic/src/main/java/eu/siacs/conversations/entities/DownloadableFile.java

84 lines
1.8 KiB
Java
Raw Normal View History

2014-10-22 16:38:44 +00:00
package eu.siacs.conversations.entities;
import java.io.File;
2015-07-29 21:45:37 +00:00
2015-07-01 14:01:18 +00:00
import eu.siacs.conversations.utils.MimeUtils;
2014-10-22 16:38:44 +00:00
public class DownloadableFile extends File {
private static final long serialVersionUID = 2247012619505115863L;
private long expectedSize = 0;
private String sha1sum;
2015-07-29 21:45:37 +00:00
private byte[] aeskey;
2014-10-22 16:38:44 +00:00
private byte[] iv = { 0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08,
0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0xf };
public DownloadableFile(String path) {
super(path);
}
public long getSize() {
return super.length();
}
public long getExpectedSize() {
return this.expectedSize;
2014-10-22 16:38:44 +00:00
}
2014-11-13 20:04:05 +00:00
public String getMimeType() {
String path = this.getAbsolutePath();
2015-07-01 14:01:18 +00:00
int start = path.lastIndexOf('.') + 1;
if (start < path.length()) {
String mime = MimeUtils.guessMimeTypeFromExtension(path.substring(start));
return mime == null ? "" : mime;
} else {
return "";
2014-11-13 20:04:05 +00:00
}
}
2014-10-22 16:38:44 +00:00
public void setExpectedSize(long size) {
this.expectedSize = size;
}
public String getSha1Sum() {
return this.sha1sum;
}
public void setSha1Sum(String sum) {
this.sha1sum = sum;
}
public void setKeyAndIv(byte[] keyIvCombo) {
if (keyIvCombo.length == 48) {
this.aeskey = new byte[32];
this.iv = new byte[16];
System.arraycopy(keyIvCombo, 0, this.iv, 0, 16);
System.arraycopy(keyIvCombo, 16, this.aeskey, 0, 32);
} else if (keyIvCombo.length >= 32) {
this.aeskey = new byte[32];
System.arraycopy(keyIvCombo, 0, aeskey, 0, 32);
} else if (keyIvCombo.length >= 16) {
this.aeskey = new byte[16];
System.arraycopy(keyIvCombo, 0, this.aeskey, 0, 16);
2014-10-22 16:38:44 +00:00
}
}
public void setKey(byte[] key) {
this.aeskey = key;
}
public void setIv(byte[] iv) {
this.iv = iv;
}
2015-07-29 21:45:37 +00:00
public byte[] getKey() {
2014-10-22 16:38:44 +00:00
return this.aeskey;
}
2015-07-29 21:45:37 +00:00
public byte[] getIv() {
return this.iv;
2014-10-22 16:38:44 +00:00
}
}