123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625 |
- /**
- * @description Takes care of every action an album can handle and execute.
- * @copyright 2015 by Tobias Reich
- */
- album = {
- json: null
- }
- album.getID = function() {
- let id = null
- let isID = (id) => {
- if (id==='0' || id==='f' || id==='s' || id==='r') return true
- return $.isNumeric(id)
- }
- if (photo.json) id = photo.json.album
- else if (album.json) id = album.json.id
- // Search
- if (isID(id)===false) id = $('.album:hover, .album.active').attr('data-id')
- if (isID(id)===false) id = $('.photo:hover, .photo.active').attr('data-album-id')
- if (isID(id)===true) return id
- else return false
- }
- album.load = function(albumID, refresh = false) {
- password.get(albumID, function() {
- if (refresh===false) lychee.animate('.content', 'contentZoomOut')
- let startTime = new Date().getTime()
- let params = {
- albumID,
- password: password.value
- }
- api.post('Album::get', params, function(data) {
- let waitTime = 0
- if (data==='Warning: Album private!') {
- if (document.location.hash.replace('#', '').split('/')[1]!=undefined) {
- // Display photo only
- lychee.setMode('view')
- } else {
- // Album not public
- lychee.content.show()
- lychee.goto('')
- }
- return false
- }
- if (data==='Warning: Wrong password!') {
- album.load(albumID, refresh)
- return false
- }
- album.json = data
- // Calculate delay
- let durationTime = (new Date().getTime() - startTime)
- if (durationTime>300) waitTime = 0
- else waitTime = 300 - durationTime
- // Skip delay when refresh is true
- // Skip delay when opening a blank Lychee
- if (refresh===true) waitTime = 0
- if (!visible.albums() && !visible.photo() && !visible.album()) waitTime = 0
- setTimeout(() => {
- view.album.init()
- if (refresh===false) {
- lychee.animate(lychee.content, 'contentZoomIn')
- header.setMode('album')
- }
- }, waitTime)
- })
- })
- }
- album.parse = function() {
- if (!album.json.title) album.json.title = 'Untitled'
- }
- album.add = function() {
- const action = function(data) {
- let title = data.title
- const isNumber = (n) => (!isNaN(parseFloat(n)) && isFinite(n))
- basicModal.close()
- if (title.length===0) title = 'Untitled'
- let params = {
- title
- }
- api.post('Album::add', params, function(data) {
- // Avoid first album to be true
- if (data===true) data = 1
- if (data!==false && isNumber(data)) {
- albums.refresh()
- lychee.goto(data)
- } else {
- lychee.error(null, params, data)
- }
- })
- }
- basicModal.show({
- body: `<p>Enter a title for the new album: <input class='text' name='title' type='text' maxlength='50' placeholder='Title' value='Untitled'></p>`,
- buttons: {
- action: {
- title: 'Create Album',
- fn: action
- },
- cancel: {
- title: 'Cancel',
- fn: basicModal.close
- }
- }
- })
- }
- album.delete = function(albumIDs) {
- let action = {}
- let cancel = {}
- let msg = ''
- if (!albumIDs) return false
- if (albumIDs instanceof Array===false) albumIDs = [ albumIDs ]
- action.fn = function() {
- let params
- basicModal.close()
- params = {
- albumIDs: albumIDs.join()
- }
- api.post('Album::delete', params, function(data) {
- if (visible.albums()) {
- albumIDs.forEach(function(id) {
- albums.json.num--
- view.albums.content.delete(id)
- albums.deleteByID(id)
- })
- } else {
- albums.refresh()
- lychee.goto('')
- }
- if (data!==true) lychee.error(null, params, data)
- })
- }
- if (albumIDs.toString()==='0') {
- action.title = 'Clear Unsorted'
- cancel.title = 'Keep Unsorted'
- msg = `<p>Are you sure you want to delete all photos from 'Unsorted'?<br>This action can't be undone!</p>`
- } else if (albumIDs.length===1) {
- let albumTitle = ''
- action.title = 'Delete Album and Photos'
- cancel.title = 'Keep Album'
- // Get title
- if (album.json) albumTitle = album.json.title
- else if (albums.json) albumTitle = albums.getByID(albumIDs).title
- msg = lychee.html`<p>Are you sure you want to delete the album '$${ albumTitle }' and all of the photos it contains? This action can't be undone!</p>`
- } else {
- action.title = 'Delete Albums and Photos'
- cancel.title = 'Keep Albums'
- msg = lychee.html`<p>Are you sure you want to delete all $${ albumIDs.length } selected albums and all of the photos they contain? This action can't be undone!</p>`
- }
- basicModal.show({
- body: msg,
- buttons: {
- action: {
- title: action.title,
- fn: action.fn,
- class: 'red'
- },
- cancel: {
- title: cancel.title,
- fn: basicModal.close
- }
- }
- })
- }
- album.setTitle = function(albumIDs) {
- let oldTitle = ''
- let msg = ''
- if (!albumIDs) return false
- if (albumIDs instanceof Array===false) albumIDs = [ albumIDs ]
- if (albumIDs.length===1) {
- // Get old title if only one album is selected
- if (album.json) oldTitle = album.json.title
- else if (albums.json) oldTitle = albums.getByID(albumIDs).title
- if (!oldTitle) oldTitle = ''
- }
- const action = function(data) {
- let newTitle = data.title
- basicModal.close()
- // Set title to Untitled when empty
- newTitle = (newTitle==='') ? 'Untitled' : newTitle
- if (visible.album()) {
- // Rename only one album
- album.json.title = newTitle
- view.album.title()
- if (albums.json) albums.getByID(albumIDs[0]).title = newTitle
- } else if (visible.albums()) {
- // Rename all albums
- albumIDs.forEach(function(id) {
- albums.getByID(id).title = newTitle
- view.albums.content.title(id)
- })
- }
- let params = {
- albumIDs : albumIDs.join(),
- title : newTitle
- }
- api.post('Album::setTitle', params, function(data) {
- if (data!==true) lychee.error(null, params, data)
- })
- }
- let input = lychee.html`<input class='text' name='title' type='text' maxlength='50' placeholder='Title' value='$${ oldTitle }'>`
- if (albumIDs.length===1) msg = lychee.html`<p>Enter a new title for this album: ${ input }</p>`
- else msg = lychee.html`<p>Enter a title for all $${ albumIDs.length } selected albums: ${ input }</p>`
- basicModal.show({
- body: msg,
- buttons: {
- action: {
- title: 'Set Title',
- fn: action
- },
- cancel: {
- title: 'Cancel',
- fn: basicModal.close
- }
- }
- })
- }
- album.setDescription = function(albumID) {
- let oldDescription = album.json.description.replace(/'/g, ''')
- const action = function(data) {
- let description = data.description
- basicModal.close()
- if (visible.album()) {
- album.json.description = description
- view.album.description()
- }
- let params = {
- albumID,
- description
- }
- api.post('Album::setDescription', params, function(data) {
- if (data!==true) lychee.error(null, params, data)
- })
- }
- basicModal.show({
- body: lychee.html`<p>Please enter a description for this album: <input class='text' name='description' type='text' maxlength='800' placeholder='Description' value='$${ oldDescription }'></p>`,
- buttons: {
- action: {
- title: 'Set Description',
- fn: action
- },
- cancel: {
- title: 'Cancel',
- fn: basicModal.close
- }
- }
- })
- }
- album.setPublic = function(albumID, modal, e) {
- let password = ''
- albums.refresh()
- if (modal===true) {
- let text = ''
- let action = {}
- action.fn = () => {
- // Call setPublic function without showing the modal
- album.setPublic(album.getID(), false, e)
- }
- // Album public = Editing a shared album
- if (album.json.public==='1') {
- action.title = 'Edit Sharing'
- text = 'The sharing-properties of this album will be changed to the following:'
- } else {
- action.title = 'Share Album'
- text = 'This album will be shared with the following properties:'
- }
- let msg = `
- <p class='less'>${ text }</p>
- <form>
- <div class='choice'>
- <label>
- <input type='checkbox' name='visible'>
- <span class='checkbox'>${ build.iconic('check') }</span>
- <span class='label'>Visible</span>
- </label>
- <p>Listed to visitors of your Lychee.</p>
- </div>
- <div class='choice'>
- <label>
- <input type='checkbox' name='downloadable'>
- <span class='checkbox'>${ build.iconic('check') }</span>
- <span class='label'>Downloadable</span>
- </label>
- <p>Visitors of your Lychee can download this album.</p>
- </div>
- <div class='choice'>
- <label>
- <input type='checkbox' name='password'>
- <span class='checkbox'>${ build.iconic('check') }</span>
- <span class='label'>Password protected</span>
- </label>
- <p>Only accessible with a valid password.</p>
- <input class='text' name='passwordtext' type='password' placeholder='password' value=''>
- </div>
- </form>
- `
- basicModal.show({
- body: msg,
- buttons: {
- action: {
- title: action.title,
- fn: action.fn
- },
- cancel: {
- title: 'Cancel',
- fn: basicModal.close
- }
- }
- })
- // Active visible by default (public = 0)
- if ((album.json.public==='1' && album.json.visible==='1') || (album.json.public==='0')) $('.basicModal .choice input[name="visible"]').click()
- if (album.json.downloadable==='1') $('.basicModal .choice input[name="downloadable"]').click()
- $('.basicModal .choice input[name="password"]').on('change', function() {
- if ($(this).prop('checked')===true) $('.basicModal .choice input[name="passwordtext"]').show().focus()
- else $('.basicModal .choice input[name="passwordtext"]').hide()
- })
- return true
- }
- // Set data
- if (basicModal.visible()) {
- // Visible modal => Set album public
- album.json.public = '1'
- // Set visible
- if ($('.basicModal .choice input[name="visible"]:checked').length===1) album.json.visible = '1'
- else album.json.visible = '0'
- // Set downloadable
- if ($('.basicModal .choice input[name="downloadable"]:checked').length===1) album.json.downloadable = '1'
- else album.json.downloadable = '0'
- // Set password
- if ($('.basicModal .choice input[name="password"]:checked').length===1) {
- password = $('.basicModal .choice input[name="passwordtext"]').val()
- album.json.password = '1'
- } else {
- password = ''
- album.json.password = '0'
- }
- // Modal input has been processed, now it can be closed
- basicModal.close()
- } else {
- // Modal not visible => Set album private
- album.json.public = '0'
- }
- // Set data and refresh view
- if (visible.album()) {
- album.json.visible = (album.json.public==='0') ? '0' : album.json.visible
- album.json.downloadable = (album.json.public==='0') ? '0' : album.json.downloadable
- album.json.password = (album.json.public==='0') ? '0' : album.json.password
- view.album.public()
- view.album.visible()
- view.album.downloadable()
- view.album.password()
- if (album.json.public==='1') contextMenu.shareAlbum(albumID, e)
- }
- let params = {
- albumID,
- public : album.json.public,
- password : password,
- visible : album.json.visible,
- downloadable : album.json.downloadable
- }
- api.post('Album::setPublic', params, function(data) {
- if (data!==true) lychee.error(null, params, data)
- })
- }
- album.share = function(service) {
- let link = ''
- let url = location.href
- switch (service) {
- case 'twitter':
- link = `https://twitter.com/share?url=${ encodeURI(url) }`
- break
- case 'facebook':
- link = `http://www.facebook.com/sharer.php?u=${ encodeURI(url) }&t=${ encodeURI(album.json.title) }`
- break
- case 'mail':
- link = `mailto:?subject=${ encodeURI(album.json.title) }&body=${ encodeURI(url) }`
- break
- default:
- link = ''
- break
- }
- if (link!=='') location.href = link
- }
- album.getArchive = function(albumID) {
- let link = ''
- let url = `${ api.path }?function=Album::getArchive&albumID=${ albumID }`
- if (location.href.indexOf('index.html')>0) link = location.href.replace(location.hash, '').replace('index.html', url)
- else link = location.href.replace(location.hash, '') + url
- if (lychee.publicMode===true) link += `&password=${ encodeURIComponent(password.value) }`
- location.href = link
- }
- album.merge = function(albumIDs) {
- let title = ''
- let sTitle = ''
- let msg = ''
- if (!albumIDs) return false
- if (albumIDs instanceof Array===false) albumIDs = [ albumIDs ]
- // Get title of first album
- if (albums.json) title = albums.getByID(albumIDs[0]).title
- if (!title) title = ''
- title = title.replace(/'/g, ''')
- if (albumIDs.length===2) {
- // Get title of second album
- if (albums.json) sTitle = albums.getByID(albumIDs[1]).title
- if (!sTitle) sTitle = ''
- sTitle = sTitle.replace(/'/g, ''')
- msg = lychee.html`<p>Are you sure you want to merge the album '$${ sTitle }' into the album '$${ title }'?</p>`
- } else {
- msg = lychee.html`<p>Are you sure you want to merge all selected albums into the album '$${ title }'?</p>`
- }
- const action = function() {
- basicModal.close()
- let params = {
- albumIDs: albumIDs.join()
- }
- api.post('Album::merge', params, function(data) {
- if (data!==true) {
- lychee.error(null, params, data)
- } else {
- albums.refresh()
- albums.load()
- }
- })
- }
- basicModal.show({
- body: msg,
- buttons: {
- action: {
- title: 'Merge Albums',
- fn: action,
- class: 'red'
- },
- cancel: {
- title: "Don't Merge",
- fn: basicModal.close
- }
- }
- })
- }
|