1
2
3
4
5
6
7
8
9
10
11
12
13 package org.abstracthorizon.danube.webdav.fs.properties;
14
15 import org.abstracthorizon.danube.http.Status;
16 import org.abstracthorizon.danube.webdav.ResourceAdapter;
17 import org.abstracthorizon.danube.webdav.xml.XMLParserHandler;
18 import org.abstracthorizon.danube.webdav.xml.dav.response.properties.ResponseProperty;
19
20 import java.io.File;
21 import java.io.IOException;
22 import java.io.RandomAccessFile;
23
24
25
26
27
28
29 public class GetContentLength extends org.abstracthorizon.danube.webdav.xml.dav.request.properties.GetContentLength {
30
31
32
33
34
35 public GetContentLength(XMLParserHandler parent) {
36 super(parent);
37 }
38
39
40
41
42
43
44
45 public ResponseProperty processSetProperty(ResourceAdapter adapter, Object resource) {
46 long newLength = getContentLength();
47 if (newLength >= 0) {
48 File file = (File)resource;
49 try {
50 RandomAccessFile raf = new RandomAccessFile(file, "rw");
51 long oldLength = raf.length();
52 if (newLength != oldLength) {
53 raf.setLength(newLength);
54 File f = new File(file.getParentFile(), file.getName());
55 if (newLength == f.length()) {
56 return processResponse(adapter, file);
57 }
58 }
59 } catch (IOException e) {
60
61 }
62 return constructResponse(Status.FORBIDDEN);
63 } else {
64 return super.processSetProperty(adapter, resource);
65 }
66 }
67 }
68