2014-01-22 10:12:51 +00:00
/ * *
* @ name Photo Module
* @ description Takes care of every action a photo can handle and execute .
* @ author Tobias Reich
* @ copyright 2014 by Tobias Reich
* /
photo = {
json : null ,
getID : function ( ) {
var id ;
if ( photo . json ) id = photo . json . id ;
else id = $ ( ".photo:hover, .photo.active" ) . attr ( "data-id" ) ;
if ( id ) return id ;
else return false ;
} ,
load : function ( photoID , albumID ) {
var params ,
checkPasswd ;
params = "getPhoto&photoID=" + photoID + "&albumID=" + albumID + "&password=" + password . value ;
lychee . api ( params , function ( data ) {
if ( data === "Warning: Wrong password!" ) {
checkPasswd = function ( ) {
if ( password . value !== "" ) photo . load ( photoID , albumID ) ;
else setTimeout ( checkPasswd , 250 ) ;
2014-02-25 22:37:05 +00:00
} ;
2014-01-22 10:12:51 +00:00
checkPasswd ( ) ;
return false ;
}
photo . json = data ;
if ( ! visible . photo ( ) ) view . photo . show ( ) ;
view . photo . init ( ) ;
lychee . imageview . show ( ) ;
setTimeout ( function ( ) { lychee . content . show ( ) } , 300 ) ;
} ) ;
} ,
parse : function ( ) {
if ( ! photo . json . title ) photo . json . title = "Untitled" ;
photo . json . url = lychee . upload _path _big + photo . json . url ;
} ,
2014-03-27 21:53:34 +00:00
previous : function ( animate ) {
var delay = 0 ;
2014-03-26 23:16:39 +00:00
2014-04-01 20:49:51 +00:00
if ( photo . getID ( ) !== false &&
album . json &&
2014-03-26 23:16:39 +00:00
album . json . content [ photo . getID ( ) ] &&
album . json . content [ photo . getID ( ) ] . previousPhoto !== "" ) {
2014-03-27 21:53:34 +00:00
if ( animate === true ) {
2014-03-27 22:00:23 +00:00
delay = 200 ;
2014-03-27 21:53:34 +00:00
$ ( "#image" ) . css ( {
WebkitTransform : 'translateX(100%)' ,
MozTransform : 'translateX(100%)' ,
transform : 'translateX(100%)' ,
opacity : 0
} ) ;
}
2014-03-26 23:16:39 +00:00
setTimeout ( function ( ) {
2014-04-01 20:57:01 +00:00
if ( photo . getID ( ) === false ) return false ;
2014-03-26 23:16:39 +00:00
lychee . goto ( album . getID ( ) + "/" + album . json . content [ photo . getID ( ) ] . previousPhoto )
2014-03-27 21:53:34 +00:00
} , delay ) ;
2014-03-26 23:16:39 +00:00
}
} ,
2014-03-27 21:53:34 +00:00
next : function ( animate ) {
var delay = 0 ;
2014-03-26 23:16:39 +00:00
2014-04-01 20:49:51 +00:00
if ( photo . getID ( ) !== false &&
album . json &&
2014-03-26 23:16:39 +00:00
album . json . content [ photo . getID ( ) ] &&
album . json . content [ photo . getID ( ) ] . nextPhoto !== "" ) {
2014-03-27 21:53:34 +00:00
if ( animate === true ) {
2014-03-27 22:00:23 +00:00
delay = 200 ;
2014-03-27 21:53:34 +00:00
$ ( "#image" ) . css ( {
WebkitTransform : 'translateX(-100%)' ,
MozTransform : 'translateX(-100%)' ,
transform : 'translateX(-100%)' ,
opacity : 0
} ) ;
}
2014-03-26 23:16:39 +00:00
setTimeout ( function ( ) {
2014-04-01 20:57:01 +00:00
if ( photo . getID ( ) === false ) return false ;
2014-03-26 23:16:39 +00:00
lychee . goto ( album . getID ( ) + "/" + album . json . content [ photo . getID ( ) ] . nextPhoto ) ;
2014-03-27 21:53:34 +00:00
} , delay ) ;
2014-03-26 23:16:39 +00:00
}
} ,
2014-01-31 19:11:28 +00:00
delete : function ( photoIDs ) {
2014-01-22 10:12:51 +00:00
var params ,
buttons ,
photoTitle ;
2014-01-31 19:11:28 +00:00
if ( ! photoIDs ) return false ;
if ( photoIDs instanceof Array === false ) photoIDs = [ photoIDs ] ;
2014-01-22 10:12:51 +00:00
2014-01-31 19:11:28 +00:00
if ( photoIDs . length === 1 ) {
2014-01-28 23:43:06 +00:00
// Get title if only one photo is selected
if ( visible . photo ( ) ) photoTitle = photo . json . title ;
2014-01-31 19:11:28 +00:00
else photoTitle = album . json . content [ photoIDs ] . title ;
2014-02-25 22:37:05 +00:00
if ( photoTitle === "" ) photoTitle = "Untitled" ;
2014-01-28 23:43:06 +00:00
}
2014-01-22 10:12:51 +00:00
buttons = [
2014-01-31 20:22:25 +00:00
[ "" , function ( ) {
2014-01-31 19:11:28 +00:00
photoIDs . forEach ( function ( id , index , array ) {
2014-01-22 10:12:51 +00:00
2014-01-28 23:43:06 +00:00
// Change reference for the next and previous photo
if ( album . json . content [ id ] . nextPhoto !== "" || album . json . content [ id ] . previousPhoto !== "" ) {
2014-01-31 20:22:25 +00:00
2014-01-28 23:43:06 +00:00
nextPhoto = album . json . content [ id ] . nextPhoto ;
previousPhoto = album . json . content [ id ] . previousPhoto ;
2014-01-31 20:22:25 +00:00
2014-01-28 23:43:06 +00:00
album . json . content [ previousPhoto ] . nextPhoto = nextPhoto ;
album . json . content [ nextPhoto ] . previousPhoto = previousPhoto ;
2014-01-31 20:22:25 +00:00
2014-01-28 23:43:06 +00:00
}
2014-01-31 20:22:25 +00:00
2014-01-28 23:43:06 +00:00
album . json . content [ id ] = null ;
view . album . content . delete ( id ) ;
2014-01-31 20:22:25 +00:00
2014-01-28 23:43:06 +00:00
} ) ;
2014-01-22 10:12:51 +00:00
// Only when search is not active
if ( ! visible . albums ( ) ) lychee . goto ( album . getID ( ) ) ;
2014-01-31 19:11:28 +00:00
params = "deletePhoto&photoIDs=" + photoIDs ;
2014-01-22 10:12:51 +00:00
lychee . api ( params , function ( data ) {
if ( data !== true ) lychee . error ( null , params , data ) ;
} ) ;
} ] ,
2014-01-31 20:22:25 +00:00
[ "" , function ( ) { } ]
2014-01-22 10:12:51 +00:00
] ;
2014-01-31 20:22:25 +00:00
if ( photoIDs . length === 1 ) {
buttons [ 0 ] [ 0 ] = "Delete Photo" ;
buttons [ 1 ] [ 0 ] = "Keep Photo" ;
modal . show ( "Delete Photo" , "Are you sure you want to delete the photo '" + photoTitle + "'?<br>This action can't be undone!" , buttons ) ;
} else {
buttons [ 0 ] [ 0 ] = "Delete Photos" ;
buttons [ 1 ] [ 0 ] = "Keep Photos" ;
modal . show ( "Delete Photos" , "Are you sure you want to delete all " + photoIDs . length + " selected photo?<br>This action can't be undone!" , buttons ) ;
}
2014-01-22 10:12:51 +00:00
} ,
2014-01-31 19:11:28 +00:00
setTitle : function ( photoIDs ) {
2014-01-31 20:22:25 +00:00
2014-01-22 10:12:51 +00:00
var oldTitle = "" ,
newTitle ,
params ,
buttons ;
2014-01-31 19:11:28 +00:00
if ( ! photoIDs ) return false ;
if ( photoIDs instanceof Array === false ) photoIDs = [ photoIDs ] ;
2014-01-31 20:22:25 +00:00
2014-01-31 19:11:28 +00:00
if ( photoIDs . length === 1 ) {
2014-01-28 23:43:06 +00:00
// Get old title if only one photo is selected
if ( photo . json ) oldTitle = photo . json . title ;
2014-01-31 19:11:28 +00:00
else if ( album . json ) oldTitle = album . json . content [ photoIDs ] . title ;
2014-02-28 14:08:05 +00:00
oldTitle = oldTitle . replace ( "'" , "'" ) ;
2014-01-28 23:43:06 +00:00
}
2014-01-22 10:12:51 +00:00
buttons = [
[ "Set Title" , function ( ) {
2014-06-14 19:38:37 +00:00
// Get input
2014-01-22 10:12:51 +00:00
newTitle = $ ( ".message input.text" ) . val ( ) ;
2014-06-14 19:38:37 +00:00
// Remove html from input
newTitle = lychee . removeHTML ( newTitle ) ;
2014-02-08 20:19:19 +00:00
if ( visible . photo ( ) ) {
photo . json . title = ( newTitle === "" ) ? "Untitled" : newTitle ;
view . photo . title ( ) ;
}
2014-01-22 10:12:51 +00:00
2014-02-08 20:19:19 +00:00
photoIDs . forEach ( function ( id , index , array ) {
album . json . content [ id ] . title = newTitle ;
view . album . content . title ( id ) ;
} ) ;
2014-01-22 10:12:51 +00:00
2014-02-08 20:19:19 +00:00
params = "setPhotoTitle&photoIDs=" + photoIDs + "&title=" + escape ( encodeURI ( newTitle ) ) ;
lychee . api ( params , function ( data ) {
2014-01-22 10:12:51 +00:00
2014-02-08 20:19:19 +00:00
if ( data !== true ) lychee . error ( null , params , data ) ;
2014-01-22 10:12:51 +00:00
2014-02-08 20:19:19 +00:00
} ) ;
2014-01-22 10:12:51 +00:00
} ] ,
[ "Cancel" , function ( ) { } ]
] ;
2014-01-31 20:22:25 +00:00
2014-02-08 20:19:19 +00:00
if ( photoIDs . length === 1 ) modal . show ( "Set Title" , "Enter a new title for this photo: <input class='text' type='text' maxlength='30' placeholder='Title' value='" + oldTitle + "'>" , buttons ) ;
else modal . show ( "Set Titles" , "Enter a title for all " + photoIDs . length + " selected photos: <input class='text' type='text' maxlength='30' placeholder='Title' value=''>" , buttons ) ;
2014-01-22 10:12:51 +00:00
} ,
2014-01-31 19:11:28 +00:00
setAlbum : function ( photoIDs , albumID ) {
2014-01-22 10:12:51 +00:00
2014-01-28 19:44:25 +00:00
var params ,
nextPhoto ,
previousPhoto ;
2014-01-31 20:22:25 +00:00
2014-01-31 19:11:28 +00:00
if ( ! photoIDs ) return false ;
2014-01-28 19:44:25 +00:00
if ( visible . photo ) lychee . goto ( album . getID ( ) ) ;
2014-01-31 19:11:28 +00:00
if ( photoIDs instanceof Array === false ) photoIDs = [ photoIDs ] ;
2014-01-31 20:22:25 +00:00
2014-01-31 19:11:28 +00:00
photoIDs . forEach ( function ( id , index , array ) {
2014-01-22 10:12:51 +00:00
2014-01-22 14:26:13 +00:00
// Change reference for the next and previous photo
2014-01-28 19:44:25 +00:00
if ( album . json . content [ id ] . nextPhoto !== "" || album . json . content [ id ] . previousPhoto !== "" ) {
2014-01-22 14:26:13 +00:00
2014-01-28 19:44:25 +00:00
nextPhoto = album . json . content [ id ] . nextPhoto ;
previousPhoto = album . json . content [ id ] . previousPhoto ;
2014-01-22 14:26:13 +00:00
album . json . content [ previousPhoto ] . nextPhoto = nextPhoto ;
album . json . content [ nextPhoto ] . previousPhoto = previousPhoto ;
}
2014-01-31 20:22:25 +00:00
2014-01-28 19:44:25 +00:00
album . json . content [ id ] = null ;
view . album . content . delete ( id ) ;
2014-01-31 20:22:25 +00:00
2014-01-28 19:44:25 +00:00
} ) ;
2014-01-22 14:26:13 +00:00
2014-02-09 18:21:55 +00:00
params = "setPhotoAlbum&photoIDs=" + photoIDs + "&albumID=" + albumID ;
2014-01-28 19:44:25 +00:00
lychee . api ( params , function ( data ) {
2014-01-22 10:12:51 +00:00
2014-01-28 19:44:25 +00:00
if ( data !== true ) lychee . error ( null , params , data ) ;
2014-01-22 10:12:51 +00:00
2014-01-28 19:44:25 +00:00
} ) ;
2014-01-22 10:12:51 +00:00
} ,
2014-01-31 19:11:28 +00:00
setStar : function ( photoIDs ) {
2014-01-22 10:12:51 +00:00
var params ;
2014-01-31 19:11:28 +00:00
if ( ! photoIDs ) return false ;
2014-01-22 10:12:51 +00:00
if ( visible . photo ( ) ) {
photo . json . star = ( photo . json . star == 0 ) ? 1 : 0 ;
view . photo . star ( ) ;
}
2014-01-31 19:11:28 +00:00
photoIDs . forEach ( function ( id , index , array ) {
2014-01-28 19:44:25 +00:00
album . json . content [ id ] . star = ( album . json . content [ id ] . star == 0 ) ? 1 : 0 ;
view . album . content . star ( id ) ;
} ) ;
2014-01-22 10:12:51 +00:00
2014-01-31 19:11:28 +00:00
params = "setPhotoStar&photoIDs=" + photoIDs ;
2014-01-22 10:12:51 +00:00
lychee . api ( params , function ( data ) {
if ( data !== true ) lychee . error ( null , params , data ) ;
} ) ;
} ,
setPublic : function ( photoID , e ) {
var params ;
if ( photo . json . public == 2 ) {
modal . show ( "Public Album" , "This photo is located in a public album. To make this photo private or public, edit the visibility of the associated album." , [ [ "Show Album" , function ( ) { lychee . goto ( photo . json . original _album ) } ] , [ "Close" , function ( ) { } ] ] ) ;
return false ;
}
if ( visible . photo ( ) ) {
photo . json . public = ( photo . json . public == 0 ) ? 1 : 0 ;
view . photo . public ( ) ;
if ( photo . json . public == 1 ) contextMenu . sharePhoto ( photoID , e ) ;
}
album . json . content [ photoID ] . public = ( album . json . content [ photoID ] . public == 0 ) ? 1 : 0 ;
view . album . content . public ( photoID ) ;
2014-04-05 14:03:14 +00:00
params = "setPhotoPublic&photoID=" + photoID ;
2014-01-22 10:12:51 +00:00
lychee . api ( params , function ( data ) {
if ( data !== true ) lychee . error ( null , params , data ) ;
} ) ;
} ,
setDescription : function ( photoID ) {
2014-02-28 14:08:05 +00:00
var oldDescription = photo . json . description . replace ( "'" , "'" ) ,
2014-01-22 10:12:51 +00:00
description ,
params ,
buttons ;
buttons = [
[ "Set Description" , function ( ) {
2014-06-14 19:38:37 +00:00
// Get input
2014-01-22 10:12:51 +00:00
description = $ ( ".message input.text" ) . val ( ) ;
2014-06-14 19:38:37 +00:00
// Remove html from input
description = lychee . removeHTML ( description ) ;
2014-02-08 20:19:19 +00:00
if ( visible . photo ( ) ) {
photo . json . description = description ;
view . photo . description ( ) ;
}
2014-01-22 10:12:51 +00:00
2014-06-15 17:11:54 +00:00
params = "setPhotoDescription&photoID=" + photoID + "&description=" + escape ( encodeURI ( description ) ) ;
2014-02-08 20:19:19 +00:00
lychee . api ( params , function ( data ) {
2014-01-22 10:12:51 +00:00
2014-02-08 20:19:19 +00:00
if ( data !== true ) lychee . error ( null , params , data ) ;
2014-01-22 10:12:51 +00:00
2014-02-08 20:19:19 +00:00
} ) ;
2014-01-22 10:12:51 +00:00
} ] ,
[ "Cancel" , function ( ) { } ]
] ;
2014-02-17 15:22:53 +00:00
2014-02-08 20:19:19 +00:00
modal . show ( "Set Description" , "Enter a description for this photo: <input class='text' type='text' maxlength='800' placeholder='Description' value='" + oldDescription + "'>" , buttons ) ;
2014-01-22 10:12:51 +00:00
} ,
2014-02-17 15:22:53 +00:00
2014-02-02 14:11:46 +00:00
editTags : function ( photoIDs ) {
2014-02-17 15:22:53 +00:00
2014-02-08 20:19:19 +00:00
var oldTags = "" ,
2014-04-15 12:17:32 +00:00
tags = "" ,
buttons ;
2014-02-17 15:22:53 +00:00
2014-02-02 14:11:46 +00:00
if ( ! photoIDs ) return false ;
if ( photoIDs instanceof Array === false ) photoIDs = [ photoIDs ] ;
2014-02-17 15:22:53 +00:00
2014-02-08 20:19:19 +00:00
// Get tags
if ( visible . photo ( ) ) oldTags = photo . json . tags ;
if ( visible . album ( ) && photoIDs . length === 1 ) oldTags = album . json . content [ photoIDs ] . tags ;
if ( visible . album ( ) && photoIDs . length > 1 ) {
var same = true ;
photoIDs . forEach ( function ( id , index , array ) {
if ( album . json . content [ id ] . tags === album . json . content [ photoIDs [ 0 ] ] . tags && same === true ) same = true ;
else same = false ;
} ) ;
if ( same ) oldTags = album . json . content [ photoIDs [ 0 ] ] . tags ;
}
2014-02-17 15:22:53 +00:00
2014-02-08 20:19:19 +00:00
// Improve tags
oldTags = oldTags . replace ( /,/g , ', ' ) ;
2014-02-17 15:22:53 +00:00
2014-02-02 14:11:46 +00:00
buttons = [
[ "Set Tags" , function ( ) {
tags = $ ( ".message input.text" ) . val ( ) ;
2014-01-22 10:12:51 +00:00
2014-02-08 20:19:19 +00:00
photo . setTags ( photoIDs , tags ) ;
2014-02-02 14:11:46 +00:00
} ] ,
[ "Cancel" , function ( ) { } ]
] ;
2014-02-17 15:22:53 +00:00
2014-02-08 20:19:19 +00:00
if ( photoIDs . length === 1 ) modal . show ( "Set Tags" , "Enter your tags for this photo. You can add multiple tags by separating them with a comma: <input class='text' type='text' maxlength='800' placeholder='Tags' value='" + oldTags + "'>" , buttons ) ;
else modal . show ( "Set Tags" , "Enter your tags for all " + photoIDs . length + " selected photos. Existing tags will be overwritten. You can add multiple tags by separating them with a comma: <input class='text' type='text' maxlength='800' placeholder='Tags' value='" + oldTags + "'>" , buttons ) ;
2014-02-17 15:22:53 +00:00
2014-02-02 14:11:46 +00:00
} ,
2014-02-17 15:22:53 +00:00
2014-02-02 14:11:46 +00:00
setTags : function ( photoIDs , tags ) {
2014-02-17 15:22:53 +00:00
2014-02-02 14:11:46 +00:00
var params ;
2014-02-17 15:22:53 +00:00
2014-02-02 14:11:46 +00:00
if ( ! photoIDs ) return false ;
if ( photoIDs instanceof Array === false ) photoIDs = [ photoIDs ] ;
2014-02-17 15:22:53 +00:00
2014-02-02 22:22:06 +00:00
// Parse tags
tags = tags . replace ( /(\ ,\ )|(\ ,)|(,\ )|(,{1,}\ {0,})|(,$|^,)/g , ',' ) ;
2014-04-18 19:27:52 +00:00
tags = tags . replace ( /,$|^,|(\ ){0,}$/g , '' ) ;
2014-02-17 15:22:53 +00:00
2014-06-14 19:38:37 +00:00
// Remove html from input
tags = lychee . removeHTML ( tags ) ;
2014-02-02 22:22:06 +00:00
if ( visible . photo ( ) ) {
photo . json . tags = tags ;
view . photo . tags ( ) ;
}
2014-02-17 15:22:53 +00:00
2014-02-08 20:19:19 +00:00
photoIDs . forEach ( function ( id , index , array ) {
album . json . content [ id ] . tags = tags ;
} ) ;
2014-02-17 15:22:53 +00:00
2014-02-09 18:21:55 +00:00
params = "setPhotoTags&photoIDs=" + photoIDs + "&tags=" + tags ;
2014-02-02 14:11:46 +00:00
lychee . api ( params , function ( data ) {
if ( data !== true ) lychee . error ( null , params , data ) ;
} ) ;
2014-02-17 15:22:53 +00:00
2014-02-02 14:11:46 +00:00
} ,
2014-02-17 15:22:53 +00:00
2014-02-02 14:11:46 +00:00
deleteTag : function ( photoID , index ) {
2014-02-17 15:22:53 +00:00
2014-02-02 14:11:46 +00:00
var tags ;
2014-02-17 15:22:53 +00:00
2014-02-02 14:11:46 +00:00
// Remove
tags = photo . json . tags . split ( ',' ) ;
tags . splice ( index , 1 ) ;
2014-02-17 15:22:53 +00:00
2014-02-02 14:11:46 +00:00
// Save
photo . json . tags = tags . toString ( ) ;
photo . setTags ( [ photoID ] , photo . json . tags ) ;
2014-02-17 15:22:53 +00:00
2014-02-02 14:11:46 +00:00
} ,
2014-02-17 15:22:53 +00:00
2014-01-22 10:12:51 +00:00
share : function ( photoID , service ) {
var link = "" ,
url = photo . getViewLink ( photoID ) ,
filename = "unknown" ;
switch ( service ) {
case 0 :
link = "https://twitter.com/share?url=" + encodeURI ( url ) ;
break ;
case 1 :
link = "http://www.facebook.com/sharer.php?u=" + encodeURI ( url ) + "&t=" + encodeURI ( photo . json . title ) ;
break ;
case 2 :
link = "mailto:?subject=" + encodeURI ( photo . json . title ) + "&body=" + encodeURI ( url ) ;
break ;
case 3 :
lychee . loadDropbox ( function ( ) {
filename = photo . json . title + "." + photo . getDirectLink ( ) . split ( '.' ) . pop ( ) ;
Dropbox . save ( photo . getDirectLink ( ) , filename ) ;
} ) ;
break ;
default :
link = "" ;
break ;
}
if ( link . length > 5 ) location . href = link ;
} ,
isSmall : function ( ) {
2014-02-25 22:37:05 +00:00
var size = {
width : false ,
height : false
} ;
2014-01-22 10:12:51 +00:00
2014-02-25 22:37:05 +00:00
if ( photo . json . width < $ ( window ) . width ( ) - 60 ) size . width = true ;
if ( photo . json . height < $ ( window ) . height ( ) - 100 ) size . height = true ;
2014-01-22 10:12:51 +00:00
2014-02-25 22:37:05 +00:00
if ( size . width && size . height ) return true ;
2014-01-22 10:12:51 +00:00
else return false ;
} ,
2014-01-24 12:49:01 +00:00
getArchive : function ( photoID ) {
var link ;
if ( location . href . indexOf ( "index.html" ) > 0 ) link = location . href . replace ( location . hash , "" ) . replace ( "index.html" , "php/api.php?function=getPhotoArchive&photoID=" + photoID ) ;
else link = location . href . replace ( location . hash , "" ) + "php/api.php?function=getPhotoArchive&photoID=" + photoID ;
if ( lychee . publicMode ) link += "&password=" + password . value ;
location . href = link ;
} ,
2014-01-22 10:12:51 +00:00
getDirectLink : function ( ) {
return $ ( "#imageview #image" ) . css ( "background-image" ) . replace ( /"/g , "" ) . replace ( /url\(|\)$/ig , "" ) ;
} ,
getViewLink : function ( photoID ) {
if ( location . href . indexOf ( "index.html" ) > 0 ) return location . href . replace ( "index.html" + location . hash , "view.php?p=" + photoID ) ;
else return location . href . replace ( location . hash , "view.php?p=" + photoID ) ;
}
2014-02-25 22:37:05 +00:00
} ;