OC.Share={ SHARE_TYPE_USER:0, SHARE_TYPE_GROUP:1, SHARE_TYPE_LINK:3, SHARE_TYPE_EMAIL:4, itemShares:[], statuses:[], droppedDown:false, loadIcons:function(itemType) { // Load all share icons $.get(OC.filePath('core', 'ajax', 'share.php'), { fetch: 'getItemsSharedStatuses', itemType: itemType }, function(result) { if (result && result.status === 'success') { $.each(result.data, function(item, hasLink) { OC.Share.statuses[item] = hasLink; // Links override shared in terms of icon display if (hasLink) { var image = OC.imagePath('core', 'actions/public'); } else { var image = OC.imagePath('core', 'actions/shared'); } if (itemType != 'file' && itemType != 'folder') { $('a.share[data-item="'+item+'"]').css('background', 'url('+image+') no-repeat center'); } else { var file = $('tr').filterAttr('data-file', OC.basename(item)); if (file.length > 0) { var action = $(file).find('.fileactions .action').filterAttr('data-action', 'Share'); action.find('img').attr('src', image); action.addClass('permanent'); action.html(t('core', 'Shared')); } var dir = $('#dir').val(); if (dir.length > 1) { var last = ''; var path = dir; // Search for possible parent folders that are shared while (path != last) { if (path == item) { var action = $('.fileactions .action').filterAttr('data-action', 'Share'); var img = action.find('img'); if (img.attr('src') != OC.imagePath('core', 'actions/public')) { img.attr('src', image); action.addClass('permanent'); action.html(t('core', 'Shared')); } } last = path; path = OC.Share.dirname(path); } } } }); } }); }, updateIcon:function(itemType, itemSource) { if (itemType == 'file' || itemType == 'folder') { var file = $('tr').filterAttr('data-id', String(itemSource)); var filename = file.data('file'); if ($('#dir').val() == '/') { itemSource = $('#dir').val() + filename; } else { itemSource = $('#dir').val() + '/' + filename; } } var shares = false; var link = false; var image = OC.imagePath('core', 'actions/share'); $.each(OC.Share.itemShares, function(index) { if (OC.Share.itemShares[index]) { if (index == OC.Share.SHARE_TYPE_LINK) { if (OC.Share.itemShares[index] == true) { shares = true; image = OC.imagePath('core', 'actions/public'); link = true; return; } } else if (OC.Share.itemShares[index].length > 0) { shares = true; image = OC.imagePath('core', 'actions/shared'); } } }); if (itemType != 'file' && itemType != 'folder') { $('a.share[data-item="'+itemSource+'"]').css('background', 'url('+image+') no-repeat center'); } else { var action = $(file).find('.fileactions .action').filterAttr('data-action', 'Share'); action.find('img').attr('src', image); if (shares) { action.addClass('permanent'); action.html(t('core', 'Shared')); } else { action.removeClass('permanent'); action.html(t('core', 'Share')); } } if (shares) { OC.Share.statuses[itemSource] = link; } else { delete OC.Share.statuses[itemSource]; } }, loadItem:function(itemType, itemSource) { var data = ''; var checkReshare = true; // Switch file sources to path to check if status is set if (itemType == 'file' || itemType == 'folder') { var filename = $('tr').filterAttr('data-id', String(itemSource)).data('file'); if ($('#dir').val() == '/') { var item = $('#dir').val() + filename; } else { var item = $('#dir').val() + '/' + filename; } if (item.substring(0, 8) != '/Shared/') { checkReshare = false; } } else { var item = itemSource; } if (typeof OC.Share.statuses[item] === 'undefined') { // NOTE: Check does not always work and misses some shares, fix later checkShares = true; } else { checkShares = true; } $.ajax({type: 'GET', url: OC.filePath('core', 'ajax', 'share.php'), data: { fetch: 'getItem', itemType: itemType, itemSource: itemSource, checkReshare: checkReshare, checkShares: checkShares }, async: false, success: function(result) { if (result && result.status === 'success') { data = result.data; } else { data = false; } }}); return data; }, share:function(itemType, itemSource, shareType, shareWith, permissions, callback) { $.post(OC.filePath('core', 'ajax', 'share.php'), { action: 'share', itemType: itemType, itemSource: itemSource, shareType: shareType, shareWith: shareWith, permissions: permissions }, function(result) { if (result && result.status === 'success') { if (callback) { callback(result.data); } } else { OC.dialogs.alert(result.data.message, t('core', 'Error while sharing')); } }); }, unshare:function(itemType, itemSource, shareType, shareWith, callback) { $.post(OC.filePath('core', 'ajax', 'share.php'), { action: 'unshare', itemType: itemType, itemSource: itemSource, shareType: shareType, shareWith: shareWith }, function(result) { if (result && result.status === 'success') { if (callback) { callback(); } } else { OC.dialogs.alert(t('core', 'Error'), t('core', 'Error while unsharing')); } }); }, setPermissions:function(itemType, itemSource, shareType, shareWith, permissions) { $.post(OC.filePath('core', 'ajax', 'share.php'), { action: 'setPermissions', itemType: itemType, itemSource: itemSource, shareType: shareType, shareWith: shareWith, permissions: permissions }, function(result) { if (!result || result.status !== 'success') { OC.dialogs.alert(t('core', 'Error'), t('core', 'Error while changing permissions')); } }); }, showDropDown:function(itemType, itemSource, appendTo, link, possiblePermissions) { var data = OC.Share.loadItem(itemType, itemSource); var html = ''; $(html).appendTo(appendTo); } $('#dropdown').show('blind', function() { OC.Share.droppedDown = true; }); $('#shareWith').focus(); }, hideDropDown:function(callback) { $('#dropdown').hide('blind', function() { OC.Share.droppedDown = false; $('#dropdown').remove(); if (typeof FileActions !== 'undefined') { $('tr').removeClass('mouseOver'); } if (callback) { callback.call(); } }); }, addShareWith:function(shareType, shareWith, shareWithDisplayName, permissions, possiblePermissions, collection) { if (!OC.Share.itemShares[shareType]) { OC.Share.itemShares[shareType] = []; } OC.Share.itemShares[shareType].push(shareWith); if (collection) { if (collection.item_type == 'file' || collection.item_type == 'folder') { var item = collection.path; } else { var item = collection.item_source; } var collectionList = $('#shareWithList li').filterAttr('data-collection', item); if (collectionList.length > 0) { $(collectionList).append(', '+shareWith); } else { var html = '
  • '+t('core', 'Shared in {item} with {user}', {'item': item, user: shareWithDisplayName})+'
  • '; $('#shareWithList').prepend(html); } } else { var editChecked = createChecked = updateChecked = deleteChecked = shareChecked = ''; if (permissions & OC.PERMISSION_CREATE) { createChecked = 'checked="checked"'; editChecked = 'checked="checked"'; } if (permissions & OC.PERMISSION_UPDATE) { updateChecked = 'checked="checked"'; editChecked = 'checked="checked"'; } if (permissions & OC.PERMISSION_DELETE) { deleteChecked = 'checked="checked"'; editChecked = 'checked="checked"'; } if (permissions & OC.PERMISSION_SHARE) { shareChecked = 'checked="checked"'; } var html = '
  • '; html += ''; if(shareWith.length > 14){ html += shareWithDisplayName.substr(0,11) + '...'; }else{ html += shareWithDisplayName; } if (possiblePermissions & OC.PERMISSION_CREATE || possiblePermissions & OC.PERMISSION_UPDATE || possiblePermissions & OC.PERMISSION_DELETE) { if (editChecked == '') { html += '
  • '; $(html).appendTo('#shareWithList'); $('#expiration').show(); } }, showLink:function(token, password, itemSource) { OC.Share.itemShares[OC.Share.SHARE_TYPE_LINK] = true; $('#linkCheckbox').attr('checked', true); if (! token) { //fallback to pre token link var filename = $('tr').filterAttr('data-id', String(itemSource)).data('file'); var type = $('tr').filterAttr('data-id', String(itemSource)).data('type'); if ($('#dir').val() == '/') { var file = $('#dir').val() + filename; } else { var file = $('#dir').val() + '/' + filename; } file = '/'+OC.currentUser+'/files'+file; var link = parent.location.protocol+'//'+location.host+OC.linkTo('', 'public.php')+'?service=files&'+type+'='+encodeURIComponent(file); } else { //TODO add path param when showing a link to file in a subfolder of a public link share var link = parent.location.protocol+'//'+location.host+OC.linkTo('', 'public.php')+'?service=files&t='+token; } $('#linkText').val(link); $('#linkText').show('blind'); $('#linkText').css('display','block'); $('#showPassword').show(); $('#showPassword+label').show(); if (password != null) { $('#linkPass').show('blind'); $('#showPassword').attr('checked', true); $('#linkPassText').attr('placeholder', t('core', 'Password protected')); } $('#expiration').show(); $('#emailPrivateLink #email').show(); $('#emailPrivateLink #emailButton').show(); }, hideLink:function() { $('#linkText').hide('blind'); $('#showPassword').hide(); $('#showPassword+label').hide(); $('#linkPass').hide(); $('#emailPrivateLink #email').hide(); $('#emailPrivateLink #emailButton').hide(); }, dirname:function(path) { return path.replace(/\\/g,'/').replace(/\/[^\/]*$/, ''); }, showExpirationDate:function(date) { $('#expirationCheckbox').attr('checked', true); $('#expirationDate').before('
    '); $('#expirationDate').val(date); $('#expirationDate').show(); $('#expirationDate').datepicker({ dateFormat : 'dd-mm-yy' }); } } $(document).ready(function() { if(typeof monthNames != 'undefined'){ $.datepicker.setDefaults({ monthNames: monthNames, monthNamesShort: $.map(monthNames, function(v) { return v.slice(0,3)+'.'; }), dayNames: dayNames, dayNamesMin: $.map(dayNames, function(v) { return v.slice(0,2); }), dayNamesShort: $.map(dayNames, function(v) { return v.slice(0,3)+'.'; }), firstDay: firstDay }); } $(document).on('click', 'a.share', function(event) { event.stopPropagation(); if ($(this).data('item-type') !== undefined && $(this).data('item') !== undefined) { var itemType = $(this).data('item-type'); var itemSource = $(this).data('item'); var appendTo = $(this).parent().parent(); var link = false; var possiblePermissions = $(this).data('possible-permissions'); if ($(this).data('link') !== undefined && $(this).data('link') == true) { link = true; } if (OC.Share.droppedDown) { if (itemSource != $('#dropdown').data('item')) { OC.Share.hideDropDown(function () { OC.Share.showDropDown(itemType, itemSource, appendTo, link, possiblePermissions); }); } else { OC.Share.hideDropDown(); } } else { OC.Share.showDropDown(itemType, itemSource, appendTo, link, possiblePermissions); } } }); $(this).click(function(event) { var target = $(event.target); var isMatched = !target.is('.drop, .ui-datepicker-next, .ui-datepicker-prev, .ui-icon') && !target.closest('#ui-datepicker-div').length; if (OC.Share.droppedDown && isMatched && $('#dropdown').has(event.target).length === 0) { OC.Share.hideDropDown(); } }); $(document).on('mouseenter', '#dropdown #shareWithList li', function(event) { // Show permissions and unshare button $(':hidden', this).filter(':not(.cruds)').show(); }); $(document).on('mouseleave', '#dropdown #shareWithList li', function(event) { // Hide permissions and unshare button if (!$('.cruds', this).is(':visible')) { $('a', this).hide(); if (!$('input[name="edit"]', this).is(':checked')) { $('input:[type=checkbox]', this).hide(); $('label', this).hide(); } } else { $('a.unshare', this).hide(); } }); $(document).on('click', '#dropdown .showCruds', function() { $(this).parent().find('.cruds').toggle(); }); $(document).on('click', '#dropdown .unshare', function() { var li = $(this).parent(); var itemType = $('#dropdown').data('item-type'); var itemSource = $('#dropdown').data('item-source'); var shareType = $(li).data('share-type'); var shareWith = $(li).data('share-with'); OC.Share.unshare(itemType, itemSource, shareType, shareWith, function() { $(li).remove(); var index = OC.Share.itemShares[shareType].indexOf(shareWith); OC.Share.itemShares[shareType].splice(index, 1); OC.Share.updateIcon(itemType, itemSource); if (typeof OC.Share.statuses[itemSource] === 'undefined') { $('#expiration').hide(); } }); }); $(document).on('change', '#dropdown .permissions', function() { if ($(this).attr('name') == 'edit') { var li = $(this).parent().parent() var checkboxes = $('.permissions', li); var checked = $(this).is(':checked'); // Check/uncheck Create, Update, and Delete checkboxes if Edit is checked/unck $(checkboxes).filter('input[name="create"]').attr('checked', checked); $(checkboxes).filter('input[name="update"]').attr('checked', checked); $(checkboxes).filter('input[name="delete"]').attr('checked', checked); } else { var li = $(this).parent().parent().parent(); var checkboxes = $('.permissions', li); // Uncheck Edit if Create, Update, and Delete are not checked if (!$(this).is(':checked') && !$(checkboxes).filter('input[name="create"]').is(':checked') && !$(checkboxes).filter('input[name="update"]').is(':checked') && !$(checkboxes).filter('input[name="delete"]').is(':checked')) { $(checkboxes).filter('input[name="edit"]').attr('checked', false); // Check Edit if Create, Update, or Delete is checked } else if (($(this).attr('name') == 'create' || $(this).attr('name') == 'update' || $(this).attr('name') == 'delete')) { $(checkboxes).filter('input[name="edit"]').attr('checked', true); } } var permissions = OC.PERMISSION_READ; $(checkboxes).filter(':not(input[name="edit"])').filter(':checked').each(function(index, checkbox) { permissions |= $(checkbox).data('permissions'); }); OC.Share.setPermissions($('#dropdown').data('item-type'), $('#dropdown').data('item-source'), $(li).data('share-type'), $(li).data('share-with'), permissions); }); $(document).on('change', '#dropdown #linkCheckbox', function() { var itemType = $('#dropdown').data('item-type'); var itemSource = $('#dropdown').data('item-source'); if (this.checked) { // Create a link OC.Share.share(itemType, itemSource, OC.Share.SHARE_TYPE_LINK, '', OC.PERMISSION_READ, function(data) { OC.Share.showLink(data.token, null, itemSource); OC.Share.updateIcon(itemType, itemSource); }); } else { // Delete private link OC.Share.unshare(itemType, itemSource, OC.Share.SHARE_TYPE_LINK, '', function() { OC.Share.hideLink(); OC.Share.itemShares[OC.Share.SHARE_TYPE_LINK] = false; OC.Share.updateIcon(itemType, itemSource); if (typeof OC.Share.statuses[itemSource] === 'undefined') { $('#expiration').hide(); } }); } }); $(document).on('click', '#dropdown #linkText', function() { $(this).focus(); $(this).select(); }); $(document).on('click', '#dropdown #showPassword', function() { $('#linkPass').toggle('blind'); if (!$('#showPassword').is(':checked') ) { var itemType = $('#dropdown').data('item-type'); var itemSource = $('#dropdown').data('item-source'); OC.Share.share(itemType, itemSource, OC.Share.SHARE_TYPE_LINK, '', OC.PERMISSION_READ); } else { $('#linkPassText').focus(); } }); $(document).on('focusout keyup', '#dropdown #linkPassText', function(event) { if ( $('#linkPassText').val() != '' && (event.type == 'focusout' || event.keyCode == 13) ) { var itemType = $('#dropdown').data('item-type'); var itemSource = $('#dropdown').data('item-source'); OC.Share.share(itemType, itemSource, OC.Share.SHARE_TYPE_LINK, $('#linkPassText').val(), OC.PERMISSION_READ, function() { console.log("password set to: '" + $('#linkPassText').val() +"' by event: " + event.type); $('#linkPassText').val(''); $('#linkPassText').attr('placeholder', t('core', 'Password protected')); }); } }); $(document).on('click', '#dropdown #expirationCheckbox', function() { if (this.checked) { OC.Share.showExpirationDate(''); } else { var itemType = $('#dropdown').data('item-type'); var itemSource = $('#dropdown').data('item-source'); $.post(OC.filePath('core', 'ajax', 'share.php'), { action: 'setExpirationDate', itemType: itemType, itemSource: itemSource, date: '' }, function(result) { if (!result || result.status !== 'success') { OC.dialogs.alert(t('core', 'Error'), t('core', 'Error unsetting expiration date')); } $('#expirationDate').hide(); }); } }); $(document).on('change', '#dropdown #expirationDate', function() { var itemType = $('#dropdown').data('item-type'); var itemSource = $('#dropdown').data('item-source'); $.post(OC.filePath('core', 'ajax', 'share.php'), { action: 'setExpirationDate', itemType: itemType, itemSource: itemSource, date: $(this).val() }, function(result) { if (!result || result.status !== 'success') { OC.dialogs.alert(t('core', 'Error'), t('core', 'Error setting expiration date')); } }); }); $(document).on('submit', '#dropdown #emailPrivateLink', function(event) { event.preventDefault(); var link = $('#linkText').val(); var itemType = $('#dropdown').data('item-type'); var itemSource = $('#dropdown').data('item-source'); var file = $('tr').filterAttr('data-id', String(itemSource)).data('file'); var email = $('#email').val(); if (email != '') { $('#email').attr('disabled', "disabled"); $('#email').val(t('core', 'Sending ...')); $('#emailButton').attr('disabled', "disabled"); $.post(OC.filePath('core', 'ajax', 'share.php'), { action: 'email', toaddress: email, link: link, itemType: itemType, itemSource: itemSource, file: file}, function(result) { $('#email').attr('disabled', "false"); $('#emailButton').attr('disabled', "false"); if (result && result.status == 'success') { $('#email').css('font-weight', 'bold'); $('#email').animate({ fontWeight: 'normal' }, 2000, function() { $(this).val(''); }).val(t('core','Email sent')); } else { OC.dialogs.alert(result.data.message, t('core', 'Error while sharing')); } }); } }); });