2012-05-05 22:56:52 +04:00
OC . Share = {
2012-06-26 03:27:57 +04:00
SHARE _TYPE _USER : 0 ,
SHARE _TYPE _GROUP : 1 ,
2012-08-28 04:05:51 +04:00
SHARE _TYPE _LINK : 3 ,
2012-07-31 18:18:26 +04:00
SHARE _TYPE _EMAIL : 4 ,
2014-06-04 12:37:04 +04:00
/ * *
* @ deprecated use OC . Share . currentShares instead
* /
2012-07-31 21:06:32 +04:00
itemShares : [ ] ,
2014-06-04 12:37:04 +04:00
/ * *
* Full list of all share statuses
* /
2013-10-17 13:59:13 +04:00
statuses : { } ,
2014-06-04 12:37:04 +04:00
/ * *
* Shares for the currently selected file .
* ( for which the dropdown is open )
*
* Key is item type and value is an array or
* shares of the given item type .
* /
currentShares : { } ,
/ * *
* Whether the share dropdown is opened .
* /
2012-08-09 01:50:09 +04:00
droppedDown : false ,
2013-10-17 13:59:13 +04:00
/ * *
2014-03-01 05:46:27 +04:00
* Loads ALL share statuses from server , stores them in
* OC . Share . statuses then calls OC . Share . updateIcons ( ) to update the
* files "Share" icon to "Shared" according to their share status and
* share type .
2014-05-19 17:20:44 +04:00
*
* @ param itemType item type
* @ param fileList file list instance , defaults to OCA . Files . App . fileList
2013-10-17 13:59:13 +04:00
* /
2014-05-19 17:20:44 +04:00
loadIcons : function ( itemType , fileList ) {
2012-06-25 03:16:50 +04:00
// Load all share icons
2014-03-01 05:46:27 +04:00
$ . get (
OC . filePath ( 'core' , 'ajax' , 'share.php' ) ,
{
fetch : 'getItemsSharedStatuses' ,
itemType : itemType
} , function ( result ) {
if ( result && result . status === 'success' ) {
OC . Share . statuses = { } ;
$ . each ( result . data , function ( item , data ) {
OC . Share . statuses [ item ] = data ;
} ) ;
OC . Share . updateIcons ( itemType , fileList ) ;
}
2013-10-17 13:59:13 +04:00
}
2014-03-01 05:46:27 +04:00
) ;
2013-10-17 13:59:13 +04:00
} ,
/ * *
* Updates the files ' "Share" icons according to the known
* sharing states stored in OC . Share . statuses .
* ( not reloaded from server )
2014-05-19 17:20:44 +04:00
*
* @ param itemType item type
2014-05-21 14:54:34 +04:00
* @ param fileList file list instance
2014-05-19 17:20:44 +04:00
* defaults to OCA . Files . App . fileList
2013-10-17 13:59:13 +04:00
* /
2014-05-19 17:20:44 +04:00
updateIcons : function ( itemType , fileList ) {
2013-10-17 16:39:20 +04:00
var item ;
2014-05-28 18:34:00 +04:00
var $fileList ;
var currentDir ;
if ( ! fileList && OCA . Files ) {
fileList = OCA . Files . App . fileList ;
}
// fileList is usually only defined in the files app
if ( fileList ) {
$fileList = fileList . $fileList ;
currentDir = fileList . getCurrentDirectory ( ) ;
}
2014-06-02 19:23:52 +04:00
// TODO: iterating over the files might be more efficient
2013-10-17 13:59:13 +04:00
for ( item in OC . Share . statuses ) {
2014-06-02 17:59:06 +04:00
var image = OC . imagePath ( 'core' , 'actions/share' ) ;
2013-10-17 13:59:13 +04:00
var data = OC . Share . statuses [ item ] ;
2014-05-21 14:54:34 +04:00
var hasLink = data . link ;
2013-10-17 13:59:13 +04:00
// Links override shared in terms of icon display
if ( hasLink ) {
2014-05-21 14:54:34 +04:00
image = OC . imagePath ( 'core' , 'actions/public' ) ;
2013-10-17 13:59:13 +04:00
}
2014-05-21 14:54:34 +04:00
if ( itemType !== 'file' && itemType !== 'folder' ) {
2014-05-28 20:39:29 +04:00
$ ( 'a.share[data-item="' + item + '"]' ) . css ( 'background' , 'url(' + image + ') no-repeat center' ) ;
2013-10-17 13:59:13 +04:00
} else {
2014-05-28 20:39:29 +04:00
// TODO: ultimately this part should be moved to files_sharing app
2014-05-19 17:20:44 +04:00
var file = $fileList . find ( 'tr[data-id="' + item + '"]' ) ;
2014-05-28 14:13:55 +04:00
var shareFolder = OC . imagePath ( 'core' , 'filetypes/folder-shared' ) ;
var img ;
2013-10-17 13:59:13 +04:00
if ( file . length > 0 ) {
2014-06-02 19:23:52 +04:00
this . markFileAsShared ( file , true , hasLink ) ;
2013-10-17 13:59:13 +04:00
} else {
2014-05-21 14:54:34 +04:00
var dir = currentDir ;
2013-10-17 13:59:13 +04:00
if ( dir . length > 1 ) {
var last = '' ;
var path = dir ;
// Search for possible parent folders that are shared
while ( path != last ) {
2014-05-21 14:54:34 +04:00
if ( path === data . path && ! data . link ) {
2014-05-19 17:20:44 +04:00
var actions = $fileList . find ( '.fileactions .action[data-action="Share"]' ) ;
2014-05-28 14:13:55 +04:00
var files = $fileList . find ( '.filename' ) ;
var i ;
for ( i = 0 ; i < actions . length ; i ++ ) {
2014-05-28 20:39:29 +04:00
// TODO: use this.markFileAsShared()
2014-05-28 14:13:55 +04:00
img = $ ( actions [ i ] ) . find ( 'img' ) ;
2014-05-21 14:54:34 +04:00
if ( img . attr ( 'src' ) !== OC . imagePath ( 'core' , 'actions/public' ) ) {
2013-10-17 13:59:13 +04:00
img . attr ( 'src' , image ) ;
2014-05-28 14:13:55 +04:00
$ ( actions [ i ] ) . addClass ( 'permanent' ) ;
$ ( actions [ i ] ) . html ( ' <span>' + t ( 'core' , 'Shared' ) + '</span>' ) . prepend ( img ) ;
}
}
for ( i = 0 ; i < files . length ; i ++ ) {
if ( $ ( files [ i ] ) . closest ( 'tr' ) . data ( 'type' ) === 'dir' ) {
$ ( files [ i ] ) . css ( 'background-image' , 'url(' + shareFolder + ')' ) ;
2012-10-29 00:01:50 +04:00
}
2014-05-28 14:13:55 +04:00
}
2012-10-29 00:01:50 +04:00
}
2013-10-17 13:59:13 +04:00
last = path ;
path = OC . Share . dirname ( path ) ;
2012-06-25 03:16:50 +04:00
}
2012-05-05 22:56:52 +04:00
}
2013-10-17 13:59:13 +04:00
}
2012-05-05 22:56:52 +04:00
}
2013-10-17 13:59:13 +04:00
}
2012-05-05 22:56:52 +04:00
} ,
2012-08-24 23:32:06 +04:00
updateIcon : function ( itemType , itemSource ) {
var shares = false ;
2012-09-19 09:44:15 +04:00
var link = false ;
var image = OC . imagePath ( 'core' , 'actions/share' ) ;
2012-08-24 23:32:06 +04:00
$ . each ( OC . Share . itemShares , function ( index ) {
2012-09-19 09:44:15 +04:00
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 ;
2014-06-02 17:59:06 +04:00
image = OC . imagePath ( 'core' , 'actions/share' ) ;
2012-09-19 09:44:15 +04:00
}
2012-08-24 23:32:06 +04:00
}
} ) ;
2012-09-19 09:44:15 +04:00
if ( itemType != 'file' && itemType != 'folder' ) {
$ ( 'a.share[data-item="' + itemSource + '"]' ) . css ( 'background' , 'url(' + image + ') no-repeat center' ) ;
2013-01-26 22:25:15 +04:00
} else {
2014-05-28 20:39:29 +04:00
var $tr = $ ( 'tr' ) . filterAttr ( 'data-id' , String ( itemSource ) ) ;
if ( $tr . length > 0 ) {
2014-06-02 19:23:52 +04:00
// it might happen that multiple lists exist in the DOM
// with the same id
$tr . each ( function ( ) {
OC . Share . markFileAsShared ( $ ( this ) , shares , link ) ;
2014-05-21 14:54:34 +04:00
} ) ;
2013-01-26 22:25:15 +04:00
}
2012-09-19 09:44:15 +04:00
}
2012-08-24 23:32:06 +04:00
if ( shares ) {
2013-07-22 22:02:56 +04:00
OC . Share . statuses [ itemSource ] = OC . Share . statuses [ itemSource ] || { } ;
2013-03-08 07:30:12 +04:00
OC . Share . statuses [ itemSource ] [ 'link' ] = link ;
2012-08-24 23:32:06 +04:00
} else {
delete OC . Share . statuses [ itemSource ] ;
}
} ,
2014-05-28 20:39:29 +04:00
/ * *
2014-06-02 19:23:52 +04:00
* Marks / unmarks a given file as shared by changing its action icon
* and folder icon .
2014-05-28 20:39:29 +04:00
*
* @ param $tr file element to mark as shared
2014-06-02 19:23:52 +04:00
* @ param hasShares whether shares are available
* @ param hasLink whether link share is available
2014-05-28 20:39:29 +04:00
* /
2014-06-02 19:23:52 +04:00
markFileAsShared : function ( $tr , hasShares , hasLink ) {
2014-05-28 20:39:29 +04:00
var action = $tr . find ( '.fileactions .action[data-action="Share"]' ) ;
var type = $tr . data ( 'type' ) ;
var img = action . find ( 'img' ) ;
var message ;
var recipients ;
2014-06-03 13:04:57 +04:00
var owner = $tr . attr ( 'data-share-owner' ) ;
2014-05-28 20:39:29 +04:00
var shareFolderIcon ;
2014-06-02 19:23:52 +04:00
var image = OC . imagePath ( 'core' , 'actions/share' ) ;
// update folder icon
if ( type === 'dir' && ( hasShares || hasLink ) ) {
if ( hasLink ) {
shareFolderIcon = OC . imagePath ( 'core' , 'filetypes/folder-public' ) ;
}
else {
shareFolderIcon = OC . imagePath ( 'core' , 'filetypes/folder-shared' ) ;
}
2014-05-28 20:39:29 +04:00
$tr . children ( '.filename' ) . css ( 'background-image' , 'url(' + shareFolderIcon + ')' ) ;
} else if ( type === 'dir' ) {
shareFolderIcon = OC . imagePath ( 'core' , 'filetypes/folder' ) ;
$tr . children ( '.filename' ) . css ( 'background-image' , 'url(' + shareFolderIcon + ')' ) ;
}
2014-06-02 19:23:52 +04:00
// update share action text / icon
2014-06-03 13:04:57 +04:00
if ( hasShares || owner ) {
2014-05-28 20:39:29 +04:00
recipients = $tr . attr ( 'data-share-recipients' ) ;
action . addClass ( 'permanent' ) ;
message = t ( 'core' , 'Shared' ) ;
2014-06-03 13:04:57 +04:00
// even if reshared, only show "Shared by"
if ( owner ) {
2014-06-14 22:56:54 +04:00
message = t ( 'files_sharing' , 'Shared by {owner}' , { owner : escapeHTML ( owner ) } ) ;
2014-05-28 20:39:29 +04:00
}
2014-06-03 13:04:57 +04:00
else if ( recipients ) {
2014-06-14 22:56:54 +04:00
message = t ( 'core' , 'Shared with {recipients}' , { recipients : escapeHTML ( recipients ) } ) ;
2014-05-28 20:39:29 +04:00
}
action . html ( ' <span>' + message + '</span>' ) . prepend ( img ) ;
}
else {
action . removeClass ( 'permanent' ) ;
action . html ( ' <span>' + escapeHTML ( t ( 'core' , 'Share' ) ) + '</span>' ) . prepend ( img ) ;
}
2014-06-02 19:23:52 +04:00
if ( hasLink ) {
image = OC . imagePath ( 'core' , 'actions/public' ) ;
}
2014-05-28 20:39:29 +04:00
img . attr ( 'src' , image ) ;
} ,
2012-08-22 19:35:30 +04:00
loadItem : function ( itemType , itemSource ) {
2012-06-26 03:27:57 +04:00
var data = '' ;
2012-08-24 18:43:42 +04:00
var checkReshare = true ;
2013-03-08 07:30:12 +04:00
if ( typeof OC . Share . statuses [ itemSource ] === 'undefined' ) {
2012-09-21 14:05:01 +04:00
// NOTE: Check does not always work and misses some shares, fix later
2013-07-31 23:21:02 +04:00
var checkShares = true ;
2012-08-22 19:35:30 +04:00
} else {
2013-07-31 23:21:02 +04:00
var checkShares = true ;
2012-08-06 21:30:44 +04:00
}
2012-08-24 18:43:42 +04:00
$ . 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 ) {
2012-08-21 04:00:29 +04:00
if ( result && result . status === 'success' ) {
data = result . data ;
} else {
data = false ;
}
} } ) ;
2013-08-30 17:39:43 +04:00
2012-06-26 03:27:57 +04:00
return data ;
2012-05-05 22:56:52 +04:00
} ,
2014-05-07 14:17:46 +04:00
share : function ( itemType , itemSource , shareType , shareWith , permissions , itemSourceName , expirationDate , callback ) {
// Add a fallback for old share() calls without expirationDate.
// We should remove this in a later version,
// after the Apps have been updated.
if ( typeof callback === 'undefined' &&
typeof expirationDate === 'function' ) {
callback = expirationDate ;
expirationDate = '' ;
console . warn (
"Call to 'OC.Share.share()' with too few arguments. " +
"'expirationDate' was assumed to be 'callback'. " +
"Please revisit the call and fix the list of arguments."
) ;
}
2013-10-23 20:39:37 +04:00
$ . post ( OC . filePath ( 'core' , 'ajax' , 'share.php' ) ,
{
action : 'share' ,
itemType : itemType ,
itemSource : itemSource ,
shareType : shareType ,
shareWith : shareWith ,
permissions : permissions ,
2014-05-07 14:17:46 +04:00
itemSourceName : itemSourceName ,
expirationDate : expirationDate
2013-10-23 20:39:37 +04:00
} , function ( result ) {
2014-03-01 05:46:27 +04:00
if ( result && result . status === 'success' ) {
if ( callback ) {
callback ( result . data ) ;
}
2013-07-22 22:02:18 +04:00
} else {
2014-03-01 05:46:27 +04:00
if ( result . data && result . data . message ) {
var msg = result . data . message ;
} else {
var msg = t ( 'core' , 'Error' ) ;
}
OC . dialogs . alert ( msg , t ( 'core' , 'Error while sharing' ) ) ;
2013-07-22 22:02:18 +04:00
}
2012-05-05 22:56:52 +04:00
}
2014-03-01 05:46:27 +04:00
) ;
2012-05-05 22:56:52 +04:00
} ,
2012-08-21 04:00:29 +04:00
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 ) {
2012-05-05 22:56:52 +04:00
if ( result && result . status === 'success' ) {
if ( callback ) {
callback ( ) ;
}
} else {
2013-04-09 15:22:34 +04:00
OC . dialogs . alert ( t ( 'core' , 'Error while unsharing' ) , t ( 'core' , 'Error' ) ) ;
2012-05-05 22:56:52 +04:00
}
} ) ;
} ,
2012-08-21 04:00:29 +04:00
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 ) {
2012-05-05 22:56:52 +04:00
if ( ! result || result . status !== 'success' ) {
2013-04-09 15:22:34 +04:00
OC . dialogs . alert ( t ( 'core' , 'Error while changing permissions' ) , t ( 'core' , 'Error' ) ) ;
2012-05-05 22:56:52 +04:00
}
} ) ;
} ,
2013-10-23 20:39:37 +04:00
showDropDown : function ( itemType , itemSource , appendTo , link , possiblePermissions , filename ) {
2012-08-22 19:35:30 +04:00
var data = OC . Share . loadItem ( itemType , itemSource ) ;
2014-01-10 18:02:26 +04:00
var dropDownEl ;
var html = '<div id="dropdown" class="drop" data-item-type="' + itemType + '" data-item-source="' + itemSource + '">' ;
2012-11-28 02:01:26 +04:00
if ( data !== false && data . reshare !== false && data . reshare . uid _owner !== undefined ) {
2012-09-21 14:05:01 +04:00
if ( data . reshare . share _type == OC . Share . SHARE _TYPE _GROUP ) {
2013-06-29 15:24:05 +04:00
html += '<span class="reshare">' + t ( 'core' , 'Shared with you and the group {group} by {owner}' , { group : escapeHTML ( data . reshare . share _with ) , owner : escapeHTML ( data . reshare . displayname _owner ) } ) + '</span>' ;
2012-08-21 04:00:29 +04:00
} else {
2013-06-29 15:24:05 +04:00
html += '<span class="reshare">' + t ( 'core' , 'Shared with you by {owner}' , { owner : escapeHTML ( data . reshare . displayname _owner ) } ) + '</span>' ;
2012-08-21 04:00:29 +04:00
}
html += '<br />' ;
}
2013-11-18 14:58:42 +04:00
2012-08-31 03:05:36 +04:00
if ( possiblePermissions & OC . PERMISSION _SHARE ) {
2013-06-25 14:24:14 +04:00
// Determine the Allow Public Upload status.
// Used later on to determine if the
// respective checkbox should be checked or
// not.
2013-07-12 19:03:51 +04:00
var publicUploadEnabled = $ ( '#filestable' ) . data ( 'allow-public-upload' ) ;
if ( typeof publicUploadEnabled == 'undefined' ) {
publicUploadEnabled = 'no' ;
}
2013-06-25 14:24:14 +04:00
var allowPublicUploadStatus = false ;
2013-07-12 19:03:51 +04:00
2013-06-25 14:24:14 +04:00
$ . each ( data . shares , function ( key , value ) {
2013-09-17 20:11:43 +04:00
if ( value . share _type === OC . Share . SHARE _TYPE _LINK ) {
allowPublicUploadStatus = ( value . permissions & OC . PERMISSION _CREATE ) ? true : false ;
2013-07-05 13:23:08 +04:00
return true ;
}
2013-06-25 14:24:14 +04:00
} ) ;
2013-10-23 18:57:06 +04:00
html += '<input id="shareWith" type="text" placeholder="' + t ( 'core' , 'Share with user or group …' ) + '" />' ;
2012-08-23 22:48:35 +04:00
html += '<ul id="shareWithList">' ;
html += '</ul>' ;
2013-10-21 13:29:40 +04:00
var linksAllowed = $ ( '#allowShareWithLink' ) . val ( ) === 'yes' ;
2013-05-02 19:59:11 +04:00
if ( link && linksAllowed ) {
2012-08-28 04:05:51 +04:00
html += '<div id="link">' ;
2013-10-23 18:57:06 +04:00
html += '<input type="checkbox" name="linkCheckbox" id="linkCheckbox" value="1" /><label for="linkCheckbox">' + t ( 'core' , 'Share link' ) + '</label>' ;
2012-08-23 22:48:35 +04:00
html += '<br />' ;
2014-05-09 18:36:20 +04:00
var defaultExpireMessage = '' ;
2014-06-03 17:15:04 +04:00
if ( ( itemType === 'folder' || itemType === 'file' ) && oc _appconfig . core . defaultExpireDateEnabled ) {
if ( oc _appconfig . core . defaultExpireDateEnforced ) {
2014-06-14 22:56:54 +04:00
defaultExpireMessage = t ( 'core' , 'The public link will expire no later than {days} days after it is created' , { 'days' : escapeHTML ( oc _appconfig . core . defaultExpireDate ) } ) + '<br/>' ;
2014-05-09 18:36:20 +04:00
} else {
2014-06-14 22:56:54 +04:00
defaultExpireMessage = t ( 'core' , 'By default the public link will expire after {days} days' , { 'days' : escapeHTML ( oc _appconfig . core . defaultExpireDate ) } ) + '<br/>' ;
2014-05-09 18:36:20 +04:00
}
}
2014-05-13 17:27:56 +04:00
2012-08-28 23:10:06 +04:00
html += '<input id="linkText" type="text" readonly="readonly" />' ;
2012-12-05 17:17:21 +04:00
html += '<input type="checkbox" name="showPassword" id="showPassword" value="1" style="display:none;" /><label for="showPassword" style="display:none;">' + t ( 'core' , 'Password protect' ) + '</label>' ;
2012-08-28 23:10:06 +04:00
html += '<div id="linkPass">' ;
2014-05-12 14:19:07 +04:00
html += '<input id="linkPassText" type="password" placeholder="' + t ( 'core' , 'Choose a password for the public link' ) + '" />' ;
2012-09-06 00:17:33 +04:00
html += '</div>' ;
2014-05-12 14:19:07 +04:00
2013-07-12 19:03:51 +04:00
if ( itemType === 'folder' && ( possiblePermissions & OC . PERMISSION _CREATE ) && publicUploadEnabled === 'yes' ) {
2013-07-05 17:27:14 +04:00
html += '<div id="allowPublicUploadWrapper" style="display:none;">' ;
html += '<input type="checkbox" value="1" name="allowPublicUpload" id="sharingDialogAllowPublicUpload"' + ( ( allowPublicUploadStatus ) ? 'checked="checked"' : '' ) + ' />' ;
html += '<label for="sharingDialogAllowPublicUpload">' + t ( 'core' , 'Allow Public Upload' ) + '</label>' ;
html += '</div>' ;
}
2013-07-05 12:53:59 +04:00
html += '</div><form id="emailPrivateLink" >' ;
2013-02-20 21:38:21 +04:00
html += '<input id="email" style="display:none; width:62%;" value="" placeholder="' + t ( 'core' , 'Email link to person' ) + '" type="text" />' ;
2013-02-20 20:07:23 +04:00
html += '<input id="emailButton" style="display:none;" type="submit" value="' + t ( 'core' , 'Send' ) + '" />' ;
2013-02-08 14:05:56 +04:00
html += '</form>' ;
2012-08-23 22:48:35 +04:00
}
2013-06-25 14:24:14 +04:00
2012-09-02 02:53:48 +04:00
html += '<div id="expiration">' ;
2012-09-21 13:48:20 +04:00
html += '<input type="checkbox" name="expirationCheckbox" id="expirationCheckbox" value="1" /><label for="expirationCheckbox">' + t ( 'core' , 'Set expiration date' ) + '</label>' ;
html += '<input id="expirationDate" type="text" placeholder="' + t ( 'core' , 'Expiration date' ) + '" style="display:none; width:90%;" />' ;
2014-05-13 17:27:56 +04:00
html += '<div id="defaultExpireMessage">' + defaultExpireMessage + '</div>' ;
2012-07-04 01:00:23 +04:00
html += '</div>' ;
2014-01-10 18:02:26 +04:00
dropDownEl = $ ( html ) ;
dropDownEl = dropDownEl . appendTo ( appendTo ) ;
2012-08-23 22:48:35 +04:00
// Reset item shares
OC . Share . itemShares = [ ] ;
2014-06-04 12:37:04 +04:00
OC . Share . currentShares = { } ;
2012-08-23 22:48:35 +04:00
if ( data . shares ) {
$ . each ( data . shares , function ( index , share ) {
2012-08-28 04:05:51 +04:00
if ( share . share _type == OC . Share . SHARE _TYPE _LINK ) {
2013-10-30 20:03:53 +04:00
if ( ! ( 'file_target' in share ) ) {
OC . Share . showLink ( share . token , share . share _with , itemSource ) ;
}
2012-07-30 23:30:21 +04:00
} else {
2012-09-09 22:44:08 +04:00
if ( share . collection ) {
2013-08-30 15:53:49 +04:00
OC . Share . addShareWith ( share . share _type , share . share _with , share . share _with _displayname , share . permissions , possiblePermissions , share . mail _send , share . collection ) ;
2012-09-09 22:44:08 +04:00
} else {
2013-08-30 17:39:43 +04:00
OC . Share . addShareWith ( share . share _type , share . share _with , share . share _with _displayname , share . permissions , possiblePermissions , share . mail _send , false ) ;
2012-09-09 22:44:08 +04:00
}
2012-08-23 22:48:35 +04:00
}
2012-10-04 13:18:37 +04:00
if ( share . expiration != null ) {
2012-09-26 08:04:27 +04:00
OC . Share . showExpirationDate ( share . expiration ) ;
}
2012-08-23 22:48:35 +04:00
} ) ;
}
2013-02-27 20:57:40 +04:00
$ ( '#shareWith' ) . autocomplete ( { minLength : 1 , source : function ( search , response ) {
2013-07-31 23:21:02 +04:00
// if (cache[search.term]) {
// response(cache[search.term]);
// } else {
2012-08-23 22:48:35 +04:00
$ . get ( OC . filePath ( 'core' , 'ajax' , 'share.php' ) , { fetch : 'getShareWith' , search : search . term , itemShares : OC . Share . itemShares } , function ( result ) {
if ( result . status == 'success' && result . data . length > 0 ) {
2013-09-11 18:59:28 +04:00
$ ( "#shareWith" ) . autocomplete ( "option" , "autoFocus" , true ) ;
2012-08-23 22:48:35 +04:00
response ( result . data ) ;
2012-07-31 18:18:26 +04:00
} else {
2012-08-23 22:48:35 +04:00
// Suggest sharing via email if valid email address
2013-07-31 23:21:02 +04:00
// var pattern = new RegExp(/^[+a-zA-Z0-9._-]+@[a-zA-Z0-9.-]+\.[a-zA-Z]{2,4}$/i);
// if (pattern.test(search.term)) {
// response([{label: t('core', 'Share via email:')+' '+search.term, value: {shareType: OC.Share.SHARE_TYPE_EMAIL, shareWith: search.term}}]);
// } else {
2013-09-11 18:59:28 +04:00
$ ( "#shareWith" ) . autocomplete ( "option" , "autoFocus" , false ) ;
2012-09-21 13:48:20 +04:00
response ( [ t ( 'core' , 'No people found' ) ] ) ;
2013-07-31 23:21:02 +04:00
// }
2012-07-31 18:18:26 +04:00
}
2012-08-23 22:48:35 +04:00
} ) ;
2013-07-31 23:21:02 +04:00
// }
2012-08-23 22:48:35 +04:00
} ,
focus : function ( event , focused ) {
event . preventDefault ( ) ;
} ,
select : function ( event , selected ) {
2012-09-26 07:18:36 +04:00
event . stopPropagation ( ) ;
2012-08-24 23:32:06 +04:00
var itemType = $ ( '#dropdown' ) . data ( 'item-type' ) ;
var itemSource = $ ( '#dropdown' ) . data ( 'item-source' ) ;
2013-10-23 20:39:37 +04:00
var itemSourceName = $ ( '#dropdown' ) . data ( 'item-source-name' ) ;
2014-05-07 14:17:46 +04:00
var expirationDate = '' ;
if ( $ ( '#expirationCheckbox' ) . is ( ':checked' ) === true ) {
expirationDate = $ ( "#expirationDate" ) . val ( ) ;
}
2012-08-23 22:48:35 +04:00
var shareType = selected . item . value . shareType ;
var shareWith = selected . item . value . shareWith ;
$ ( this ) . val ( shareWith ) ;
2013-08-14 02:25:07 +04:00
// Default permissions are Edit (CRUD) and Share
2013-11-18 14:58:42 +04:00
// Check if these permissions are possible
var permissions = OC . PERMISSION _READ ;
if ( possiblePermissions & OC . PERMISSION _UPDATE ) {
permissions = permissions | OC . PERMISSION _UPDATE ;
}
if ( possiblePermissions & OC . PERMISSION _CREATE ) {
permissions = permissions | OC . PERMISSION _CREATE ;
}
if ( possiblePermissions & OC . PERMISSION _DELETE ) {
permissions = permissions | OC . PERMISSION _DELETE ;
}
if ( possiblePermissions & OC . PERMISSION _SHARE ) {
permissions = permissions | OC . PERMISSION _SHARE ;
}
2014-05-07 14:17:46 +04:00
OC . Share . share ( itemType , itemSource , shareType , shareWith , permissions , itemSourceName , expirationDate , function ( ) {
2013-10-21 17:31:31 +04:00
OC . Share . addShareWith ( shareType , shareWith , selected . item . label , permissions , possiblePermissions ) ;
2012-08-23 22:48:35 +04:00
$ ( '#shareWith' ) . val ( '' ) ;
2014-06-04 12:37:04 +04:00
$ ( '#dropdown' ) . trigger ( new $ . Event ( 'sharesChanged' , { shares : OC . Share . currentShares } ) ) ;
2012-08-24 23:32:06 +04:00
OC . Share . updateIcon ( itemType , itemSource ) ;
2012-07-30 23:30:21 +04:00
} ) ;
2012-08-23 22:48:35 +04:00
return false ;
}
2013-03-22 01:41:44 +04:00
} )
// customize internal _renderItem function to display groups and users differently
. data ( "ui-autocomplete" ) . _renderItem = function ( ul , item ) {
2013-10-21 17:31:31 +04:00
var insert = $ ( "<a>" ) ;
var text = ( item . value . shareType == 1 ) ? item . label + ' (' + t ( 'core' , 'group' ) + ')' : item . label ;
insert . text ( text ) ;
if ( item . value . shareType == 1 ) {
insert = insert . wrapInner ( '<strong></strong>' ) ;
2013-03-22 01:41:44 +04:00
}
return $ ( "<li>" )
2013-10-21 17:31:31 +04:00
. addClass ( ( item . value . shareType == 1 ) ? 'group' : 'user' )
2013-03-22 12:59:19 +04:00
. append ( insert )
2013-03-22 01:41:44 +04:00
. appendTo ( ul ) ;
} ;
2014-04-17 00:41:57 +04:00
if ( link ) {
$ ( '#email' ) . autocomplete ( {
minLength : 1 ,
source : function ( search , response ) {
$ . get ( OC . filePath ( 'core' , 'ajax' , 'share.php' ) , { fetch : 'getShareWithEmail' , search : search . term } , function ( result ) {
if ( result . status == 'success' && result . data . length > 0 ) {
response ( result . data ) ;
}
} ) ;
} ,
select : function ( event , item ) {
$ ( '#email' ) . val ( item . item . email ) ;
return false ;
}
} )
. data ( "ui-autocomplete" ) . _renderItem = function ( ul , item ) {
2014-05-12 13:30:47 +04:00
return $ ( '<li>' )
. append ( '<a>' + escapeHTML ( item . displayname ) + "<br>" + escapeHTML ( item . email ) + '</a>' )
2014-04-17 00:41:57 +04:00
. appendTo ( ul ) ;
} ;
}
2013-11-14 12:38:55 +04:00
2012-08-23 22:48:35 +04:00
} else {
2012-09-21 13:48:20 +04:00
html += '<input id="shareWith" type="text" placeholder="' + t ( 'core' , 'Resharing is not allowed' ) + '" style="width:90%;" disabled="disabled"/>' ;
2012-08-23 22:48:35 +04:00
html += '</div>' ;
2014-01-10 18:02:26 +04:00
dropDownEl = $ ( html ) ;
dropDownEl . appendTo ( appendTo ) ;
2012-07-30 23:30:21 +04:00
}
2014-01-10 18:02:26 +04:00
dropDownEl . attr ( 'data-item-source-name' , filename ) ;
2012-08-09 01:50:09 +04:00
$ ( '#dropdown' ) . show ( 'blind' , function ( ) {
OC . Share . droppedDown = true ;
} ) ;
2013-10-23 20:51:25 +04:00
if ( $ ( 'html' ) . hasClass ( 'lte9' ) ) {
$ ( '#dropdown input[placeholder]' ) . placeholder ( ) ;
}
2012-07-31 22:48:19 +04:00
$ ( '#shareWith' ) . focus ( ) ;
2012-05-05 22:56:52 +04:00
} ,
hideDropDown : function ( callback ) {
2014-06-04 12:37:04 +04:00
OC . Share . currentShares = null ;
2012-05-05 22:56:52 +04:00
$ ( '#dropdown' ) . hide ( 'blind' , function ( ) {
2012-08-09 01:50:09 +04:00
OC . Share . droppedDown = false ;
2012-05-05 22:56:52 +04:00
$ ( '#dropdown' ) . remove ( ) ;
2012-08-09 01:50:09 +04:00
if ( typeof FileActions !== 'undefined' ) {
$ ( 'tr' ) . removeClass ( 'mouseOver' ) ;
}
2012-05-05 22:56:52 +04:00
if ( callback ) {
callback . call ( ) ;
}
} ) ;
} ,
2013-08-30 15:53:49 +04:00
addShareWith : function ( shareType , shareWith , shareWithDisplayName , permissions , possiblePermissions , mailSend , collection ) {
2014-06-04 12:37:04 +04:00
var shareItem = {
share _type : shareType ,
share _with : shareWith ,
share _with _displayname : shareWithDisplayName ,
permissions : permissions
} ;
2013-10-14 22:17:45 +04:00
if ( shareType === 1 ) {
shareWithDisplayName = shareWithDisplayName + " (" + t ( 'core' , 'group' ) + ')' ;
}
2012-07-31 21:06:32 +04:00
if ( ! OC . Share . itemShares [ shareType ] ) {
OC . Share . itemShares [ shareType ] = [ ] ;
}
OC . Share . itemShares [ shareType ] . push ( shareWith ) ;
2012-09-09 22:44:08 +04:00
if ( collection ) {
if ( collection . item _type == 'file' || collection . item _type == 'folder' ) {
var item = collection . path ;
2012-08-02 02:03:00 +04:00
} else {
2012-09-09 22:44:08 +04:00
var item = collection . item _source ;
2012-08-02 02:03:00 +04:00
}
2012-09-09 22:44:08 +04:00
var collectionList = $ ( '#shareWithList li' ) . filterAttr ( 'data-collection' , item ) ;
if ( collectionList . length > 0 ) {
2013-03-28 00:17:58 +04:00
$ ( collectionList ) . append ( ', ' + shareWithDisplayName ) ;
2012-09-09 22:44:08 +04:00
} else {
2014-06-14 22:56:54 +04:00
var html = '<li style="clear: both;" data-collection="' + item + '">' + t ( 'core' , 'Shared in {item} with {user}' , { 'item' : escapeHTML ( item ) , user : escapeHTML ( shareWithDisplayName ) } ) + '</li>' ;
2012-09-09 22:44:08 +04:00
$ ( '#shareWithList' ) . prepend ( html ) ;
2012-07-27 18:13:23 +04:00
}
2012-09-09 22:44:08 +04:00
} else {
var editChecked = createChecked = updateChecked = deleteChecked = shareChecked = '' ;
if ( permissions & OC . PERMISSION _CREATE ) {
createChecked = 'checked="checked"' ;
editChecked = 'checked="checked"' ;
2012-07-27 18:13:23 +04:00
}
2012-09-09 22:44:08 +04:00
if ( permissions & OC . PERMISSION _UPDATE ) {
updateChecked = 'checked="checked"' ;
editChecked = 'checked="checked"' ;
2012-07-27 18:13:23 +04:00
}
2012-09-09 22:44:08 +04:00
if ( permissions & OC . PERMISSION _DELETE ) {
deleteChecked = 'checked="checked"' ;
editChecked = 'checked="checked"' ;
2012-07-27 18:13:23 +04:00
}
2012-09-09 22:44:08 +04:00
if ( permissions & OC . PERMISSION _SHARE ) {
shareChecked = 'checked="checked"' ;
}
2013-03-04 03:54:21 +04:00
var html = '<li style="clear: both;" data-share-type="' + escapeHTML ( shareType ) + '" data-share-with="' + escapeHTML ( shareWith ) + '" title="' + escapeHTML ( shareWith ) + '">' ;
2013-10-23 19:56:28 +04:00
var showCrudsButton ;
2014-05-28 00:09:55 +04:00
html += '<a href="#" class="unshare"><img class="svg" alt="' + t ( 'core' , 'Unshare' ) + '" title="' + t ( 'core' , 'Unshare' ) + '" src="' + OC . imagePath ( 'core' , 'actions/delete' ) + '"/></a>' ;
2013-10-23 19:56:28 +04:00
html += '<span class="username">' + escapeHTML ( shareWithDisplayName ) + '</span>' ;
2013-09-24 20:32:57 +04:00
var mailNotificationEnabled = $ ( 'input:hidden[name=mailNotificationEnabled]' ) . val ( ) ;
2013-08-30 15:53:49 +04:00
if ( mailNotificationEnabled === 'yes' ) {
2013-09-24 20:32:57 +04:00
var checked = '' ;
2013-08-30 17:39:43 +04:00
if ( mailSend === '1' ) {
2013-08-30 15:53:49 +04:00
checked = 'checked' ;
}
2013-10-23 19:56:28 +04:00
html += '<label><input type="checkbox" name="mailNotification" class="mailNotification" ' + checked + ' />' + t ( 'core' , 'notify by email' ) + '</label> ' ;
2013-08-30 15:53:49 +04:00
}
2012-09-09 22:44:08 +04:00
if ( possiblePermissions & OC . PERMISSION _CREATE || possiblePermissions & OC . PERMISSION _UPDATE || possiblePermissions & OC . PERMISSION _DELETE ) {
2013-10-23 19:56:28 +04:00
html += '<label><input type="checkbox" name="edit" class="permissions" ' + editChecked + ' />' + t ( 'core' , 'can edit' ) + '</label> ' ;
2012-09-09 22:44:08 +04:00
}
2014-05-28 00:09:55 +04:00
showCrudsButton = '<a href="#" class="showCruds"><img class="svg" alt="' + t ( 'core' , 'access control' ) + '" title="' + t ( 'core' , 'access control' ) + '" src="' + OC . imagePath ( 'core' , 'actions/triangle-s' ) + '"/></a>' ;
2012-09-09 22:44:08 +04:00
html += '<div class="cruds" style="display:none;">' ;
if ( possiblePermissions & OC . PERMISSION _CREATE ) {
2012-09-21 13:48:20 +04:00
html += '<label><input type="checkbox" name="create" class="permissions" ' + createChecked + ' data-permissions="' + OC . PERMISSION _CREATE + '" />' + t ( 'core' , 'create' ) + '</label>' ;
2012-09-09 22:44:08 +04:00
}
if ( possiblePermissions & OC . PERMISSION _UPDATE ) {
2012-09-21 13:48:20 +04:00
html += '<label><input type="checkbox" name="update" class="permissions" ' + updateChecked + ' data-permissions="' + OC . PERMISSION _UPDATE + '" />' + t ( 'core' , 'update' ) + '</label>' ;
2012-09-09 22:44:08 +04:00
}
if ( possiblePermissions & OC . PERMISSION _DELETE ) {
2012-09-21 13:48:20 +04:00
html += '<label><input type="checkbox" name="delete" class="permissions" ' + deleteChecked + ' data-permissions="' + OC . PERMISSION _DELETE + '" />' + t ( 'core' , 'delete' ) + '</label>' ;
2012-09-09 22:44:08 +04:00
}
if ( possiblePermissions & OC . PERMISSION _SHARE ) {
2012-09-21 13:48:20 +04:00
html += '<label><input type="checkbox" name="share" class="permissions" ' + shareChecked + ' data-permissions="' + OC . PERMISSION _SHARE + '" />' + t ( 'core' , 'share' ) + '</label>' ;
2012-09-09 22:44:08 +04:00
}
html += '</div>' ;
html += '</li>' ;
2013-10-23 19:56:28 +04:00
html = $ ( html ) . appendTo ( '#shareWithList' ) ;
// insert cruds button into last label element
var lastLabel = html . find ( '>label:last' ) ;
if ( lastLabel . exists ( ) ) {
lastLabel . append ( showCrudsButton ) ;
}
else {
html . find ( '.cruds' ) . before ( showCrudsButton ) ;
}
2014-06-04 12:37:04 +04:00
if ( ! OC . Share . currentShares [ shareType ] ) {
OC . Share . currentShares [ shareType ] = [ ] ;
}
OC . Share . currentShares [ shareType ] . push ( shareItem ) ;
2012-09-09 22:44:08 +04:00
}
2012-05-05 22:56:52 +04:00
} ,
2012-11-23 18:51:57 +04:00
showLink : function ( token , password , itemSource ) {
2012-09-19 09:44:15 +04:00
OC . Share . itemShares [ OC . Share . SHARE _TYPE _LINK ] = true ;
2012-08-28 04:05:51 +04:00
$ ( '#linkCheckbox' ) . attr ( 'checked' , true ) ;
2014-05-28 14:13:55 +04:00
2014-03-14 15:10:05 +04:00
//check itemType
var linkSharetype = $ ( '#dropdown' ) . data ( 'item-type' ) ;
2014-05-28 14:13:55 +04:00
2012-11-23 18:51:57 +04:00
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
2014-03-14 15:10:05 +04:00
var service = '' ;
if ( linkSharetype === 'folder' || linkSharetype === 'file' ) {
service = 'files' ;
} else {
service = linkSharetype ;
}
2014-05-28 14:13:55 +04:00
2014-03-14 15:10:05 +04:00
var link = parent . location . protocol + '//' + location . host + OC . linkTo ( '' , 'public.php' ) + '?service=' + service + '&t=' + token ;
2012-11-23 18:51:57 +04:00
}
2012-08-28 04:05:51 +04:00
$ ( '#linkText' ) . val ( link ) ;
$ ( '#linkText' ) . show ( 'blind' ) ;
2012-12-05 17:17:21 +04:00
$ ( '#linkText' ) . css ( 'display' , 'block' ) ;
2014-05-12 14:19:07 +04:00
if ( oc _appconfig . core . enforcePasswordForPublicLink === false || password === null ) {
$ ( '#showPassword' ) . show ( ) ;
$ ( '#showPassword+label' ) . show ( ) ;
}
2012-09-01 21:52:12 +04:00
if ( password != null ) {
2012-08-29 22:06:33 +04:00
$ ( '#linkPass' ) . show ( 'blind' ) ;
2012-12-05 17:17:21 +04:00
$ ( '#showPassword' ) . attr ( 'checked' , true ) ;
2013-11-26 23:17:13 +04:00
$ ( '#linkPassText' ) . attr ( 'placeholder' , '**********' ) ;
2012-08-29 22:06:33 +04:00
}
2012-09-19 09:02:57 +04:00
$ ( '#expiration' ) . show ( ) ;
2013-02-08 14:05:56 +04:00
$ ( '#emailPrivateLink #email' ) . show ( ) ;
$ ( '#emailPrivateLink #emailButton' ) . show ( ) ;
2013-06-25 14:24:14 +04:00
$ ( '#allowPublicUploadWrapper' ) . show ( ) ;
2012-05-05 22:56:52 +04:00
} ,
2012-08-28 04:05:51 +04:00
hideLink : function ( ) {
$ ( '#linkText' ) . hide ( 'blind' ) ;
2014-05-09 18:36:20 +04:00
$ ( '#defaultExpireMessage' ) . hide ( ) ;
2012-08-29 22:01:09 +04:00
$ ( '#showPassword' ) . hide ( ) ;
2012-12-05 17:17:21 +04:00
$ ( '#showPassword+label' ) . hide ( ) ;
2014-05-12 14:19:07 +04:00
$ ( '#linkPass' ) . hide ( 'blind' ) ;
2013-02-08 14:05:56 +04:00
$ ( '#emailPrivateLink #email' ) . hide ( ) ;
$ ( '#emailPrivateLink #emailButton' ) . hide ( ) ;
2013-06-25 14:24:14 +04:00
$ ( '#allowPublicUploadWrapper' ) . hide ( ) ;
2013-02-08 14:05:56 +04:00
} ,
dirname : function ( path ) {
2012-05-05 22:56:52 +04:00
return path . replace ( /\\/g , '/' ) . replace ( /\/[^\/]*$/ , '' ) ;
2012-09-26 08:04:27 +04:00
} ,
showExpirationDate : function ( date ) {
$ ( '#expirationCheckbox' ) . attr ( 'checked' , true ) ;
$ ( '#expirationDate' ) . val ( date ) ;
2014-04-10 23:54:25 +04:00
$ ( '#expirationDate' ) . show ( 'blind' ) ;
$ ( '#expirationDate' ) . css ( 'display' , 'block' ) ;
2012-09-26 08:04:27 +04:00
$ ( '#expirationDate' ) . datepicker ( {
dateFormat : 'dd-mm-yy'
} ) ;
2014-06-03 17:15:04 +04:00
if ( oc _appconfig . core . defaultExpireDateEnforced ) {
$ ( '#expirationCheckbox' ) . attr ( 'disabled' , true ) ;
2014-06-06 19:40:16 +04:00
$ . datepicker . setDefaults ( {
maxDate : new Date ( date . replace ( ' 00:00:00' , '' ) )
} ) ;
2014-06-03 17:15:04 +04:00
}
if ( oc _appconfig . core . defaultExpireDateEnabled ) {
$ ( '#defaultExpireMessage' ) . show ( 'blind' ) ;
}
2012-05-05 22:56:52 +04:00
}
2013-09-11 14:45:32 +04:00
} ;
2012-05-05 22:56:52 +04:00
2011-07-27 05:27:40 +04:00
$ ( document ) . ready ( function ( ) {
2013-03-28 00:18:19 +04:00
2012-11-14 19:47:52 +04:00
if ( typeof monthNames != 'undefined' ) {
2013-02-08 14:05:56 +04:00
$ . 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 ) + '.' ; } ) ,
2014-06-06 19:40:16 +04:00
firstDay : firstDay ,
minDate : new Date ( )
2013-02-08 14:05:56 +04:00
} ) ;
}
$ ( document ) . on ( 'click' , 'a.share' , function ( event ) {
2012-08-09 01:50:09 +04:00
event . stopPropagation ( ) ;
2012-08-23 07:00:47 +04:00
if ( $ ( this ) . data ( 'item-type' ) !== undefined && $ ( this ) . data ( 'item' ) !== undefined ) {
2012-08-09 01:50:09 +04:00
var itemType = $ ( this ) . data ( 'item-type' ) ;
2012-08-23 07:00:47 +04:00
var itemSource = $ ( this ) . data ( 'item' ) ;
2012-08-09 01:50:09 +04:00
var appendTo = $ ( this ) . parent ( ) . parent ( ) ;
2012-08-28 04:05:51 +04:00
var link = false ;
2012-08-09 01:50:09 +04:00
var possiblePermissions = $ ( this ) . data ( 'possible-permissions' ) ;
2012-08-28 04:05:51 +04:00
if ( $ ( this ) . data ( 'link' ) !== undefined && $ ( this ) . data ( 'link' ) == true ) {
link = true ;
2012-07-04 01:00:23 +04:00
}
2012-08-09 01:50:09 +04:00
if ( OC . Share . droppedDown ) {
2012-08-23 07:00:47 +04:00
if ( itemSource != $ ( '#dropdown' ) . data ( 'item' ) ) {
2012-08-09 01:50:09 +04:00
OC . Share . hideDropDown ( function ( ) {
2012-08-28 04:05:51 +04:00
OC . Share . showDropDown ( itemType , itemSource , appendTo , link , possiblePermissions ) ;
2012-08-09 01:50:09 +04:00
} ) ;
} else {
OC . Share . hideDropDown ( ) ;
}
} else {
2012-08-28 04:05:51 +04:00
OC . Share . showDropDown ( itemType , itemSource , appendTo , link , possiblePermissions ) ;
2012-08-09 01:50:09 +04:00
}
2012-06-25 03:16:50 +04:00
}
} ) ;
2012-08-09 01:50:09 +04:00
$ ( this ) . click ( function ( event ) {
2012-10-08 23:03:16 +04:00
var target = $ ( event . target ) ;
2013-03-28 00:18:19 +04:00
var isMatched = ! target . is ( '.drop, .ui-datepicker-next, .ui-datepicker-prev, .ui-icon' )
2013-10-07 15:25:30 +04:00
&& ! target . closest ( '#ui-datepicker-div' ) . length && ! target . closest ( '.ui-autocomplete' ) . length ;
2012-10-08 23:03:16 +04:00
if ( OC . Share . droppedDown && isMatched && $ ( '#dropdown' ) . has ( event . target ) . length === 0 ) {
2012-08-09 01:50:09 +04:00
OC . Share . hideDropDown ( ) ;
}
} ) ;
2012-05-05 22:56:52 +04:00
2013-02-08 14:05:56 +04:00
$ ( document ) . on ( 'click' , '#dropdown .showCruds' , function ( ) {
2013-10-23 19:56:28 +04:00
$ ( this ) . closest ( 'li' ) . find ( '.cruds' ) . toggle ( ) ;
2013-10-07 15:11:34 +04:00
return false ;
2012-07-27 05:56:22 +04:00
} ) ;
2013-02-08 14:05:56 +04:00
$ ( document ) . on ( 'click' , '#dropdown .unshare' , function ( ) {
2013-10-21 18:14:23 +04:00
var $li = $ ( this ) . closest ( 'li' ) ;
2012-08-24 23:32:06 +04:00
var itemType = $ ( '#dropdown' ) . data ( 'item-type' ) ;
var itemSource = $ ( '#dropdown' ) . data ( 'item-source' ) ;
2013-10-21 18:14:23 +04:00
var shareType = $li . data ( 'share-type' ) ;
2014-03-28 22:08:59 +04:00
var shareWith = $li . attr ( 'data-share-with' ) ;
2012-08-24 23:32:06 +04:00
OC . Share . unshare ( itemType , itemSource , shareType , shareWith , function ( ) {
2013-10-21 18:14:23 +04:00
$li . remove ( ) ;
2012-08-06 22:45:45 +04:00
var index = OC . Share . itemShares [ shareType ] . indexOf ( shareWith ) ;
OC . Share . itemShares [ shareType ] . splice ( index , 1 ) ;
2014-06-04 12:37:04 +04:00
// updated list of shares
OC . Share . currentShares [ shareType ] . splice ( index , 1 ) ;
$ ( '#dropdown' ) . trigger ( new $ . Event ( 'sharesChanged' , { shares : OC . Share . currentShares } ) ) ;
2012-08-24 23:32:06 +04:00
OC . Share . updateIcon ( itemType , itemSource ) ;
2012-09-19 09:02:57 +04:00
if ( typeof OC . Share . statuses [ itemSource ] === 'undefined' ) {
2014-04-10 23:54:25 +04:00
$ ( '#expiration' ) . hide ( 'blind' ) ;
2012-09-19 09:02:57 +04:00
}
2011-08-03 23:21:53 +04:00
} ) ;
2013-10-07 15:11:34 +04:00
return false ;
2011-08-03 23:21:53 +04:00
} ) ;
2012-08-23 07:00:47 +04:00
2013-02-08 14:05:56 +04:00
$ ( document ) . on ( 'change' , '#dropdown .permissions' , function ( ) {
2013-10-21 18:14:23 +04:00
var li = $ ( this ) . closest ( 'li' ) ;
2012-07-27 05:56:22 +04:00
if ( $ ( this ) . attr ( 'name' ) == 'edit' ) {
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 checkboxes = $ ( '.permissions' , li ) ;
// Uncheck Edit if Create, Update, and Delete are not checked
2013-02-08 14:05:56 +04:00
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' ) )
{
2012-07-27 05:56:22 +04:00
$ ( checkboxes ) . filter ( 'input[name="edit"]' ) . attr ( 'checked' , false ) ;
// Check Edit if Create, Update, or Delete is checked
2013-02-08 14:05:56 +04:00
} else if ( ( $ ( this ) . attr ( 'name' ) == 'create'
2014-03-05 18:47:12 +04:00
|| $ ( this ) . attr ( 'name' ) == 'update'
|| $ ( this ) . attr ( 'name' ) == 'delete' ) )
2013-02-08 14:05:56 +04:00
{
2012-07-27 05:56:22 +04:00
$ ( checkboxes ) . filter ( 'input[name="edit"]' ) . attr ( 'checked' , true ) ;
}
}
2012-08-31 03:05:36 +04:00
var permissions = OC . PERMISSION _READ ;
2012-07-27 05:56:22 +04:00
$ ( checkboxes ) . filter ( ':not(input[name="edit"])' ) . filter ( ':checked' ) . each ( function ( index , checkbox ) {
permissions |= $ ( checkbox ) . data ( 'permissions' ) ;
} ) ;
2013-02-08 14:05:56 +04:00
OC . Share . setPermissions ( $ ( '#dropdown' ) . data ( 'item-type' ) ,
$ ( '#dropdown' ) . data ( 'item-source' ) ,
2013-10-21 18:14:23 +04:00
li . data ( 'share-type' ) ,
2014-03-28 22:08:59 +04:00
li . attr ( 'data-share-with' ) ,
2013-02-08 14:05:56 +04:00
permissions ) ;
2012-05-05 22:56:52 +04:00
} ) ;
2012-08-23 07:00:47 +04:00
2013-02-08 14:05:56 +04:00
$ ( document ) . on ( 'change' , '#dropdown #linkCheckbox' , function ( ) {
2012-07-11 20:18:59 +04:00
var itemType = $ ( '#dropdown' ) . data ( 'item-type' ) ;
2012-08-28 04:05:51 +04:00
var itemSource = $ ( '#dropdown' ) . data ( 'item-source' ) ;
2013-10-23 20:39:37 +04:00
var itemSourceName = $ ( '#dropdown' ) . data ( 'item-source-name' ) ;
2014-06-03 17:15:04 +04:00
2011-08-03 23:21:53 +04:00
if ( this . checked ) {
2014-06-03 17:15:04 +04:00
var expireDateString = '' ;
if ( oc _appconfig . core . defaultExpireDateEnabled ) {
var date = new Date ( ) . getTime ( ) ;
var expireAfterMs = oc _appconfig . core . defaultExpireDate * 24 * 60 * 60 * 1000 ;
var expireDate = new Date ( date + expireAfterMs ) ;
var month = expireDate . getMonth ( ) + 1 ;
var year = expireDate . getFullYear ( ) ;
var day = expireDate . getDate ( ) ;
expireDateString = year + "-" + month + '-' + day + ' 00:00:00' ;
}
2012-08-28 04:05:51 +04:00
// Create a link
2014-05-12 14:19:07 +04:00
if ( oc _appconfig . core . enforcePasswordForPublicLink === false ) {
2014-06-03 17:15:04 +04:00
OC . Share . share ( itemType , itemSource , OC . Share . SHARE _TYPE _LINK , '' , OC . PERMISSION _READ , itemSourceName , expireDateString , function ( data ) {
2014-05-12 14:19:07 +04:00
OC . Share . showLink ( data . token , null , itemSource ) ;
2014-06-04 12:37:04 +04:00
$ ( '#dropdown' ) . trigger ( new $ . Event ( 'sharesChanged' , { shares : OC . Share . currentShares } ) ) ;
2014-05-12 14:19:07 +04:00
OC . Share . updateIcon ( itemType , itemSource ) ;
} ) ;
} else {
$ ( '#linkPass' ) . toggle ( 'blind' ) ;
$ ( '#linkPassText' ) . focus ( ) ;
}
2014-06-03 17:15:04 +04:00
if ( expireDateString !== '' ) {
OC . Share . showExpirationDate ( expireDateString ) ;
}
2011-08-03 23:21:53 +04:00
} else {
2012-05-05 22:56:52 +04:00
// Delete private link
2014-05-12 14:19:07 +04:00
OC . Share . hideLink ( ) ;
2014-06-03 17:15:04 +04:00
$ ( '#expiration' ) . hide ( 'blind' ) ;
2014-05-12 14:19:07 +04:00
if ( $ ( '#linkText' ) . val ( ) !== '' ) {
OC . Share . unshare ( itemType , itemSource , OC . Share . SHARE _TYPE _LINK , '' , function ( ) {
OC . Share . itemShares [ OC . Share . SHARE _TYPE _LINK ] = false ;
2014-06-04 12:37:04 +04:00
$ ( '#dropdown' ) . trigger ( new $ . Event ( 'sharesChanged' , { shares : OC . Share . currentShares } ) ) ;
2014-05-12 14:19:07 +04:00
OC . Share . updateIcon ( itemType , itemSource ) ;
if ( typeof OC . Share . statuses [ itemSource ] === 'undefined' ) {
$ ( '#expiration' ) . hide ( 'blind' ) ;
}
} ) ;
}
2011-08-03 23:21:53 +04:00
}
2011-07-27 05:27:40 +04:00
} ) ;
2012-08-23 07:00:47 +04:00
2013-02-08 14:05:56 +04:00
$ ( document ) . on ( 'click' , '#dropdown #linkText' , function ( ) {
2011-08-07 23:20:57 +04:00
$ ( this ) . focus ( ) ;
$ ( this ) . select ( ) ;
} ) ;
2012-04-26 18:33:06 +04:00
2013-06-25 14:24:14 +04:00
// Handle the Allow Public Upload Checkbox
$ ( document ) . on ( 'click' , '#sharingDialogAllowPublicUpload' , function ( ) {
// Gather data
var allowPublicUpload = $ ( this ) . is ( ':checked' ) ;
var itemType = $ ( '#dropdown' ) . data ( 'item-type' ) ;
var itemSource = $ ( '#dropdown' ) . data ( 'item-source' ) ;
2013-10-23 20:39:37 +04:00
var itemSourceName = $ ( '#dropdown' ) . data ( 'item-source-name' ) ;
2014-05-07 14:17:46 +04:00
var expirationDate = '' ;
if ( $ ( '#expirationCheckbox' ) . is ( ':checked' ) === true ) {
expirationDate = $ ( "#expirationDate" ) . val ( ) ;
}
2013-06-25 14:24:14 +04:00
var permissions = 0 ;
// Calculate permissions
if ( allowPublicUpload ) {
permissions = OC . PERMISSION _UPDATE + OC . PERMISSION _CREATE + OC . PERMISSION _READ ;
} else {
permissions = OC . PERMISSION _READ ;
}
// Update the share information
2014-05-07 14:17:46 +04:00
OC . Share . share ( itemType , itemSource , OC . Share . SHARE _TYPE _LINK , '' , permissions , itemSourceName , expirationDate , function ( data ) {
2013-06-25 14:24:14 +04:00
} ) ;
} ) ;
2013-02-08 14:05:56 +04:00
$ ( document ) . on ( 'click' , '#dropdown #showPassword' , function ( ) {
2012-08-28 23:10:06 +04:00
$ ( '#linkPass' ) . toggle ( 'blind' ) ;
2012-12-05 17:17:21 +04:00
if ( ! $ ( '#showPassword' ) . is ( ':checked' ) ) {
var itemType = $ ( '#dropdown' ) . data ( 'item-type' ) ;
var itemSource = $ ( '#dropdown' ) . data ( 'item-source' ) ;
2013-10-23 20:39:37 +04:00
var itemSourceName = $ ( '#dropdown' ) . data ( 'item-source-name' ) ;
2013-09-20 15:11:05 +04:00
var allowPublicUpload = $ ( '#sharingDialogAllowPublicUpload' ) . is ( ':checked' ) ;
2013-09-20 17:47:33 +04:00
var permissions = 0 ;
2013-09-20 15:11:05 +04:00
// Calculate permissions
if ( allowPublicUpload ) {
permissions = OC . PERMISSION _UPDATE + OC . PERMISSION _CREATE + OC . PERMISSION _READ ;
} else {
permissions = OC . PERMISSION _READ ;
}
2013-10-29 17:22:24 +04:00
OC . Share . share ( itemType , itemSource , OC . Share . SHARE _TYPE _LINK , '' , permissions , itemSourceName ) ;
2012-12-14 16:13:01 +04:00
} else {
$ ( '#linkPassText' ) . focus ( ) ;
2012-12-05 17:17:21 +04:00
}
2012-08-28 04:05:51 +04:00
} ) ;
2013-02-08 14:05:56 +04:00
$ ( document ) . on ( 'focusout keyup' , '#dropdown #linkPassText' , function ( event ) {
2013-07-30 12:26:42 +04:00
var linkPassText = $ ( '#linkPassText' ) ;
if ( linkPassText . val ( ) != '' && ( event . type == 'focusout' || event . keyCode == 13 ) ) {
var allowPublicUpload = $ ( '#sharingDialogAllowPublicUpload' ) . is ( ':checked' ) ;
var dropDown = $ ( '#dropdown' ) ;
var itemType = dropDown . data ( 'item-type' ) ;
var itemSource = dropDown . data ( 'item-source' ) ;
2013-10-23 20:39:37 +04:00
var itemSourceName = $ ( '#dropdown' ) . data ( 'item-source-name' ) ;
2013-07-30 12:26:42 +04:00
var permissions = 0 ;
// Calculate permissions
if ( allowPublicUpload ) {
permissions = OC . PERMISSION _UPDATE + OC . PERMISSION _CREATE + OC . PERMISSION _READ ;
} else {
permissions = OC . PERMISSION _READ ;
}
2014-05-12 14:19:07 +04:00
OC . Share . share ( itemType , itemSource , OC . Share . SHARE _TYPE _LINK , $ ( '#linkPassText' ) . val ( ) , permissions , itemSourceName , function ( data ) {
2013-07-30 12:26:42 +04:00
linkPassText . val ( '' ) ;
linkPassText . attr ( 'placeholder' , t ( 'core' , 'Password protected' ) ) ;
2014-05-12 14:19:07 +04:00
if ( oc _appconfig . core . enforcePasswordForPublicLink ) {
OC . Share . showLink ( data . token , "password set" , itemSource ) ;
OC . Share . updateIcon ( itemType , itemSource ) ;
}
2012-12-14 16:13:01 +04:00
} ) ;
2014-05-12 14:19:07 +04:00
2012-12-04 17:06:44 +04:00
}
2012-08-28 04:05:51 +04:00
} ) ;
2013-02-08 14:05:56 +04:00
$ ( document ) . on ( 'click' , '#dropdown #expirationCheckbox' , function ( ) {
2012-09-02 02:53:48 +04:00
if ( this . checked ) {
2012-09-26 08:04:27 +04:00
OC . Share . showExpirationDate ( '' ) ;
2012-09-02 02:53:48 +04:00
} else {
2012-09-26 08:09:35 +04:00
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' ) {
2013-04-09 15:22:34 +04:00
OC . dialogs . alert ( t ( 'core' , 'Error unsetting expiration date' ) , t ( 'core' , 'Error' ) ) ;
2012-09-26 08:09:35 +04:00
}
2014-04-10 23:54:25 +04:00
$ ( '#expirationDate' ) . hide ( 'blind' ) ;
2014-06-03 17:15:04 +04:00
if ( oc _appconfig . core . defaultExpireDateEnforced === false ) {
$ ( '#defaultExpireMessage' ) . show ( 'blind' ) ;
2014-05-13 13:56:04 +04:00
}
2012-09-26 08:09:35 +04:00
} ) ;
2012-09-02 02:53:48 +04:00
}
} ) ;
2013-03-28 00:18:19 +04:00
2013-02-08 14:05:56 +04:00
$ ( document ) . on ( 'change' , '#dropdown #expirationDate' , function ( ) {
2012-09-02 02:53:48 +04:00
var itemType = $ ( '#dropdown' ) . data ( 'item-type' ) ;
var itemSource = $ ( '#dropdown' ) . data ( 'item-source' ) ;
2014-03-19 15:11:14 +04:00
$ ( this ) . tipsy ( 'hide' ) ;
$ ( this ) . removeClass ( 'error' ) ;
2012-09-02 02:53:48 +04:00
$ . post ( OC . filePath ( 'core' , 'ajax' , 'share.php' ) , { action : 'setExpirationDate' , itemType : itemType , itemSource : itemSource , date : $ ( this ) . val ( ) } , function ( result ) {
if ( ! result || result . status !== 'success' ) {
2014-03-19 15:11:14 +04:00
var expirationDateField = $ ( '#dropdown #expirationDate' ) ;
2014-03-05 16:12:58 +04:00
if ( ! result . data . message ) {
2014-03-19 15:11:14 +04:00
expirationDateField . attr ( 'original-title' , t ( 'core' , 'Error setting expiration date' ) ) ;
2014-03-05 16:12:58 +04:00
} else {
2014-03-19 15:11:14 +04:00
expirationDateField . attr ( 'original-title' , result . data . message ) ;
2014-03-05 16:12:58 +04:00
}
2014-03-19 15:11:14 +04:00
expirationDateField . tipsy ( { gravity : 'n' , fade : true } ) ;
expirationDateField . tipsy ( 'show' ) ;
expirationDateField . addClass ( 'error' ) ;
2014-05-13 13:56:04 +04:00
} else {
if ( oc _appconfig . core . defaultExpireDateEnforced === 'no' ) {
$ ( '#defaultExpireMessage' ) . hide ( 'blind' ) ;
}
2012-09-02 02:53:48 +04:00
}
} ) ;
} ) ;
2012-12-11 02:22:42 +04:00
2013-02-08 14:05:56 +04:00
$ ( 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 ( ) ;
2014-01-23 14:18:23 +04:00
var expirationDate = '' ;
if ( $ ( '#expirationCheckbox' ) . is ( ':checked' ) === true ) {
expirationDate = $ ( "#expirationDate" ) . val ( ) ;
}
2013-02-08 14:05:56 +04:00
if ( email != '' ) {
2013-10-04 15:10:51 +04:00
$ ( '#email' ) . prop ( 'disabled' , true ) ;
2013-02-08 14:05:56 +04:00
$ ( '#email' ) . val ( t ( 'core' , 'Sending ...' ) ) ;
2013-10-04 15:10:51 +04:00
$ ( '#emailButton' ) . prop ( 'disabled' , true ) ;
2012-12-12 15:34:28 +04:00
2014-01-23 14:18:23 +04:00
$ . post ( OC . filePath ( 'core' , 'ajax' , 'share.php' ) , { action : 'email' , toaddress : email , link : link , itemType : itemType , itemSource : itemSource , file : file , expiration : expirationDate } ,
2013-02-08 14:05:56 +04:00
function ( result ) {
2013-10-04 15:10:51 +04:00
$ ( '#email' ) . prop ( 'disabled' , false ) ;
$ ( '#emailButton' ) . prop ( 'disabled' , false ) ;
2013-02-08 14:05:56 +04:00
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' ) ) ;
}
} ) ;
}
} ) ;
2012-12-11 02:22:42 +04:00
2013-08-30 18:29:22 +04:00
$ ( document ) . on ( 'click' , '#dropdown input[name=mailNotification]' , function ( ) {
2013-10-21 18:14:23 +04:00
var $li = $ ( this ) . closest ( 'li' ) ;
2013-08-30 15:53:49 +04:00
var itemType = $ ( '#dropdown' ) . data ( 'item-type' ) ;
var itemSource = $ ( '#dropdown' ) . data ( 'item-source' ) ;
2013-09-24 20:32:57 +04:00
var action = '' ;
2013-08-30 15:53:49 +04:00
if ( this . checked ) {
action = 'informRecipients' ;
} else {
action = 'informRecipientsDisabled' ;
}
2013-10-21 18:14:23 +04:00
var shareType = $li . data ( 'share-type' ) ;
2014-03-28 22:08:59 +04:00
var shareWith = $li . attr ( 'data-share-with' ) ;
2013-08-30 15:53:49 +04:00
$ . post ( OC . filePath ( 'core' , 'ajax' , 'share.php' ) , { action : action , recipient : shareWith , shareType : shareType , itemSource : itemSource , itemType : itemType } , function ( result ) {
if ( result . status !== 'success' ) {
OC . dialogs . alert ( t ( 'core' , result . data . message ) , t ( 'core' , 'Warning' ) ) ;
}
} ) ;
} ) ;
2012-12-11 02:22:42 +04:00
2012-06-25 22:55:49 +04:00
} ) ;