aboutsummaryrefslogtreecommitdiffstats
path: root/src/main/java/eu/siacs/conversations/entities/DownloadableFile.java
blob: d35a4b01703cad1e3d9a86f77e964701c6aa96a2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
package eu.siacs.conversations.entities;

import java.io.File;

import eu.siacs.conversations.utils.MimeUtils;

public class DownloadableFile extends File {

	private static final long serialVersionUID = 2247012619505115863L;

	private long expectedSize = 0;
	private String sha1sum;
	private byte[] aeskey;

	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;
	}

	public String getMimeType() {
		String path = this.getAbsolutePath();
		int start = path.lastIndexOf('.') + 1;
		if (start < path.length()) {
			String mime = MimeUtils.guessMimeTypeFromExtension(path.substring(start));
			return mime == null ? "" : mime;
		} else {
			return "";
		}
	}

	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) {
			byte[] secretKey = new byte[32];
			byte[] iv = new byte[16];
			System.arraycopy(keyIvCombo, 0, iv, 0, 16);
			System.arraycopy(keyIvCombo, 16, secretKey, 0, 32);
			this.aeskey = secretKey;
			this.iv = iv;
		} else if (keyIvCombo.length >= 32) {
			byte[] secretKey = new byte[32];
			System.arraycopy(keyIvCombo, 0, secretKey, 0, 32);
			this.aeskey = secretKey;
		} else if (keyIvCombo.length >= 16) {
			byte[] secretKey = new byte[16];
			System.arraycopy(keyIvCombo, 0, secretKey, 0, 16);
			this.aeskey = secretKey;
		}
	}

	public void setKey(byte[] key) {
		this.aeskey = key;
	}

	public void setIv(byte[] iv) {
		this.iv = iv;
	}

	public byte[] getKey() {
		return this.aeskey;
	}

	public byte[] getIv() {
		return this.iv;
	}
}