1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-06-29 00:17:18 +00:00
seahub/media/scripts/app/views/fileupload.js

366 lines
15 KiB
JavaScript
Raw Normal View History

define([
'common',
'backbone',
'jquery.fileupload-ui'
], function(Common, Backbone, FileUpload) {
window.locale = {
"fileupload": {
"errors": {
"maxFileSize": gettext("File is too big"),
"minFileSize": gettext("File is too small"),
"acceptFileTypes": gettext("Filetype not allowed"),
"maxNumberOfFiles": gettext("Max number of files exceeded"),
"uploadedBytes": gettext("Uploaded bytes exceed file size"),
"emptyResult": gettext("Empty file upload result")
},
"error": gettext("Error"),
"uploaded": gettext("uploaded"),
"canceled": gettext("canceled"),
"start": gettext("Start"),
"cancel": gettext("Cancel"),
"destroy": gettext("Delete")
}
};
var FileUploadView = Backbone.View.extend({
el: $('#upload-file-dialog'),
initialize: function (options) {
var dirView = this.dirView = options.dirView;
var dirents = dirView.dir;
var popup = this.$el.addClass('fixed-upload-file-dialog');
this.popup_height = '200px';
var $fu_status = $('.status', popup),
$total_progress = $('.total-progress', popup),
cancel_all_btn = $('.fileupload-buttonbar .cancel', popup),
close_icon = $('.close', popup),
saving_tip = $('.saving-tip', popup);
var fu_status = {
'uploading': gettext("File Uploading..."),
'complete': gettext("File Upload complete"),
'canceled': gettext("File Upload canceled"),
'failed': gettext("File Upload failed")
};
var uploaded_files = [];
var enable_upload_folder = app.pageOptions.enable_upload_folder;
var new_dir_names = [];
var dirs_to_update = [];
popup.fileupload({
paramName: 'file',
// customize it for 'done'
getFilesFromResponse: function (data) {
if (data.result) {
return data.result;
}
},
autoUpload:true,
maxNumberOfFiles: 500,
sequentialUploads: true
})
.bind('fileuploadadd', function(e, data) {
// for drag & drop
if (!dirView.$el.is(':visible')) {
return false;
}
if (dirents.user_perm && dirents.user_perm != 'rw') {
return false;
}
popup.removeClass('hide');
cancel_all_btn.removeClass('hide');
close_icon.addClass('hide');
var path = dirents.path;
popup.fileupload('option', 'formData', {
'parent_dir': path == '/' ? path : path + '/'
});
if (!enable_upload_folder) {
return;
}
// hide the upload menu
var menu = dirView.$('#upload-menu');
if (!menu.hasClass('hide')) {
menu.find('.item').removeAttr('style')
.end().addClass('hide');
}
2015-02-26 08:36:20 +00:00
var file = data.files[0];
2015-02-26 08:36:20 +00:00
// add folder by clicking 'Upload Folder'
if (file.name == '.') { // a subdirectory will be shown as '.'
data.files.shift();
2015-02-26 08:36:20 +00:00
return;
}
2015-02-26 08:36:20 +00:00
if (file.webkitRelativePath) {
file.relative_path = file.webkitRelativePath;
}
2015-02-26 08:36:20 +00:00
// add folder by drag & drop
if (file.relativePath) {
file.relative_path = file.relativePath + file.name;
}
})
.bind('fileuploadstart', function() {
$fu_status.html(fu_status.uploading);
})
.bind('fileuploadsubmit', function(e, data) {
2015-02-26 08:36:20 +00:00
if (data.files.length == 0) {
return false;
}
var file = data.files[0];
// get url(token) for every file
if (!file.error) {
$.ajax({
url: Common.getUrl({
name: 'get_file_op_url',
repo_id: dirents.repo_id
}) + '?op_type=upload',
cache: false,
dataType: 'json',
success: function(ret) {
if (enable_upload_folder) {
var file_path = file.relative_path,
r_path;
if (file_path) { // 'add folder'
r_path = file_path.substring(0, file_path.lastIndexOf('/') + 1);
}
var formData = popup.fileupload('option', 'formData');
formData.relative_path = r_path || '';
popup.fileupload('option', 'formData', formData);
}
data.url = ret['url'];
data.jqXHR = popup.fileupload('send', data);
},
error: function() {
file.error = gettext("Failed to get upload url");
}
});
return false;
}
})
.bind('fileuploadprogressall', function (e, data) {
$total_progress.html(parseInt(data.loaded / data.total * 100, 10) + '% ' +
'<span style="font-size:14px;color:#555;">(' +
$(this).data('blueimp-fileupload')._formatBitrate(data.bitrate) +
')</span>').removeClass('hide');
if (data.loaded > 0 && data.loaded == data.total) {
saving_tip.show();
}
})
.bind('fileuploaddone', function(e, data) {
if (data.textStatus != 'success') {
return;
}
var file = data.files[0];
var file_path = file.relative_path;
var file_uploaded = data.result[0]; // 'id', 'name', 'size'
// for 'template_download' render
file_uploaded.uploaded = true;
if (file_path) {
file_uploaded.relative_path = file_path.substring(0, file_path.lastIndexOf('/') + 1) + file_uploaded.name;
}
var path = dirents.path;
path = path == '/' ? path : path + '/';
if (data.formData.parent_dir != path) {
return;
}
if (!file_path) {
uploaded_files.push(file_uploaded);
return;
}
if (!enable_upload_folder) {
return;
}
// for 'add folder'
var dir_name = file_path.substring(0, file_path.indexOf('/'));
var dir = dirents.where({'is_dir': true, 'obj_name': dir_name});
if (dir.length > 0) { // 0 or 1
if (dirs_to_update.indexOf(dir_name) == -1) {
dirs_to_update.push(dir_name);
}
} else {
if (new_dir_names.indexOf(dir_name) == -1) {
new_dir_names.push(dir_name);
}
}
})
.bind('fileuploadstop', function () {
cancel_all_btn.addClass('hide');
close_icon.removeClass('hide');
var path = dirents.path;
path = path == '/' ? path : path + '/';
if (popup.fileupload('option','formData').parent_dir != path) {
return;
}
var now = parseInt(new Date().getTime()/1000);
if (uploaded_files.length > 0) {
$(uploaded_files).each(function(index, file) {
var new_dirent = dirents.add({
'is_file': true,
'obj_name': file.name,
'last_modified': now,
'file_size': Common.fileSizeFormat(file.size, 1),
'obj_id': file.id,
'file_icon': 'file.png',
'last_update': gettext("Just now"),
'starred': false,
'sharelink': '',
'sharetoken': ''
}, {silent: true});
dirView.addNewFile(new_dirent);
});
uploaded_files = [];
}
if (new_dir_names.length > 0) {
$(new_dir_names).each(function(index, new_name) {
var new_dirent = dirents.add({
'is_dir': true,
'obj_name': new_name,
'last_modified': now,
'last_update': gettext("Just now"),
'p_dpath': path + new_name
}, {silent: true});
dirView.addNewDir(new_dirent);
});
new_dir_names = [];
}
if (dirs_to_update.length > 0) {
$(dirs_to_update).each(function(index, dir_name) {
var dir_to_update = dirents.where({'is_dir':true, 'obj_name':dir_name});
dir_to_update[0].set({
'last_modified': now,
'last_update': gettext("Just now")
});
});
dirs_to_update = [];
}
})
// after tpl has rendered
.bind('fileuploadcompleted', function() { // 'done'
if ($('.files .cancel', popup).length == 0) {
saving_tip.hide();
$total_progress.addClass('hide');
$fu_status.html(fu_status.complete);
}
})
.bind('fileuploadfailed', function(e, data) { // 'fail'
if ($('.files .cancel', popup).length == 0) {
cancel_all_btn.addClass('hide');
close_icon.removeClass('hide');
$total_progress.addClass('hide');
saving_tip.hide();
if (data.errorThrown == 'abort') { // 'cancel'
$fu_status.html(fu_status.canceled);
} else { // 'error'
$fu_status.html(fu_status.failed);
}
}
});
var max_upload_file_size = app.pageOptions.max_upload_file_size;
if (max_upload_file_size) {
popup.fileupload(
'option',
'maxFileSize',
max_upload_file_size);
}
// Enable iframe cross-domain access via redirect option:
popup.fileupload(
'option',
'redirect',
window.location.href.replace(/\/repo\/[-a-z0-9]{36}\/.*/, app.config.mediaUrl + 'cors/result.html?%s')
);
$(document).click(function(e) {
var target = e.target || event.srcElement;
var closePopup = function(popup, popup_switch) {
if (!popup.hasClass('hide') && !popup.is(target) && !popup.find('*').is(target) && !popup_switch.is(target) && !popup_switch.find('*').is(target) ) {
popup.addClass('hide');
}
};
closePopup(dirView.$('#upload-menu'), dirView.$('#upload-file'));
});
},
events: {
'click .fold-switch': 'foldAndUnfoldPopup',
'click .close': 'closePopup'
},
foldAndUnfoldPopup : function () {
var popup = this.$el;
var full_ht = parseInt(this.popup_height);
var main_con = $('.fileupload-buttonbar, .table', popup);
if (popup.height() == full_ht) {
popup.height($('.hd', popup).outerHeight(true));
main_con.addClass('hide');
} else {
popup.height(full_ht);
main_con.removeClass('hide');
}
},
closePopup: function () {
var popup = this.$el;
popup.addClass('hide');
$('.files', popup).empty();
},
setFileInput: function () {
var dirView = this.dirView,
dir = dirView.dir;
var popup = this.$el;
if (dir.user_perm && dir.user_perm == 'rw') {
popup.fileupload(
'option',
'fileInput',
dirView.$('#upload-file input'));
}
if (!app.pageOptions.enable_upload_folder) {
return;
}
var upload_btn = dirView.$('#upload-file'),
upload_menu = dirView.$('#upload-menu');
if (dir.user_perm && dir.user_perm == 'rw' &&
'webkitdirectory' in $('input[type="file"]', upload_btn)[0]) {
upload_btn.find('input').remove().end().addClass('cspt');
$('.item', upload_menu).click(function() {
popup.fileupload(
'option',
'fileInput',
$('input[type="file"]', $(this))
);
})
.hover(
function() {
$(this).css({'background':'#f3f3f3'});
},
function() {
$(this).css({'background':'transparent'});
}
);
dirView.$('.repo-op').css({'position': 'relative'});
upload_menu.css({
'left': upload_btn.position().left,
'top': parseInt(dirView.$('.repo-op').css('padding-top')) + upload_btn.outerHeight(true)
});
upload_btn.click(function () {
upload_menu.toggleClass('hide');
});
}
}
});
return FileUploadView;
});