2014-02-13 23:20:00 +04:00
|
|
|
/*
|
|
|
|
* 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
|
2012-08-31 03:05:36 +04:00
|
|
|
var action = FileActions.getDefault(mimetype, 'file', OC.PERMISSION_READ);
|
2014-01-23 23:15:10 +04:00
|
|
|
if (typeof action !== 'undefined') {
|
2012-08-30 05:12:10 +04:00
|
|
|
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) {
|
2014-01-10 18:02:26 +04:00
|
|
|
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');
|
|
|
|
}
|
|
|
|
});
|
2014-01-24 16:32:31 +04:00
|
|
|
|
|
|
|
// override since the format is different
|
|
|
|
FileList.getDownloadUrl = function(filename, dir) {
|
2014-02-13 23:20:00 +04:00
|
|
|
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;
|
2012-10-05 16:28:03 +04:00
|
|
|
}
|
2014-02-13 23:20:00 +04:00
|
|
|
return OC.filePath('', '', 'public.php') + '?' + OC.buildQueryString(params);
|
2014-01-24 16:32:31 +04:00
|
|
|
};
|
2012-08-27 23:46:05 +04:00
|
|
|
}
|
|
|
|
|
2013-09-13 19:00:07 +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
|
|
|
|
2014-01-23 04:08:42 +04:00
|
|
|
$(document).on('click', '#directLink', function() {
|
|
|
|
$(this).focus();
|
|
|
|
$(this).select();
|
|
|
|
});
|
2013-10-18 19:40:41 +04:00
|
|
|
|
2013-06-25 14:24:14 +04:00
|
|
|
});
|