X-Git-Url: http://git.linex4red.de/pub/Android/ownCloud.git/blobdiff_plain/e50bc09321426513ad9a12267de066b131cb1017..671fef617b9bc67300e3d2cddbbfbe9fb8b4937b:/src/com/owncloud/android/datamodel/OCFile.java diff --git a/src/com/owncloud/android/datamodel/OCFile.java b/src/com/owncloud/android/datamodel/OCFile.java index 4b689860..a6da654d 100644 --- a/src/com/owncloud/android/datamodel/OCFile.java +++ b/src/com/owncloud/android/datamodel/OCFile.java @@ -43,6 +43,8 @@ public class OCFile implements Parcelable, Comparable { } }; + private final static String PERMISSION_SHARED_WITH_ME = "S"; // TODO move to better location + public static final String PATH_SEPARATOR = "/"; public static final String ROOT_PATH = PATH_SEPARATOR; @@ -75,7 +77,8 @@ public class OCFile implements Parcelable, Comparable { private boolean mIsDownloading; private String mEtagInConflict; // Save file etag in the server, when there is a conflict. No conflict = null - private boolean mShareWithUser; + + private boolean mShareWithSharee; /** @@ -121,7 +124,7 @@ public class OCFile implements Parcelable, Comparable { mNeedsUpdateThumbnail = source.readInt() == 1; mIsDownloading = source.readInt() == 1; mEtagInConflict = source.readString(); - mShareWithUser = source.readInt() == 1; + mShareWithSharee = source.readInt() == 1; } @@ -148,7 +151,7 @@ public class OCFile implements Parcelable, Comparable { dest.writeInt(mNeedsUpdateThumbnail ? 1 : 0); dest.writeInt(mIsDownloading ? 1 : 0); dest.writeString(mEtagInConflict); - dest.writeInt(mShareWithUser ? 1 : 0); + dest.writeInt(mShareWithSharee ? 1 : 0); } /** @@ -347,7 +350,7 @@ public class OCFile implements Parcelable, Comparable { mNeedsUpdateThumbnail = false; mIsDownloading = false; mEtagInConflict = null; - mShareWithUser = false; + mShareWithSharee = false; } /** @@ -492,11 +495,12 @@ public class OCFile implements Parcelable, Comparable { this.mEtag = (etag != null ? etag : ""); } - public boolean isShareByLink() { + + public boolean isSharedViaLink() { return mShareByLink; } - public void setShareByLink(boolean shareByLink) { + public void setShareViaLink(boolean shareByLink) { this.mShareByLink = shareByLink; } @@ -596,11 +600,16 @@ public class OCFile implements Parcelable, Comparable { mEtagInConflict = etagInConflict; } - public boolean isShareWithUser() { - return mShareWithUser; + public boolean isSharedWithSharee() { + return mShareWithSharee; + } + + public void setShareWithSharee(boolean shareWithSharee) { + this.mShareWithSharee = shareWithSharee; } - public void setShareWithUser(boolean shareWithUser) { - this.mShareWithUser = shareWithUser; + public boolean isSharedWithMe() { + String permissions = getPermissions(); + return (permissions != null && permissions.contains(PERMISSION_SHARED_WITH_ME)); } }