nextcloud/apps/files_sharing/js/public.js

76 lines
2.0 KiB
JavaScript
Raw Normal View History

/*
* Copyright (c) 2014
*
* This file is licensed under the Affero General Public License version 3
* or later.
*
* See the COPYING-README file.
*
*/
/* global OC, FileList, FileActions */
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() {
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') {
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');
}
});
// override since the format is different
FileList.getDownloadUrl = function(filename, dir) {
if ($.isArray(filename)) {
filename = JSON.stringify(filename);
}
var path = dir || FileList.getCurrentDirectory();
var params = {
service: 'files',
t: $('#sharingToken').val(),
path: path,
download: null
};
if (filename) {
params.files = filename;
}
return OC.filePath('', '', 'public.php') + '?' + OC.buildQueryString(params);
};
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
$(document).on('click', '#directLink', function() {
$(this).focus();
$(this).select();
});
2013-06-25 14:24:14 +04:00
});