nextcloud/apps/files_sharing/js/public.js

74 lines
2.3 KiB
JavaScript
Raw Normal View History

2012-08-27 23:46:05 +04:00
// Override download path to files_sharing/public.php
function fileDownloadPath(dir, file) {
2012-09-19 07:56:00 +04:00
var url = $('#downloadURL').val();
if (url.indexOf('&path=') != -1) {
url += '/'+file;
}
return url;
2012-08-27 23:46:05 +04:00
}
$(document).ready(function() {
$('#data-upload-form').tipsy({gravity:'ne', fade:true});
2012-08-27 23:46:05 +04:00
if (typeof FileActions !== 'undefined') {
var mimetype = $('#mimetype').val();
// Show file preview if previewer is available, images are already handled by the template
2013-08-07 13:57:10 +04:00
if (mimetype.substr(0, mimetype.indexOf('/')) != 'image' && $('.publicpreview').length === 0) {
2012-08-27 23:46:05 +04:00
// Trigger default action if not download TODO
var action = FileActions.getDefault(mimetype, 'file', OC.PERMISSION_READ);
if (typeof action === 'undefined') {
$('#noPreview').show();
if (mimetype != 'httpd/unix-directory') {
// NOTE: Remove when a better file previewer solution exists
$('#content').remove();
$('table').remove();
}
} else {
action($('#filename').val());
}
2012-08-27 23:46:05 +04:00
}
2012-09-19 07:56:00 +04:00
FileActions.register('dir', 'Open', OC.PERMISSION_READ, '', function(filename) {
var tr = FileList.findFileEl(filename);
2012-09-19 07:56:00 +04:00
if (tr.length > 0) {
window.location = $(tr).find('a.name').attr('href');
}
});
2012-10-05 16:20:38 +04:00
FileActions.register('file', 'Download', OC.PERMISSION_READ, '', function(filename) {
var tr = FileList.findFileEl(filename);
2012-10-05 16:20:38 +04:00
if (tr.length > 0) {
window.location = $(tr).find('a.name').attr('href');
}
});
FileActions.register('dir', 'Download', OC.PERMISSION_READ, '', function(filename) {
var tr = FileList.findFileEl(filename);
if (tr.length > 0) {
window.location = $(tr).find('a.name').attr('href')+'&download';
}
});
2012-08-27 23:46:05 +04:00
}
var file_upload_start = $('#file_upload_start');
file_upload_start.on('fileuploadadd', function(e, data) {
// Add custom data to the upload handler
data.formData = {
requesttoken: $('#publicUploadRequestToken').val(),
dirToken: $('#dirToken').val(),
subdir: $('input#dir').val()
};
});
2013-06-25 14:24:14 +04:00
// Add Uploadprogress Wrapper to controls bar
$('#controls').append($('#controls .actions div#uploadprogresswrapper'));
$('#uploadprogresswrapper').addClass('public_actions');
2013-06-25 14:24:14 +04:00
2013-08-16 13:40:55 +04:00
// Cancel upload trigger
$('#cancel_upload_button').click(function() {
OC.Upload.cancelUploads();
procesSelection();
});
2013-06-25 14:24:14 +04:00
$('#directLink').focus();
2013-06-25 14:24:14 +04:00
});