2014-05-09 00:06:30 +04:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2014
|
|
|
|
*
|
|
|
|
* This file is licensed under the Affero General Public License version 3
|
|
|
|
* or later.
|
|
|
|
*
|
|
|
|
* See the COPYING-README file.
|
|
|
|
*
|
|
|
|
*/
|
2013-10-28 23:22:06 +04:00
|
|
|
(function() {
|
2014-05-09 00:06:30 +04:00
|
|
|
var DELETED_REGEXP = new RegExp(/^(.+)\.d[0-9]+$/);
|
2018-09-03 20:11:14 +03:00
|
|
|
var FILENAME_PROP = '{http://nextcloud.org/ns}trashbin-filename';
|
|
|
|
var DELETION_TIME_PROP = '{http://nextcloud.org/ns}trashbin-deletion-time';
|
2013-10-28 23:22:06 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Convert a file name in the format filename.d12345 to the real file name.
|
|
|
|
* This will use basename.
|
|
|
|
* The name will not be changed if it has no ".d12345" suffix.
|
2014-06-24 01:56:10 +04:00
|
|
|
* @param {String} name file name
|
|
|
|
* @return {String} converted file name
|
2013-10-28 23:22:06 +04:00
|
|
|
*/
|
2014-05-09 00:06:30 +04:00
|
|
|
function getDeletedFileName(name) {
|
2013-10-28 23:22:06 +04:00
|
|
|
name = OC.basename(name);
|
2014-05-09 00:06:30 +04:00
|
|
|
var match = DELETED_REGEXP.exec(name);
|
2013-10-28 23:22:06 +04:00
|
|
|
if (match && match.length > 1) {
|
|
|
|
name = match[1];
|
2013-08-17 15:07:18 +04:00
|
|
|
}
|
2013-10-28 23:22:06 +04:00
|
|
|
return name;
|
2014-05-09 00:06:30 +04:00
|
|
|
}
|
2013-10-28 23:22:06 +04:00
|
|
|
|
2014-06-24 01:56:10 +04:00
|
|
|
/**
|
|
|
|
* @class OCA.Trashbin.FileList
|
|
|
|
* @augments OCA.Files.FileList
|
|
|
|
* @classdesc List of deleted files
|
|
|
|
*
|
|
|
|
* @param $el container element with existing markup for the #controls
|
|
|
|
* and a table
|
|
|
|
* @param [options] map of options
|
|
|
|
*/
|
2014-05-20 18:01:34 +04:00
|
|
|
var FileList = function($el, options) {
|
2018-09-04 12:33:14 +03:00
|
|
|
this.client = options.client;
|
2014-05-20 18:01:34 +04:00
|
|
|
this.initialize($el, options);
|
2013-10-28 23:22:06 +04:00
|
|
|
};
|
2014-06-24 01:56:10 +04:00
|
|
|
FileList.prototype = _.extend({}, OCA.Files.FileList.prototype,
|
|
|
|
/** @lends OCA.Trashbin.FileList.prototype */ {
|
2014-05-12 21:54:20 +04:00
|
|
|
id: 'trashbin',
|
2014-05-09 00:06:30 +04:00
|
|
|
appName: t('files_trashbin', 'Deleted files'),
|
2018-09-03 20:11:14 +03:00
|
|
|
/** @type {OC.Files.Client} */
|
|
|
|
client: null,
|
2013-10-28 23:22:06 +04:00
|
|
|
|
2014-06-24 01:56:10 +04:00
|
|
|
/**
|
|
|
|
* @private
|
|
|
|
*/
|
2014-05-09 00:06:30 +04:00
|
|
|
initialize: function() {
|
2018-09-03 20:11:14 +03:00
|
|
|
this.client.addFileInfoParser(function(response, data) {
|
|
|
|
var props = response.propStat[0].properties;
|
|
|
|
return {
|
|
|
|
displayName: props[FILENAME_PROP],
|
|
|
|
mtime: parseInt(props[DELETION_TIME_PROP], 10) * 1000,
|
|
|
|
hasPreview: true,
|
|
|
|
path: data.path.substr(6), // remove leading /trash
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2014-05-09 00:06:30 +04:00
|
|
|
var result = OCA.Files.FileList.prototype.initialize.apply(this, arguments);
|
|
|
|
this.$el.find('.undelete').click('click', _.bind(this._onClickRestoreSelected, this));
|
2013-10-28 23:22:06 +04:00
|
|
|
|
2014-05-09 00:06:30 +04:00
|
|
|
this.setSort('mtime', 'desc');
|
|
|
|
/**
|
|
|
|
* Override crumb making to add "Deleted Files" entry
|
|
|
|
* and convert files with ".d" extensions to a more
|
|
|
|
* user friendly name.
|
|
|
|
*/
|
|
|
|
this.breadcrumb._makeCrumbs = function() {
|
|
|
|
var parts = OCA.Files.BreadCrumb.prototype._makeCrumbs.apply(this, arguments);
|
|
|
|
for (var i = 1; i < parts.length; i++) {
|
|
|
|
parts[i].name = getDeletedFileName(parts[i].name);
|
|
|
|
}
|
|
|
|
return parts;
|
|
|
|
};
|
2013-10-28 23:22:06 +04:00
|
|
|
|
2014-12-01 18:17:28 +03:00
|
|
|
OC.Plugins.attach('OCA.Trashbin.FileList', this);
|
2014-05-09 00:06:30 +04:00
|
|
|
return result;
|
|
|
|
},
|
2013-10-28 23:22:06 +04:00
|
|
|
|
2014-05-12 21:54:20 +04:00
|
|
|
/**
|
|
|
|
* Override to only return read permissions
|
|
|
|
*/
|
|
|
|
getDirectoryPermissions: function() {
|
|
|
|
return OC.PERMISSION_READ | OC.PERMISSION_DELETE;
|
|
|
|
},
|
|
|
|
|
2014-05-09 00:06:30 +04:00
|
|
|
_setCurrentDir: function(targetDir) {
|
|
|
|
OCA.Files.FileList.prototype._setCurrentDir.apply(this, arguments);
|
2014-02-12 17:50:23 +04:00
|
|
|
|
2014-05-09 00:06:30 +04:00
|
|
|
var baseDir = OC.basename(targetDir);
|
|
|
|
if (baseDir !== '') {
|
|
|
|
this.setPageTitle(getDeletedFileName(baseDir));
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
_createRow: function() {
|
|
|
|
// FIXME: MEGAHACK until we find a better solution
|
|
|
|
var tr = OCA.Files.FileList.prototype._createRow.apply(this, arguments);
|
|
|
|
tr.find('td.filesize').remove();
|
|
|
|
return tr;
|
|
|
|
},
|
|
|
|
|
|
|
|
getAjaxUrl: function(action, params) {
|
|
|
|
var q = '';
|
|
|
|
if (params) {
|
|
|
|
q = '?' + OC.buildQueryString(params);
|
|
|
|
}
|
|
|
|
return OC.filePath('files_trashbin', 'ajax', action + '.php') + q;
|
|
|
|
},
|
|
|
|
|
2014-05-12 21:54:20 +04:00
|
|
|
setupUploadEvents: function() {
|
|
|
|
// override and do nothing
|
|
|
|
},
|
|
|
|
|
2014-05-09 00:06:30 +04:00
|
|
|
linkTo: function(dir){
|
2014-05-12 21:54:20 +04:00
|
|
|
return OC.linkTo('files', 'index.php')+"?view=trashbin&dir="+ encodeURIComponent(dir).replace(/%2F/g, '/');
|
2014-05-09 00:06:30 +04:00
|
|
|
},
|
|
|
|
|
2015-08-25 12:29:35 +03:00
|
|
|
elementToFile: function($el) {
|
|
|
|
var fileInfo = OCA.Files.FileList.prototype.elementToFile($el);
|
|
|
|
if (this.getCurrentDirectory() === '/') {
|
|
|
|
fileInfo.displayName = getDeletedFileName(fileInfo.name);
|
|
|
|
}
|
|
|
|
// no size available
|
|
|
|
delete fileInfo.size;
|
|
|
|
return fileInfo;
|
|
|
|
},
|
|
|
|
|
2014-05-09 00:06:30 +04:00
|
|
|
updateEmptyContent: function(){
|
|
|
|
var exists = this.$fileList.find('tr:first').exists();
|
|
|
|
this.$el.find('#emptycontent').toggleClass('hidden', exists);
|
|
|
|
this.$el.find('#filestable th').toggleClass('hidden', !exists);
|
|
|
|
},
|
|
|
|
|
2018-09-04 12:33:14 +03:00
|
|
|
_removeCallback: function(files) {
|
2014-05-09 00:06:30 +04:00
|
|
|
var $el;
|
2014-02-12 17:50:23 +04:00
|
|
|
for (var i = 0; i < files.length; i++) {
|
2018-09-04 12:33:14 +03:00
|
|
|
$el = this.remove(OC.basename(files[i]), {updateSummary: false});
|
2014-05-09 00:06:30 +04:00
|
|
|
this.fileSummary.remove({type: $el.attr('data-type'), size: $el.attr('data-size')});
|
2014-02-12 17:50:23 +04:00
|
|
|
}
|
2014-05-09 00:06:30 +04:00
|
|
|
this.fileSummary.update();
|
|
|
|
this.updateEmptyContent();
|
|
|
|
},
|
2014-02-12 17:50:23 +04:00
|
|
|
|
2014-05-09 00:06:30 +04:00
|
|
|
_onClickRestoreSelected: function(event) {
|
|
|
|
event.preventDefault();
|
|
|
|
var self = this;
|
2018-09-04 15:12:47 +03:00
|
|
|
var files = _.pluck(this.getSelectedFiles(), 'name');
|
|
|
|
for (var i = 0; i < files.length; i++) {
|
|
|
|
var tr = this.findFileEl(files[i]);
|
|
|
|
this.showFileBusyState(tr, true);
|
2014-02-12 17:50:23 +04:00
|
|
|
}
|
|
|
|
|
2018-09-04 15:12:47 +03:00
|
|
|
this.fileMultiSelectMenu.toggleLoading('restore', true);
|
|
|
|
var restorePromises = files.map(function(file) {
|
|
|
|
return self.client.move(OC.joinPaths('trash', self.getCurrentDirectory(), file), OC.joinPaths('restore', file), true)
|
|
|
|
.then(
|
|
|
|
function() {
|
|
|
|
self._removeCallback([file]);
|
2014-02-12 17:50:23 +04:00
|
|
|
}
|
2018-09-04 15:12:47 +03:00
|
|
|
);
|
|
|
|
});
|
|
|
|
return Promise.all(restorePromises).then(
|
|
|
|
function() {
|
2018-06-16 00:17:46 +03:00
|
|
|
self.fileMultiSelectMenu.toggleLoading('restore', false);
|
2018-09-04 15:12:47 +03:00
|
|
|
},
|
|
|
|
function() {
|
|
|
|
OC.Notification.show(t('files_trashbin', 'Error while restoring files from trashbin'));
|
2014-02-12 17:50:23 +04:00
|
|
|
}
|
2014-05-09 00:06:30 +04:00
|
|
|
);
|
|
|
|
},
|
2014-02-12 17:50:23 +04:00
|
|
|
|
2014-05-09 00:06:30 +04:00
|
|
|
_onClickDeleteSelected: function(event) {
|
2014-02-12 17:50:23 +04:00
|
|
|
event.preventDefault();
|
2014-05-09 00:06:30 +04:00
|
|
|
var self = this;
|
2014-05-12 21:54:20 +04:00
|
|
|
var allFiles = this.$el.find('.select-all').is(':checked');
|
2018-09-04 12:33:14 +03:00
|
|
|
var files = _.pluck(this.getSelectedFiles(), 'name');
|
|
|
|
for (var i = 0; i < files.length; i++) {
|
|
|
|
var tr = this.findFileEl(files[i]);
|
|
|
|
this.showFileBusyState(tr, true);
|
2014-05-09 00:06:30 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
if (allFiles) {
|
2018-09-04 15:12:47 +03:00
|
|
|
return this.client.remove(OC.joinPaths('trash', this.getCurrentDirectory()))
|
2018-09-04 12:33:14 +03:00
|
|
|
.then(
|
|
|
|
function() {
|
2014-05-09 00:06:30 +04:00
|
|
|
self.hideMask();
|
|
|
|
self.setFiles([]);
|
2018-09-04 12:33:14 +03:00
|
|
|
},
|
|
|
|
function() {
|
|
|
|
OC.Notification.show(t('files_trashbin', 'Error while emptying trashbin'));
|
2014-05-09 00:06:30 +04:00
|
|
|
}
|
2018-09-04 12:33:14 +03:00
|
|
|
);
|
|
|
|
} else {
|
|
|
|
this.fileMultiSelectMenu.toggleLoading('delete', true);
|
|
|
|
var deletePromises = files.map(function(file) {
|
2018-09-04 15:12:47 +03:00
|
|
|
return self.client.remove(OC.joinPaths('trash', self.getCurrentDirectory(), file))
|
2018-09-04 12:33:14 +03:00
|
|
|
.then(
|
|
|
|
function() {
|
|
|
|
self._removeCallback([file]);
|
|
|
|
}
|
|
|
|
);
|
|
|
|
});
|
|
|
|
return Promise.all(deletePromises).then(
|
|
|
|
function() {
|
2018-06-06 21:01:25 +03:00
|
|
|
self.fileMultiSelectMenu.toggleLoading('delete', false);
|
2018-09-04 12:33:14 +03:00
|
|
|
},
|
|
|
|
function() {
|
|
|
|
OC.Notification.show(t('files_trashbin', 'Error while removing files from trashbin'));
|
2014-05-09 00:06:30 +04:00
|
|
|
}
|
2018-09-04 12:33:14 +03:00
|
|
|
);
|
|
|
|
}
|
2014-05-09 00:06:30 +04:00
|
|
|
},
|
|
|
|
|
|
|
|
_onClickFile: function(event) {
|
|
|
|
var mime = $(this).parent().parent().data('mime');
|
|
|
|
if (mime !== 'httpd/unix-directory') {
|
|
|
|
event.preventDefault();
|
|
|
|
}
|
|
|
|
return OCA.Files.FileList.prototype._onClickFile.apply(this, arguments);
|
|
|
|
},
|
|
|
|
|
|
|
|
generatePreviewUrl: function(urlSpec) {
|
2018-05-23 15:25:51 +03:00
|
|
|
return OC.generateUrl('/apps/files_trashbin/preview?') + $.param(urlSpec);
|
2014-05-09 00:06:30 +04:00
|
|
|
},
|
|
|
|
|
2014-05-12 21:54:20 +04:00
|
|
|
getDownloadUrl: function() {
|
2014-05-09 00:06:30 +04:00
|
|
|
// no downloads
|
|
|
|
return '#';
|
|
|
|
},
|
|
|
|
|
2014-05-12 21:54:20 +04:00
|
|
|
updateStorageStatistics: function() {
|
|
|
|
// no op because the trashbin doesn't have
|
|
|
|
// storage info like free space / used space
|
2014-12-08 17:16:15 +03:00
|
|
|
},
|
|
|
|
|
|
|
|
isSelectedDeletable: function() {
|
|
|
|
return true;
|
2015-07-13 18:38:13 +03:00
|
|
|
},
|
|
|
|
|
2018-09-03 20:11:14 +03:00
|
|
|
/**
|
|
|
|
* Returns list of webdav properties to request
|
|
|
|
*/
|
|
|
|
_getWebdavProperties: function() {
|
|
|
|
return [FILENAME_PROP, DELETION_TIME_PROP].concat(this.filesClient.getPropfindProperties());
|
|
|
|
},
|
|
|
|
|
2015-07-13 18:38:13 +03:00
|
|
|
/**
|
|
|
|
* Reloads the file list using ajax call
|
|
|
|
*
|
|
|
|
* @return ajax call object
|
|
|
|
*/
|
|
|
|
reload: function() {
|
|
|
|
this._selectedFiles = {};
|
|
|
|
this._selectionSummary.clear();
|
|
|
|
this.$el.find('.select-all').prop('checked', false);
|
|
|
|
this.showMask();
|
|
|
|
if (this._reloadCall) {
|
|
|
|
this._reloadCall.abort();
|
|
|
|
}
|
2018-09-03 20:11:14 +03:00
|
|
|
this._reloadCall = this.client.getFolderContents(
|
|
|
|
'trash/' + this.getCurrentDirectory(), {
|
|
|
|
includeParent: false,
|
|
|
|
properties: this._getWebdavProperties()
|
2015-07-13 18:38:13 +03:00
|
|
|
}
|
2018-09-03 20:11:14 +03:00
|
|
|
);
|
2015-07-13 18:38:13 +03:00
|
|
|
var callBack = this.reloadCallback.bind(this);
|
|
|
|
return this._reloadCall.then(callBack, callBack);
|
|
|
|
},
|
2018-09-03 20:11:14 +03:00
|
|
|
reloadCallback: function(status, result) {
|
2015-07-13 18:38:13 +03:00
|
|
|
delete this._reloadCall;
|
|
|
|
this.hideMask();
|
|
|
|
|
2018-09-03 20:11:14 +03:00
|
|
|
if (status === 401) {
|
2016-03-02 19:42:51 +03:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2015-07-13 18:38:13 +03:00
|
|
|
// Firewall Blocked request?
|
2018-09-03 20:11:14 +03:00
|
|
|
if (status === 403) {
|
2015-07-13 18:38:13 +03:00
|
|
|
// Go home
|
|
|
|
this.changeDirectory('/');
|
|
|
|
OC.Notification.show(t('files', 'This operation is forbidden'));
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Did share service die or something else fail?
|
2018-09-03 20:11:14 +03:00
|
|
|
if (status === 500) {
|
2015-07-13 18:38:13 +03:00
|
|
|
// Go home
|
|
|
|
this.changeDirectory('/');
|
|
|
|
OC.Notification.show(t('files', 'This directory is unavailable, please check the logs or contact the administrator'));
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2018-09-03 20:11:14 +03:00
|
|
|
if (status === 404) {
|
2015-07-13 18:38:13 +03:00
|
|
|
// go back home
|
|
|
|
this.changeDirectory('/');
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
// aborted ?
|
2018-09-03 20:11:14 +03:00
|
|
|
if (status === 0){
|
2015-07-13 18:38:13 +03:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-09-03 20:11:14 +03:00
|
|
|
this.setFiles(result);
|
2015-07-13 18:38:13 +03:00
|
|
|
return true;
|
|
|
|
},
|
2014-02-12 17:50:23 +04:00
|
|
|
|
2014-05-09 00:06:30 +04:00
|
|
|
});
|
|
|
|
|
|
|
|
OCA.Trashbin.FileList = FileList;
|
2013-10-28 23:22:06 +04:00
|
|
|
})();
|
2014-05-09 00:06:30 +04:00
|
|
|
|