2014-04-30 19:42:35 +04:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2014 Vincent Petry <pvince81@owncloud.com>
|
|
|
|
*
|
|
|
|
* This file is licensed under the Affero General Public License version 3
|
|
|
|
* or later.
|
|
|
|
*
|
|
|
|
* See the COPYING-README file.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2014-05-28 20:39:29 +04:00
|
|
|
if (!OCA.Sharing) {
|
2014-06-24 01:56:10 +04:00
|
|
|
/**
|
|
|
|
* @namespace OCA.Sharing
|
|
|
|
*/
|
2014-05-28 20:39:29 +04:00
|
|
|
OCA.Sharing = {};
|
|
|
|
}
|
2014-06-24 01:56:10 +04:00
|
|
|
/**
|
|
|
|
* @namespace
|
|
|
|
*/
|
2014-04-30 19:42:35 +04:00
|
|
|
OCA.Sharing.App = {
|
|
|
|
|
|
|
|
_inFileList: null,
|
|
|
|
_outFileList: null,
|
2018-07-09 14:04:09 +03:00
|
|
|
_overviewFileList: null,
|
2014-04-30 19:42:35 +04:00
|
|
|
|
|
|
|
initSharingIn: function($el) {
|
|
|
|
if (this._inFileList) {
|
2014-05-21 14:54:34 +04:00
|
|
|
return this._inFileList;
|
2014-04-30 19:42:35 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
this._inFileList = new OCA.Sharing.FileList(
|
|
|
|
$el,
|
|
|
|
{
|
2014-12-01 18:17:28 +03:00
|
|
|
id: 'shares.self',
|
2014-05-20 18:01:34 +04:00
|
|
|
sharedWithUser: true,
|
2016-04-12 18:10:09 +03:00
|
|
|
fileActions: this._createFileActions(),
|
Fix opening a section again in the Files app
When a section is open in the Files app a "show" event is triggered.
File list objects handle that event by reloading themselves, but only
if the file list was shown at least once. However, the file list objects
of plugins are created when the "show" event is triggered for the first
time for their section; as the file list objects register their handler
for the "show" event when they are created they never handle the first
triggered "show" event, as the handler is set while that event is being
already handled. Therefore, from the point of view of the handler, the
second time that a "show" event was triggered it was seen as if the file
list was shown for the first time, and thus it was not reloaded. Now the
"shown" property is explicitly set for those file lists that are created
while handling a "show" event, which causes them to be reloaded as
expected when opening their section again.
Note that it is not possible to just reload the file list whenever it is
shown; the file list is reloaded also when the directory changes, and
this can happen when the web page is initially loaded and the URL is
parsed. In that case, if file lists were reloaded when shown for the
first time then it could be reloaded twice, one with the default
parameters due to the "show" event and another one with the proper
parameters once the URL was parsed, and the files that appeard in the
list would depend on which response from the server was received the
last.
Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
2018-10-19 21:32:15 +03:00
|
|
|
config: OCA.Files.App.getFilesConfig(),
|
|
|
|
// The file list is created when a "show" event is handled, so
|
|
|
|
// it should be marked as "shown" like it would have been done
|
|
|
|
// if handling the event with the file list already created.
|
|
|
|
shown: true
|
2014-04-30 19:42:35 +04:00
|
|
|
}
|
|
|
|
);
|
|
|
|
|
2014-05-20 14:00:42 +04:00
|
|
|
this._extendFileList(this._inFileList);
|
|
|
|
this._inFileList.appName = t('files_sharing', 'Shared with you');
|
2017-04-12 16:04:12 +03:00
|
|
|
this._inFileList.$el.find('#emptycontent').html('<div class="icon-shared"></div>' +
|
2014-12-17 23:22:28 +03:00
|
|
|
'<h2>' + t('files_sharing', 'Nothing shared with you yet') + '</h2>' +
|
2014-12-17 23:13:53 +03:00
|
|
|
'<p>' + t('files_sharing', 'Files and folders others share with you will show up here') + '</p>');
|
2014-05-21 14:54:34 +04:00
|
|
|
return this._inFileList;
|
2014-04-30 19:42:35 +04:00
|
|
|
},
|
|
|
|
|
|
|
|
initSharingOut: function($el) {
|
|
|
|
if (this._outFileList) {
|
2014-05-21 14:54:34 +04:00
|
|
|
return this._outFileList;
|
2014-04-30 19:42:35 +04:00
|
|
|
}
|
|
|
|
this._outFileList = new OCA.Sharing.FileList(
|
|
|
|
$el,
|
|
|
|
{
|
2014-12-01 18:17:28 +03:00
|
|
|
id: 'shares.others',
|
2014-05-20 18:01:34 +04:00
|
|
|
sharedWithUser: false,
|
2016-04-12 18:10:09 +03:00
|
|
|
fileActions: this._createFileActions(),
|
Fix opening a section again in the Files app
When a section is open in the Files app a "show" event is triggered.
File list objects handle that event by reloading themselves, but only
if the file list was shown at least once. However, the file list objects
of plugins are created when the "show" event is triggered for the first
time for their section; as the file list objects register their handler
for the "show" event when they are created they never handle the first
triggered "show" event, as the handler is set while that event is being
already handled. Therefore, from the point of view of the handler, the
second time that a "show" event was triggered it was seen as if the file
list was shown for the first time, and thus it was not reloaded. Now the
"shown" property is explicitly set for those file lists that are created
while handling a "show" event, which causes them to be reloaded as
expected when opening their section again.
Note that it is not possible to just reload the file list whenever it is
shown; the file list is reloaded also when the directory changes, and
this can happen when the web page is initially loaded and the URL is
parsed. In that case, if file lists were reloaded when shown for the
first time then it could be reloaded twice, one with the default
parameters due to the "show" event and another one with the proper
parameters once the URL was parsed, and the files that appeard in the
list would depend on which response from the server was received the
last.
Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
2018-10-19 21:32:15 +03:00
|
|
|
config: OCA.Files.App.getFilesConfig(),
|
|
|
|
// The file list is created when a "show" event is handled, so
|
|
|
|
// it should be marked as "shown" like it would have been done
|
|
|
|
// if handling the event with the file list already created.
|
|
|
|
shown: true
|
2014-04-30 19:42:35 +04:00
|
|
|
}
|
|
|
|
);
|
|
|
|
|
2014-05-20 14:00:42 +04:00
|
|
|
this._extendFileList(this._outFileList);
|
|
|
|
this._outFileList.appName = t('files_sharing', 'Shared with others');
|
2017-04-12 16:04:12 +03:00
|
|
|
this._outFileList.$el.find('#emptycontent').html('<div class="icon-shared"></div>' +
|
2014-12-17 23:22:28 +03:00
|
|
|
'<h2>' + t('files_sharing', 'Nothing shared yet') + '</h2>' +
|
|
|
|
'<p>' + t('files_sharing', 'Files and folders you share will show up here') + '</p>');
|
2014-05-21 14:54:34 +04:00
|
|
|
return this._outFileList;
|
|
|
|
},
|
|
|
|
|
2014-06-04 13:10:11 +04:00
|
|
|
initSharingLinks: function($el) {
|
|
|
|
if (this._linkFileList) {
|
|
|
|
return this._linkFileList;
|
|
|
|
}
|
|
|
|
this._linkFileList = new OCA.Sharing.FileList(
|
|
|
|
$el,
|
|
|
|
{
|
2014-12-01 18:17:28 +03:00
|
|
|
id: 'shares.link',
|
2014-06-04 13:10:11 +04:00
|
|
|
linksOnly: true,
|
2016-04-12 18:10:09 +03:00
|
|
|
fileActions: this._createFileActions(),
|
Fix opening a section again in the Files app
When a section is open in the Files app a "show" event is triggered.
File list objects handle that event by reloading themselves, but only
if the file list was shown at least once. However, the file list objects
of plugins are created when the "show" event is triggered for the first
time for their section; as the file list objects register their handler
for the "show" event when they are created they never handle the first
triggered "show" event, as the handler is set while that event is being
already handled. Therefore, from the point of view of the handler, the
second time that a "show" event was triggered it was seen as if the file
list was shown for the first time, and thus it was not reloaded. Now the
"shown" property is explicitly set for those file lists that are created
while handling a "show" event, which causes them to be reloaded as
expected when opening their section again.
Note that it is not possible to just reload the file list whenever it is
shown; the file list is reloaded also when the directory changes, and
this can happen when the web page is initially loaded and the URL is
parsed. In that case, if file lists were reloaded when shown for the
first time then it could be reloaded twice, one with the default
parameters due to the "show" event and another one with the proper
parameters once the URL was parsed, and the files that appeard in the
list would depend on which response from the server was received the
last.
Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
2018-10-19 21:32:15 +03:00
|
|
|
config: OCA.Files.App.getFilesConfig(),
|
|
|
|
// The file list is created when a "show" event is handled, so
|
|
|
|
// it should be marked as "shown" like it would have been done
|
|
|
|
// if handling the event with the file list already created.
|
|
|
|
shown: true
|
2014-06-04 13:10:11 +04:00
|
|
|
}
|
|
|
|
);
|
|
|
|
|
|
|
|
this._extendFileList(this._linkFileList);
|
2014-06-04 13:32:30 +04:00
|
|
|
this._linkFileList.appName = t('files_sharing', 'Shared by link');
|
2014-12-17 23:22:28 +03:00
|
|
|
this._linkFileList.$el.find('#emptycontent').html('<div class="icon-public"></div>' +
|
|
|
|
'<h2>' + t('files_sharing', 'No shared links') + '</h2>' +
|
|
|
|
'<p>' + t('files_sharing', 'Files and folders you share by link will show up here') + '</p>');
|
2014-06-04 13:10:11 +04:00
|
|
|
return this._linkFileList;
|
|
|
|
},
|
|
|
|
|
2018-06-20 20:14:50 +03:00
|
|
|
initSharingDeleted: function($el) {
|
|
|
|
if (this._deletedFileList) {
|
|
|
|
return this._deletedFileList;
|
|
|
|
}
|
|
|
|
this._deletedFileList = new OCA.Sharing.FileList(
|
|
|
|
$el,
|
|
|
|
{
|
|
|
|
id: 'shares.deleted',
|
|
|
|
showDeleted: true,
|
|
|
|
sharedWithUser: true,
|
|
|
|
fileActions: this._restoreShareAction(),
|
Fix opening a section again in the Files app
When a section is open in the Files app a "show" event is triggered.
File list objects handle that event by reloading themselves, but only
if the file list was shown at least once. However, the file list objects
of plugins are created when the "show" event is triggered for the first
time for their section; as the file list objects register their handler
for the "show" event when they are created they never handle the first
triggered "show" event, as the handler is set while that event is being
already handled. Therefore, from the point of view of the handler, the
second time that a "show" event was triggered it was seen as if the file
list was shown for the first time, and thus it was not reloaded. Now the
"shown" property is explicitly set for those file lists that are created
while handling a "show" event, which causes them to be reloaded as
expected when opening their section again.
Note that it is not possible to just reload the file list whenever it is
shown; the file list is reloaded also when the directory changes, and
this can happen when the web page is initially loaded and the URL is
parsed. In that case, if file lists were reloaded when shown for the
first time then it could be reloaded twice, one with the default
parameters due to the "show" event and another one with the proper
parameters once the URL was parsed, and the files that appeard in the
list would depend on which response from the server was received the
last.
Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
2018-10-19 21:32:15 +03:00
|
|
|
config: OCA.Files.App.getFilesConfig(),
|
|
|
|
// The file list is created when a "show" event is handled, so
|
|
|
|
// it should be marked as "shown" like it would have been done
|
|
|
|
// if handling the event with the file list already created.
|
|
|
|
shown: true
|
2018-06-20 20:14:50 +03:00
|
|
|
}
|
|
|
|
);
|
|
|
|
|
|
|
|
this._extendFileList(this._deletedFileList);
|
|
|
|
this._deletedFileList.appName = t('files_sharing', 'Deleted shares');
|
|
|
|
this._deletedFileList.$el.find('#emptycontent').html('<div class="icon-share"></div>' +
|
|
|
|
'<h2>' + t('files_sharing', 'No deleted shares') + '</h2>' +
|
|
|
|
'<p>' + t('files_sharing', 'Shares you deleted will show up here') + '</p>');
|
|
|
|
return this._deletedFileList;
|
|
|
|
},
|
|
|
|
|
2018-07-09 14:04:09 +03:00
|
|
|
initShareingOverview: function($el) {
|
|
|
|
if (this._overviewFileList) {
|
|
|
|
return this._overviewFileList;
|
|
|
|
}
|
|
|
|
this._overviewFileList = new OCA.Sharing.FileList(
|
|
|
|
$el,
|
|
|
|
{
|
|
|
|
id: 'shares.overview',
|
|
|
|
config: OCA.Files.App.getFilesConfig(),
|
Fix opening a section again in the Files app
When a section is open in the Files app a "show" event is triggered.
File list objects handle that event by reloading themselves, but only
if the file list was shown at least once. However, the file list objects
of plugins are created when the "show" event is triggered for the first
time for their section; as the file list objects register their handler
for the "show" event when they are created they never handle the first
triggered "show" event, as the handler is set while that event is being
already handled. Therefore, from the point of view of the handler, the
second time that a "show" event was triggered it was seen as if the file
list was shown for the first time, and thus it was not reloaded. Now the
"shown" property is explicitly set for those file lists that are created
while handling a "show" event, which causes them to be reloaded as
expected when opening their section again.
Note that it is not possible to just reload the file list whenever it is
shown; the file list is reloaded also when the directory changes, and
this can happen when the web page is initially loaded and the URL is
parsed. In that case, if file lists were reloaded when shown for the
first time then it could be reloaded twice, one with the default
parameters due to the "show" event and another one with the proper
parameters once the URL was parsed, and the files that appeard in the
list would depend on which response from the server was received the
last.
Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
2018-10-19 21:32:15 +03:00
|
|
|
isOverview: true,
|
|
|
|
// The file list is created when a "show" event is handled, so
|
|
|
|
// it should be marked as "shown" like it would have been done
|
|
|
|
// if handling the event with the file list already created.
|
|
|
|
shown: true
|
2018-07-09 14:04:09 +03:00
|
|
|
}
|
|
|
|
);
|
|
|
|
|
|
|
|
this._extendFileList(this._overviewFileList);
|
2018-07-16 17:26:39 +03:00
|
|
|
this._overviewFileList.appName = t('files_sharing', 'Shares');
|
2018-07-09 14:04:09 +03:00
|
|
|
this._overviewFileList.$el.find('#emptycontent').html('<div class="icon-share"></div>' +
|
|
|
|
'<h2>' + t('files_sharing', 'No shares') + '</h2>' +
|
|
|
|
'<p>' + t('files_sharing', 'Shares will show up here') + '</p>');
|
|
|
|
return this._overviewFileList;
|
|
|
|
},
|
|
|
|
|
2014-05-21 14:54:34 +04:00
|
|
|
removeSharingIn: function() {
|
|
|
|
if (this._inFileList) {
|
|
|
|
this._inFileList.$fileList.empty();
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
removeSharingOut: function() {
|
|
|
|
if (this._outFileList) {
|
|
|
|
this._outFileList.$fileList.empty();
|
|
|
|
}
|
2014-05-19 17:20:44 +04:00
|
|
|
},
|
|
|
|
|
2014-06-04 13:10:11 +04:00
|
|
|
removeSharingLinks: function() {
|
|
|
|
if (this._linkFileList) {
|
|
|
|
this._linkFileList.$fileList.empty();
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2018-06-20 20:14:50 +03:00
|
|
|
removeSharingDeleted: function() {
|
|
|
|
if (this._deletedFileList) {
|
|
|
|
this._deletedFileList.$fileList.empty();
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2018-07-09 14:04:09 +03:00
|
|
|
removeSharingOverview: function() {
|
|
|
|
if (this._overviewFileList) {
|
|
|
|
this._overviewFileList.$fileList.empty();
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2014-07-09 14:26:33 +04:00
|
|
|
/**
|
|
|
|
* Destroy the app
|
|
|
|
*/
|
|
|
|
destroy: function() {
|
|
|
|
OCA.Files.fileActions.off('setDefault.app-sharing', this._onActionsUpdated);
|
|
|
|
OCA.Files.fileActions.off('registerAction.app-sharing', this._onActionsUpdated);
|
|
|
|
this.removeSharingIn();
|
|
|
|
this.removeSharingOut();
|
|
|
|
this.removeSharingLinks();
|
|
|
|
this._inFileList = null;
|
|
|
|
this._outFileList = null;
|
|
|
|
this._linkFileList = null;
|
2018-07-09 14:04:09 +03:00
|
|
|
this._overviewFileList = null;
|
2014-07-09 14:26:33 +04:00
|
|
|
delete this._globalActionsInitialized;
|
|
|
|
},
|
|
|
|
|
2014-05-20 18:01:34 +04:00
|
|
|
_createFileActions: function() {
|
|
|
|
// inherit file actions from the files app
|
|
|
|
var fileActions = new OCA.Files.FileActions();
|
|
|
|
// note: not merging the legacy actions because legacy apps are not
|
|
|
|
// compatible with the sharing overview and need to be adapted first
|
2014-05-21 14:54:34 +04:00
|
|
|
fileActions.registerDefaultActions();
|
2014-05-20 18:01:34 +04:00
|
|
|
fileActions.merge(OCA.Files.fileActions);
|
|
|
|
|
2014-07-09 14:26:33 +04:00
|
|
|
if (!this._globalActionsInitialized) {
|
|
|
|
// in case actions are registered later
|
|
|
|
this._onActionsUpdated = _.bind(this._onActionsUpdated, this);
|
|
|
|
OCA.Files.fileActions.on('setDefault.app-sharing', this._onActionsUpdated);
|
|
|
|
OCA.Files.fileActions.on('registerAction.app-sharing', this._onActionsUpdated);
|
|
|
|
this._globalActionsInitialized = true;
|
|
|
|
}
|
|
|
|
|
2014-05-19 17:20:44 +04:00
|
|
|
// when the user clicks on a folder, redirect to the corresponding
|
2014-05-20 18:01:34 +04:00
|
|
|
// folder in the files app instead of opening it directly
|
2014-05-19 17:20:44 +04:00
|
|
|
fileActions.register('dir', 'Open', OC.PERMISSION_READ, '', function (filename, context) {
|
|
|
|
OCA.Files.App.setActiveView('files', {silent: true});
|
2015-11-18 19:54:00 +03:00
|
|
|
OCA.Files.App.fileList.changeDirectory(OC.joinPaths(context.$file.attr('data-path'), filename), true, true);
|
2014-05-19 17:20:44 +04:00
|
|
|
});
|
2014-05-20 18:01:34 +04:00
|
|
|
fileActions.setDefault('dir', 'Open');
|
|
|
|
return fileActions;
|
2014-05-20 14:00:42 +04:00
|
|
|
},
|
|
|
|
|
2018-06-20 20:14:50 +03:00
|
|
|
_restoreShareAction: function() {
|
|
|
|
var fileActions = new OCA.Files.FileActions();
|
|
|
|
fileActions.registerAction({
|
|
|
|
name: 'Restore',
|
|
|
|
displayName: '',
|
|
|
|
altText: t('files_sharing', 'Restore share'),
|
|
|
|
mime: 'all',
|
|
|
|
permissions: OC.PERMISSION_ALL,
|
|
|
|
iconClass: 'icon-history',
|
|
|
|
type: OCA.Files.FileActions.TYPE_INLINE,
|
|
|
|
actionHandler: function(fileName, context) {
|
|
|
|
var shareId = context.$file.data('shareId');
|
|
|
|
$.post(OC.linkToOCS('apps/files_sharing/api/v1/deletedshares', 2) + shareId)
|
2018-06-20 21:32:19 +03:00
|
|
|
.success(function(result) {
|
|
|
|
context.fileList.remove(context.fileInfoModel.attributes.name);
|
|
|
|
}).fail(function() {
|
|
|
|
OC.Notification.showTemporary(t('files_sharing', 'Something happened. Unable to restore the share.'));
|
|
|
|
});
|
2018-06-20 20:14:50 +03:00
|
|
|
}
|
|
|
|
});
|
|
|
|
return fileActions;
|
|
|
|
},
|
|
|
|
|
2014-07-09 14:26:33 +04:00
|
|
|
_onActionsUpdated: function(ev) {
|
|
|
|
_.each([this._inFileList, this._outFileList, this._linkFileList], function(list) {
|
|
|
|
if (!list) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ev.action) {
|
|
|
|
list.fileActions.registerAction(ev.action);
|
|
|
|
} else if (ev.defaultAction) {
|
|
|
|
list.fileActions.setDefault(
|
|
|
|
ev.defaultAction.mime,
|
|
|
|
ev.defaultAction.name
|
|
|
|
);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
2014-05-20 14:00:42 +04:00
|
|
|
_extendFileList: function(fileList) {
|
|
|
|
// remove size column from summary
|
|
|
|
fileList.fileSummary.$el.find('.filesize').remove();
|
2014-04-30 19:42:35 +04:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
$(document).ready(function() {
|
2014-05-21 14:54:34 +04:00
|
|
|
$('#app-content-sharingin').on('show', function(e) {
|
2014-04-30 19:42:35 +04:00
|
|
|
OCA.Sharing.App.initSharingIn($(e.target));
|
|
|
|
});
|
2014-05-21 14:54:34 +04:00
|
|
|
$('#app-content-sharingin').on('hide', function() {
|
|
|
|
OCA.Sharing.App.removeSharingIn();
|
|
|
|
});
|
|
|
|
$('#app-content-sharingout').on('show', function(e) {
|
2014-04-30 19:42:35 +04:00
|
|
|
OCA.Sharing.App.initSharingOut($(e.target));
|
|
|
|
});
|
2014-05-21 14:54:34 +04:00
|
|
|
$('#app-content-sharingout').on('hide', function() {
|
|
|
|
OCA.Sharing.App.removeSharingOut();
|
|
|
|
});
|
2014-06-04 13:10:11 +04:00
|
|
|
$('#app-content-sharinglinks').on('show', function(e) {
|
|
|
|
OCA.Sharing.App.initSharingLinks($(e.target));
|
|
|
|
});
|
|
|
|
$('#app-content-sharinglinks').on('hide', function() {
|
|
|
|
OCA.Sharing.App.removeSharingLinks();
|
|
|
|
});
|
2018-06-20 20:14:50 +03:00
|
|
|
$('#app-content-deletedshares').on('show', function(e) {
|
|
|
|
OCA.Sharing.App.initSharingDeleted($(e.target));
|
|
|
|
});
|
|
|
|
$('#app-content-deletedshares').on('hide', function() {
|
|
|
|
OCA.Sharing.App.removeSharingDeleted();
|
|
|
|
});
|
2018-07-09 14:04:09 +03:00
|
|
|
$('#app-content-shareoverview').on('show', function(e) {
|
|
|
|
OCA.Sharing.App.initShareingOverview($(e.target));
|
|
|
|
});
|
|
|
|
$('#app-content-shareoverview').on('hide', function() {
|
|
|
|
OCA.Sharing.App.removeSharingOverview();
|
|
|
|
});
|
2014-04-30 19:42:35 +04:00
|
|
|
});
|