summaryrefslogtreecommitdiffstats
path: root/apps/files_sharing/src/models
diff options
context:
space:
mode:
authorJohn Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>2019-05-23 17:03:04 +0200
committerDaniel Calviño Sánchez <danxuliu@gmail.com>2019-10-29 12:56:00 +0100
commitfd90af50d910e659aa8df0d380424383c6c09620 (patch)
tree76d8ddcc7cf44ba6852f31b0a2323d23d6b1c258 /apps/files_sharing/src/models
parentea6f423e2c8e50cf1357a0e2182dc4c9a9bf981e (diff)
downloadnextcloud-server-fd90af50d910e659aa8df0d380424383c6c09620.tar.gz
nextcloud-server-fd90af50d910e659aa8df0d380424383c6c09620.zip
Add OCA.Files.Sidebar
Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
Diffstat (limited to 'apps/files_sharing/src/models')
-rw-r--r--apps/files_sharing/src/models/Share.js444
1 files changed, 444 insertions, 0 deletions
diff --git a/apps/files_sharing/src/models/Share.js b/apps/files_sharing/src/models/Share.js
new file mode 100644
index 00000000000..e9d84fb5556
--- /dev/null
+++ b/apps/files_sharing/src/models/Share.js
@@ -0,0 +1,444 @@
+/**
+ * @copyright Copyright (c) 2019 John Molakvoæ <skjnldsv@protonmail.com>
+ *
+ * @author John Molakvoæ <skjnldsv@protonmail.com>
+ *
+ * @license GNU AGPL version 3 or any later version
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Affero General Public License as
+ * published by the Free Software Foundation, either version 3 of the
+ * License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ *
+ */
+
+export default class Share {
+
+ #share;
+
+ /**
+ * Create the share object
+ *
+ * @param {Object} ocsData ocs request response
+ */
+ constructor(ocsData) {
+ if (ocsData.ocs && ocsData.ocs.data && ocsData.ocs.data[0]) {
+ ocsData = ocsData.ocs.data[0]
+ }
+
+ // convert int into boolean
+ ocsData.hide_download = !!ocsData.hide_download
+ ocsData.mail_send = !!ocsData.mail_send
+
+ // store state
+ this.#share = ocsData
+ }
+
+ /**
+ * Get the share state
+ * ! used for reactivity purpose
+ * Do not remove. It allow vuejs to
+ * inject its watchers into the #share
+ * state and make the whole class reactive
+ *
+ * @returns {Object} the share raw state
+ * @readonly
+ * @memberof Sidebar
+ */
+ get state() {
+ return this.#share
+ }
+
+ /**
+ * get the share id
+ *
+ * @returns {int}
+ * @readonly
+ * @memberof Share
+ */
+ get id() {
+ return this.#share.id
+ }
+
+ /**
+ * Get the share type
+ *
+ * @returns {int}
+ * @readonly
+ * @memberof Share
+ */
+ get type() {
+ return this.#share.share_type
+ }
+
+ /**
+ * Get the share permissions
+ * See OC.PERMISSION_* variables
+ *
+ * @returns {int}
+ * @readonly
+ * @memberof Share
+ */
+ get permissions() {
+ return this.#share.permissions
+ }
+
+ /**
+ * Set the share permissions
+ * See OC.PERMISSION_* variables
+ *
+ * @param {int} permissions valid permission, See OC.PERMISSION_* variables
+ * @memberof Share
+ */
+ set permissions(permissions) {
+ this.#share.permissions = permissions
+ }
+
+ // SHARE OWNER --------------------------------------------------
+ /**
+ * Get the share owner uid
+ *
+ * @returns {string}
+ * @readonly
+ * @memberof Share
+ */
+ get owner() {
+ return this.#share.uid_owner
+ }
+
+ /**
+ * Get the share owner's display name
+ *
+ * @returns {string}
+ * @readonly
+ * @memberof Share
+ */
+ get ownerDisplayName() {
+ return this.#share.displayname_owner
+ }
+
+ // SHARED WITH --------------------------------------------------
+ /**
+ * Get the share with entity uid
+ *
+ * @returns {string}
+ * @readonly
+ * @memberof Share
+ */
+ get shareWith() {
+ return this.#share.share_with
+ }
+
+ /**
+ * Get the share with entity display name
+ * fallback to its uid if none
+ *
+ * @returns {string}
+ * @readonly
+ * @memberof Share
+ */
+ get shareWithDisplayName() {
+ return this.#share.share_with_displayname
+ || this.#share.share_with
+ }
+
+ /**
+ * Get the share with avatar if any
+ *
+ * @returns {string}
+ * @readonly
+ * @memberof Share
+ */
+ get shareWithAvatar() {
+ return this.#share.share_with_avatar
+ }
+
+ // SHARED FILE OR FOLDER OWNER ----------------------------------
+ /**
+ * Get the shared item owner uid
+ *
+ * @returns {string}
+ * @readonly
+ * @memberof Share
+ */
+ get uidFileOwner() {
+ return this.#share.uid_file_owner
+ }
+
+ /**
+ * Get the shared item display name
+ * fallback to its uid if none
+ *
+ * @returns {string}
+ * @readonly
+ * @memberof Share
+ */
+ get displaynameFileOwner() {
+ return this.#share.displayname_file_owner
+ || this.#share.uid_file_owner
+ }
+
+ // TIME DATA ----------------------------------------------------
+ /**
+ * Get the share creation timestamp
+ *
+ * @returns {int}
+ * @readonly
+ * @memberof Share
+ */
+ get createdTime() {
+ return this.#share.stime
+ }
+
+ /**
+ * Get the expiration date as a string format
+ *
+ * @returns {string}
+ * @readonly
+ * @memberof Share
+ */
+ get expireDate() {
+ return this.#share.expiration
+ }
+
+ /**
+ * Set the expiration date as a string format
+ * e.g. YYYY-MM-DD
+ *
+ * @param {string} date the share expiration date
+ * @memberof Share
+ */
+ set expireDate(date) {
+ this.#share.expiration = date
+ }
+
+ // EXTRA DATA ---------------------------------------------------
+ /**
+ * Get the public share token
+ *
+ * @returns {string} the token
+ * @readonly
+ * @memberof Share
+ */
+ get token() {
+ return this.#share.token
+ }
+
+ /**
+ * Get the share note if any
+ *
+ * @returns {string}
+ * @readonly
+ * @memberof Share
+ */
+ get note() {
+ return this.#share.note
+ }
+
+ /**
+ * Set the share note if any
+ *
+ * @param {string} note the note
+ * @memberof Share
+ */
+ set note(note) {
+ this.#share.note = note.trim()
+ }
+
+ /**
+ * Have a mail been sent
+ *
+ * @returns {boolean}
+ * @readonly
+ * @memberof Share
+ */
+ get mailSend() {
+ return this.#share.mail_send === true
+ }
+
+ /**
+ * Hide the download button on public page
+ *
+ * @returns {boolean}
+ * @readonly
+ * @memberof Share
+ */
+ get hideDownload() {
+ return this.#share.hide_download === true
+ }
+
+ /**
+ * Hide the download button on public page
+ *
+ * @param {boolean} state hide the button ?
+ * @memberof Share
+ */
+ set hideDownload(state) {
+ this.#share.hide_download = state === true
+ }
+
+ /**
+ * Password protection of the share
+ *
+ * @returns {string}
+ * @readonly
+ * @memberof Share
+ */
+ get password() {
+ return this.#share.password
+ }
+
+ /**
+ * Password protection of the share
+ *
+ * @param {string} password the share password
+ * @memberof Share
+ */
+ set password(password) {
+ this.#share.password = password.trim()
+ }
+
+ // SHARED ITEM DATA ---------------------------------------------
+ /**
+ * Get the shared item absolute full path
+ *
+ * @returns {string}
+ * @readonly
+ * @memberof Share
+ */
+ get path() {
+ return this.#share.path
+ }
+
+ /**
+ * Return the item type: file or folder
+ *
+ * @returns {string} 'folder' or 'file'
+ * @readonly
+ * @memberof Share
+ */
+ get itemType() {
+ return this.#share.item_type
+ }
+
+ /**
+ * Get the shared item mimetype
+ *
+ * @returns {string}
+ * @readonly
+ * @memberof Share
+ */
+ get mimetype() {
+ return this.#share.mimetype
+ }
+
+ /**
+ * Get the shared item id
+ *
+ * @returns {int}
+ * @readonly
+ * @memberof Share
+ */
+ get fileSource() {
+ return this.#share.file_source
+ }
+
+ /**
+ * Get the target path on the receiving end
+ * e.g the file /xxx/aaa will be shared in
+ * the receiving root as /aaa, the fileTarget is /aaa
+ *
+ * @returns {string}
+ * @readonly
+ * @memberof Share
+ */
+ get fileTarget() {
+ return this.#share.file_target
+ }
+
+ /**
+ * Get the parent folder id if any
+ *
+ * @returns {int}
+ * @readonly
+ * @memberof Share
+ */
+ get fileParent() {
+ return this.#share.file_parent
+ }
+
+ // PERMISSIONS Shortcuts
+ /**
+ * Does this share have CREATE permissions
+ *
+ * @returns {boolean}
+ * @readonly
+ * @memberof Share
+ */
+ get hasCreatePermission() {
+ return !!((this.permissions & OC.PERMISSION_CREATE))
+ }
+
+ /**
+ * Does this share have DELETE permissions
+ *
+ * @returns {boolean}
+ * @readonly
+ * @memberof Share
+ */
+ get hasDeletePermission() {
+ return !!((this.permissions & OC.PERMISSION_DELETE))
+ }
+
+ /**
+ * Does this share have UPDATE permissions
+ *
+ * @returns {boolean}
+ * @readonly
+ * @memberof Share
+ */
+ get hasUpdatePermission() {
+ return !!((this.permissions & OC.PERMISSION_UPDATE))
+ }
+
+ /**
+ * Does this share have SHARE permissions
+ *
+ * @returns {boolean}
+ * @readonly
+ * @memberof Share
+ */
+ get hasSharePermission() {
+ return !!((this.permissions & OC.PERMISSION_SHARE))
+ }
+
+ // TODO: SORT THOSE PROPERTIES
+ get label() {
+ return this.#share.label
+ }
+
+ get parent() {
+ return this.#share.parent
+ }
+
+ get storageId() {
+ return this.#share.storage_id
+ }
+
+ get storage() {
+ return this.#share.storage
+ }
+
+ get itemSource() {
+ return this.#share.item_source
+ }
+
+}