|
|
|
|
@ -212,6 +212,18 @@ |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
var pendingRemoteShares = { |
|
|
|
|
url: OC.linkToOCS('apps/files_sharing/api/v1/remote_shares', 2) + 'pending', |
|
|
|
|
/* jshint camelcase: false */ |
|
|
|
|
data: { |
|
|
|
|
format: 'json' |
|
|
|
|
}, |
|
|
|
|
type: 'GET', |
|
|
|
|
beforeSend: function(xhr) { |
|
|
|
|
xhr.setRequestHeader('OCS-APIREQUEST', 'true') |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
var shares = { |
|
|
|
|
url: OC.linkToOCS('apps/files_sharing/api/v1') + 'shares', |
|
|
|
|
/* jshint camelcase: false */ |
|
|
|
|
@ -245,6 +257,7 @@ |
|
|
|
|
promises.push($.ajax(deletedShares)) |
|
|
|
|
} else if (this._showPending) { |
|
|
|
|
promises.push($.ajax(pendingShares)) |
|
|
|
|
promises.push($.ajax(pendingRemoteShares)) |
|
|
|
|
} else { |
|
|
|
|
promises.push($.ajax(shares)) |
|
|
|
|
|
|
|
|
|
@ -292,7 +305,12 @@ |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
if (additionalShares && additionalShares.ocs && additionalShares.ocs.data) { |
|
|
|
|
files = files.concat(this._makeFilesFromShares(additionalShares.ocs.data, !this._sharedWithUser)) |
|
|
|
|
if (this._showPending) { |
|
|
|
|
// in this case the second callback is about pending remote shares
|
|
|
|
|
files = files.concat(this._makeFilesFromRemoteShares(additionalShares.ocs.data)) |
|
|
|
|
} else { |
|
|
|
|
files = files.concat(this._makeFilesFromShares(additionalShares.ocs.data, !this._sharedWithUser)) |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
this.setFiles(files) |
|
|
|
|
@ -317,6 +335,21 @@ |
|
|
|
|
tags: share.tags || [] |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
if (share.remote_id) { |
|
|
|
|
// remote share
|
|
|
|
|
if (share.accepted !== '1') { |
|
|
|
|
file.name = OC.basename(share.name) |
|
|
|
|
file.path = '/' |
|
|
|
|
} |
|
|
|
|
file.remoteId = share.remote_id |
|
|
|
|
file.shareOwnerId = share.owner |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
if (!file.type) { |
|
|
|
|
// pending shares usually have no type, so default to showing a directory icon
|
|
|
|
|
file.mimetype = 'httpd/unix-directory' |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
file.shares = [{ |
|
|
|
|
id: share.id, |
|
|
|
|
type: OC.Share.SHARE_TYPE_REMOTE |
|
|
|
|
|