diff --git a/plugins/kolab_files/kolab_files.js b/plugins/kolab_files/kolab_files.js index 3b1ff896..6db1ae98 100644 --- a/plugins/kolab_files/kolab_files.js +++ b/plugins/kolab_files/kolab_files.js @@ -1,4381 +1,4381 @@ /** * Kolab files plugin * * @author Aleksander Machniak * * @licstart The following is the entire license notice for the * JavaScript code in this file. * * Copyright (C) 2011-2015, Kolab Systems AG * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as * published by the Free Software Foundation, either version 3 of the * License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Affero General Public License for more details. * * You should have received a copy of the GNU Affero General Public License * along with this program. If not, see . * * @licend The above is the entire license notice * for the JavaScript code in this file. */ window.rcmail && window.files_api && rcmail.addEventListener('init', function() { if (rcmail.task == 'mail') { // mail compose if (rcmail.env.action == 'compose') { kolab_files_from_cloud_widget($('#compose-attachments > div')); // register some commands to skip warning message on compose page $.merge(rcmail.env.compose_commands, ['files-list', 'files-sort', 'files-search', 'files-search-reset']); } // mail preview else if (rcmail.env.action == 'show' || rcmail.env.action == 'preview') { var attachment_list = $('#attachment-list'); if ($('li', attachment_list).length) { var link = $('') .text(rcmail.gettext('kolab_files.saveall')) .click(function() { kolab_directory_selector_dialog(); }) .insertAfter($('.header-content > .header-links').length ? $('.header-links > a:last') : attachment_list); } rcmail.addEventListener('menu-open', kolab_files_attach_menu_open); rcmail.enable_command('folder-create', true); } // attachment preview else if (rcmail.env.action == 'get') { rcmail.enable_command('folder-create', true); } if (!rcmail.env.action || rcmail.env.action == 'show' || rcmail.env.action == 'preview') { // add "attach from cloud" button for event/task dialog in mail rcmail.addEventListener('plugin.mail2event_dialog', function() { if (!$('#calendar-attachment-form a.fromcloud').length) kolab_files_from_cloud_widget($('#calendar-attachment-form > div.buttons')); }); } } else if (rcmail.task == 'calendar') { // add "attach from cloud" button for event dialog if (!rcmail.env.action) kolab_files_from_cloud_widget($('#calendar-attachment-form > div.buttons, #edit-attachments-form')); } else if (rcmail.task == 'tasks') { // add "attach from cloud" button for task dialog if (!rcmail.env.action) kolab_files_from_cloud_widget($('#taskedit-attachment-form > div.buttons, #taskedit-attachments-form')); } else if (rcmail.task == 'files') { if (rcmail.gui_objects.fileslist) { rcmail.fileslist = new rcube_list_widget(rcmail.gui_objects.fileslist, { multiselect: true, draggable: true, keyboard: true, column_movable: rcmail.env.files_col_movable, dblclick_time: rcmail.dblclick_time }); rcmail.fileslist.addEventListener('dblclick', function(o) { kolab_files_list_dblclick(o); }) .addEventListener('select', function(o) { kolab_files_list_select(o); }) .addEventListener('keypress', function(o) { kolab_files_list_keypress(o); }) .addEventListener('dragstart', function(e) { kolab_files_drag_start(e); }) .addEventListener('dragmove', function(e) { kolab_files_drag_move(e); }) .addEventListener('dragend', function(e) { kolab_files_drag_end(e); }) .addEventListener('column_replace', function(e) { kolab_files_set_coltypes(e, 'files'); }); rcmail.enable_command('menu-open', 'menu-save', 'files-sort', 'files-search', 'files-search-reset', 'folder-create', true); rcmail.fileslist.init(); kolab_files_list_coltypes('files'); kolab_files_drag_drop_init($(rcmail.gui_objects.fileslist).parents('.droptarget')); } if (rcmail.gui_objects.sessionslist) { rcmail.sessionslist = new rcube_list_widget(rcmail.gui_objects.sessionslist, { keyboard: true, column_movable: rcmail.env.sessions_col_movable, dblclick_time: rcmail.dblclick_time }); rcmail.sessionslist.addEventListener('dblclick', function(o) { kolab_files_sessions_list_dblclick(o); }) .addEventListener('select', function(o) { kolab_files_sessions_list_select(o); }) .addEventListener('keypress', function(o) { kolab_files_sessions_list_keypress(o); }) .addEventListener('column_replace', function(e) { kolab_files_set_coltypes(e, 'sessions'); }); rcmail.sessionslist.init(); kolab_files_list_coltypes('sessions'); } // "one file only" commands rcmail.env.file_commands = ['files-get', 'files-rename']; // "one or more file" commands rcmail.env.file_commands_all = ['files-delete', 'files-move', 'files-copy']; if (rcmail.env.action == 'open' || rcmail.env.action == 'edit') { rcmail.enable_command('files-get', true); rcmail.enable_command('files-delete', rcmail.env.file_data.writable); } else { rcmail.enable_command('folder-mount', rcmail.env.external_sources); } } kolab_files_init(); }); /**********************************************************/ /********* Shared functionality **********/ /**********************************************************/ // Initializes API object function kolab_files_init() { if (window.file_api) return; var editor_config = {}; // Initialize application object (don't change var name!) file_api = $.extend(new files_api(), new kolab_files_ui()); file_api.set_env({ token: kolab_files_token(), url: rcmail.env.files_url, sort_col: 'name', sort_reverse: false, search_threads: rcmail.env.search_threads, resources_dir: rcmail.env.files_url.replace(/\/api\/?$/, '/resources'), caps: rcmail.env.files_caps, supported_mimetypes: rcmail.env.file_mimetypes }); file_api.translations = rcmail.labels; if (rcmail.task == 'files') { if (rcmail.env.action == 'edit' && rcmail.env.editor_type) { // Extract the domain here, it can't be done by Chwala // when using WOPI, which does not set iframe src attribute var domain, href = rcmail.env.file_data.viewer.href; if (href && /^(https?:\/\/[^/]+)/i.test(href)) domain = RegExp.$1; editor_config = { // UI elements iframe: $('#fileframe').get(0), domain: domain, export_menu: rcmail.gui_objects.exportmenu ? $('ul', rcmail.gui_objects.exportmenu).get(0) : null, title_input: $('#document-title').get(0), members_list: $('#members').get(0), photo_url: '?_task=addressbook&_action=photo&_error=1&_email=%email', photo_default_url: rcmail.env.photo_placeholder, // events ready: function(data) { document_editor_init(); }, sessionClosed: function(data) { return document_editor_close(); } }; if (rcmail.env.file_data.writable) editor_config.documentChanged = function(data) { rcmail.enable_command('document-save', true); }; } else if (rcmail.env.action == 'open') { // initialize folders list (for dialogs) // file_api.folder_list(); // get ongoing sessions file_api.request('folder_info', {folder: file_api.file_path(rcmail.env.file), sessions: 1}, 'folder_info_response'); } else if (rcmail.env.action == 'share') { kolab_files_share_form_init(); } else { file_api.env.init_folder = rcmail.env.folder; file_api.env.init_collection = rcmail.env.collection; file_api.folder_list(); file_api.browser_capabilities_check(); if (rcmail.env.contextmenu) { rcmail.env.folders_cm = rcmail.contextmenu.init({menu_name: 'foldercontextmenu', menu_source: '#folderoptions > ul', list_object: 'folder_list'}, { addmenuitem: function(p) { // don't add Mount option to the menu var str = $(p.el).children('a').first().attr('onclick'); if (str && str.match(/folder-mount/)) return {result: false, abort: true}; }, activate: function(p) { var folder = rcmail.env.context_menu_source_id; switch (p.command) { case 'files-folder-delete': case 'folder-rename': return !folder.match(/^folder-collection-(.*)$/); case 'folder-share': return !folder.match(/^folder-collection-(.*)$/) && file_api.is_shareable(folder); case 'folder-create': case 'folder-mount': return true; } }, beforecommand: function(e) { rcmail.env.file_api_context = [file_api.env.folder, file_api.env.collection]; file_api.env.folder = rcmail.env.context_menu_source_id; }, aftercommand: function(e) { file_api.env.folder = rcmail.env.file_api_context[0]; file_api.env.collection = rcmail.env.file_api_context[1]; } }); } } } if (rcmail.env.files_caps && !rcmail.env.framed && rcmail.env.files_caps.DOCEDIT) $.extend(editor_config, { // invitation notifications api: file_api, owner: rcmail.env.files_user, interval: rcmail.env.files_interval || 60, invitationMore: true, invitationChange: document_editor_invitation_handler }); $.extend(editor_config, { // notifications/alerts gettext: function(label) { return rcmail.get_label(label, 'kolab_files'); }, set_busy: function(state, message) { return rcmail.set_busy(state, message ? 'kolab_files.' + message : ''); }, hide_message: function(id) { return rcmail.hide_message(id); }, display_message: function(label, type, is_txt, timeout) { if (!is_txt) label = 'kolab_files.' + label; return rcmail.display_message(label, type, timeout * 1000); } }); if (window.document_editor_api) document_editor = new document_editor_api(editor_config); else document_editor = new manticore_api(editor_config); rcmail.addEventListener('responseafterreset', function(o) { // update caps/mountpoints on reset file_api.set_env({caps: rcmail.env.files_caps}); }); }; // returns API authorization token function kolab_files_token() { // consider the token from parent window more reliable (fresher) than in framed window // it's because keep-alive is not requested in frames return rcmail.is_framed() && parent.rcmail.env.files_token ? parent.rcmail.env.files_token : rcmail.env.files_token; }; function kolab_files_from_cloud_widget(elem) { $('') .attr('tabindex', $('button,input', elem).first().attr('tabindex') || 0) .text(rcmail.gettext('kolab_files.fromcloud')) .click(function() { kolab_files_selector_dialog(); }) .appendTo(elem); if (rcmail.gui_objects.fileslist) { rcmail.fileslist = new rcube_list_widget(rcmail.gui_objects.fileslist, { multiselect: true, keyboard: true, column_movable: false, dblclick_time: rcmail.dblclick_time }); rcmail.fileslist.addEventListener('select', function(o) { kolab_files_list_select(o); }); rcmail.enable_command('files-sort', 'files-search', 'files-search-reset', true); rcmail.fileslist.init(); kolab_files_list_coltypes(); } } // folder selection dialog function kolab_directory_selector_dialog(id) { var dialog = $('#files-dialog'), input = $('#file-save-as-input'), form = $('#file-save-as'), list = $('#folderlistbox'), buttons = {}, label = 'saveto', win = window, fn; // attachment is specified if (id) { var attach = $('#attach' + id + '> a').first(), filename = attach.attr('title'); if (!filename) { attach = attach.clone(); $('.attachment-size', attach).remove(); filename = $.trim(attach.text()); } form.show(); dialog.addClass('saveas'); input.val(filename); } // attachment preview page else if (rcmail.env.action == 'get') { id = rcmail.env.part; form.show(); dialog.addClass('saveas'); input.val(rcmail.env.filename); } else { form.hide(); dialog.removeClass('saveas'); label = 'saveall'; } $('#foldercreatelink').attr('tabindex', 0); buttons[rcmail.gettext('kolab_files.save')] = function () { if (!file_api.env.folder) return; var lock = rcmail.set_busy(true, 'saving'), request = { act: 'save-file', source: rcmail.env.mailbox, uid: rcmail.env.uid, dest: file_api.env.folder }; if (id) { request.id = id; request.name = input.val(); } rcmail.http_post('plugin.kolab_files', request, lock); kolab_dialog_close(this); }; buttons[rcmail.gettext('kolab_files.cancel')] = function () { kolab_dialog_close(this); }; if (!rcmail.env.folders_loaded) { fn = function() { rcmail.env.folder_list_selector = '#files-dialog #files-folder-list'; rcmail.env.folder_search_selector = '#files-dialog #foldersearch'; file_api.folder_list({writable: 1}); rcmail.env.folders_loaded = true; }; } // show dialog window kolab_dialog_show(dialog, { title: rcmail.gettext('kolab_files.' + label), buttons: buttons, button_classes: ['mainaction save', 'cancel'], classes: {'ui-dialog': 'selection-dialog files-dialog'}, minWidth: 250, minHeight: 300, height: 400, width: 300 }, fn); // add link for "more options" drop-down if (!dialog.find('foldercreatelink').length) $('') .attr({href: '#', 'class': 'btn btn-link options add-folder'}) .text(rcmail.gettext('kolab_files.addfolder')) .click(function(e) { rcmail.command('folder-create', '', this, e); }) .prependTo(dialog.parent().parent().find('.ui-dialog-buttonset')); // "enable" folder creation when dialog is displayed in parent window if (rcmail.is_framed()) { parent.rcmail.enable_command('folder-create', true); parent.rcmail.folder_create = function() { win.kolab_files_folder_create_dialog(); }; } }; // file selection dialog function kolab_files_selector_dialog() { var dialog = $('#files-compose-dialog'), buttons = {}; buttons[rcmail.gettext('kolab_files.attachsel')] = function () { var list = []; $('#filelist tr.selected').each(function() { list.push($(this).data('file')); }); kolab_dialog_close(this); if (list.length) { // display upload indicator and cancel button var content = '' + rcmail.get_label('kolab_files.attaching') + '', id = new Date().getTime(); rcmail.add2attachment_list(id, {name:'', html:content, classname:'uploading', complete:false}); // send request rcmail.http_post('plugin.kolab_files', { act: 'attach-file', files: list, id: rcmail.env.compose_id, uploadid: id }); } }; buttons[rcmail.gettext('kolab_files.cancel')] = function () { kolab_dialog_close(this); }; // show dialog window kolab_dialog_show(dialog, { title: rcmail.gettext('kolab_files.selectfiles'), buttons: buttons, button_classes: ['mainaction save', 'cancel'], classes: {'ui-dialog': 'selection-dialog files-dialog'}, minWidth: 500, minHeight: 300, width: 700, height: 500 }, function() { rcmail.fileslist.resize(); }); if (!rcmail.env.files_loaded) { rcmail.env.folder_list_selector = '#files-compose-dialog #files-folder-list'; rcmail.env.folder_search_selector = '#files-compose-dialog #foldersearch'; file_api.folder_list(); rcmail.env.files_loaded = true; } else { rcmail.fileslist.clear_selection(); } }; function kolab_files_attach_menu_open(p) { if (!p || !p.props || p.props.menu != 'attachmentmenu') return; var id = p.props.id; $('#attachmenusaveas').unbind('click').attr('onclick', '').click(function(e) { return kolab_directory_selector_dialog(id); }); }; // folder creation dialog function kolab_files_folder_create_dialog() { var dialog = $('#files-folder-create-dialog'), buttons = {}, select = $('select[name="parent"]', dialog).html(''), input = $('input[name="name"]', dialog).val(''); buttons[rcmail.gettext('kolab_files.create')] = function () { var folder = '', name = input.val(), parent = select.val(); if (!name) return; if (parent) folder = parent + file_api.env.directory_separator; folder += name; file_api.folder_create(folder); kolab_dialog_close(this); }; buttons[rcmail.gettext('kolab_files.cancel')] = function () { kolab_dialog_close(this); }; // show dialog window kolab_dialog_show(dialog, { title: rcmail.gettext('kolab_files.foldercreate'), buttons: buttons, button_classes: ['mainaction save', 'cancel'], height: 200 }); // Fix submitting form with Enter $('form', dialog).submit(kolab_dialog_submit_handler); // build parent selector file_api.folder_select_element(select, {empty: !rcmail.env.files_caps.NOROOT, writable: true}); }; // folder edit dialog function kolab_files_folder_edit_dialog() { var dialog = $('#files-folder-edit-dialog'), buttons = {}, separator = file_api.env.directory_separator, current_folder = file_api.env.folder, arr = current_folder.split(separator), folder = arr.pop(), path = arr.join(separator), select = $('select[name="parent"]', dialog).html(''), input = $('input[name="name"]', dialog).val(folder); buttons[rcmail.gettext('kolab_files.save')] = function () { var folder = '', name = input.val(), parent = select.val(); if (!name) return; if (parent) folder = parent + separator; folder += name; file_api.folder_rename(current_folder, folder); kolab_dialog_close(this); }; buttons[rcmail.gettext('kolab_files.cancel')] = function () { kolab_dialog_close(this); }; // show dialog window kolab_dialog_show(dialog, { title: rcmail.gettext('kolab_files.folderedit'), buttons: buttons, button_classes: ['mainaction save', 'cancel'], height: 200 }); // Fix submitting form with Enter $('form', dialog).submit(kolab_dialog_submit_handler); // build parent selector file_api.folder_select_element(select, {selected: path, empty: !rcmail.env.files_caps.NOROOT}); }; // folder sharing dialog function kolab_files_folder_share_dialog() { var dialog = $(''; document.body.insertAdjacentHTML('BeforeEnd', html); } // for standards-compliant browsers else $('