1
0
mirror of https://github.com/owncloud/android-library.git synced 2025-06-09 08:56:22 +00:00

Read oc:size property in WebDavEntry

This commit is contained in:
masensio 2015-03-04 13:07:57 +01:00
parent 942971a202
commit 47dfdd2396

View File

@ -40,9 +40,10 @@ public class WebdavEntry {
private static final String NAMESPACE_OC = "http://owncloud.org/ns";
private static final String EXTENDED_PROPERTY_NAME_PERMISSIONS = "permissions";
private static final String EXTENDED_PROPERTY_NAME_REMOTE_ID = "id";
private static final String EXTENDED_PROPERTY_NAME_SIZE = "size";
private String mName, mPath, mUri, mContentType, mEtag, mPermissions, mRemoteId;
private long mContentLength, mCreateTimestamp, mModifiedTimestamp;
private long mContentLength, mCreateTimestamp, mModifiedTimestamp, mSize;
public WebdavEntry(MultiStatusResponse ms, String splitElement) {
resetData();
@ -70,7 +71,8 @@ public class WebdavEntry {
prop = propSet.get(DavPropertyName.GETCONTENTTYPE);
if (prop != null) {
mContentType = (String) prop.getValue();
// dvelasco: some builds of ownCloud server 4.0.x added a trailing ';' to the MIME type ; if looks fixed, but let's be cautious
// dvelasco: some builds of ownCloud server 4.0.x added a trailing ';'
// to the MIME type ; if looks fixed, but let's be cautious
if (mContentType.indexOf(";") >= 0) {
mContentType = mContentType.substring(0, mContentType.indexOf(";"));
}
@ -81,7 +83,10 @@ public class WebdavEntry {
if (prop!= null) {
Object value = prop.getValue();
if (value != null) {
mContentType = "DIR"; // a specific attribute would be better, but this is enough; unless while we have no reason to distinguish MIME types for folders
mContentType = "DIR"; // a specific attribute would be better,
// but this is enough;
// unless while we have no reason to distinguish
// MIME types for folders
}
}
@ -125,6 +130,14 @@ public class WebdavEntry {
mRemoteId = prop.getValue().toString();
}
// OC size property <oc:size>
prop = propSet.get(
EXTENDED_PROPERTY_NAME_SIZE, Namespace.getNamespace(NAMESPACE_OC)
);
if (prop != null) {
mSize = Long.parseLong((String) prop.getValue());
}
} else {
Log_OC.e("WebdavEntry",
"General fuckup, no status for webdav response");
@ -179,8 +192,13 @@ public class WebdavEntry {
return mRemoteId;
}
public long size(){
return mSize;
}
private void resetData() {
mName = mUri = mContentType = mPermissions = null; mRemoteId = null;
mContentLength = mCreateTimestamp = mModifiedTimestamp = 0;
mSize = 0;
}
}