album.js 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625
  1. /**
  2. * @description Takes care of every action an album can handle and execute.
  3. * @copyright 2015 by Tobias Reich
  4. */
  5. album = {
  6. json: null
  7. }
  8. album.getID = function() {
  9. let id = null
  10. let isID = (id) => {
  11. if (id==='0' || id==='f' || id==='s' || id==='r') return true
  12. return $.isNumeric(id)
  13. }
  14. if (photo.json) id = photo.json.album
  15. else if (album.json) id = album.json.id
  16. // Search
  17. if (isID(id)===false) id = $('.album:hover, .album.active').attr('data-id')
  18. if (isID(id)===false) id = $('.photo:hover, .photo.active').attr('data-album-id')
  19. if (isID(id)===true) return id
  20. else return false
  21. }
  22. album.load = function(albumID, refresh = false) {
  23. password.get(albumID, function() {
  24. if (refresh===false) lychee.animate('.content', 'contentZoomOut')
  25. let startTime = new Date().getTime()
  26. let params = {
  27. albumID,
  28. password: password.value
  29. }
  30. api.post('Album::get', params, function(data) {
  31. let waitTime = 0
  32. if (data==='Warning: Album private!') {
  33. if (document.location.hash.replace('#', '').split('/')[1]!=undefined) {
  34. // Display photo only
  35. lychee.setMode('view')
  36. } else {
  37. // Album not public
  38. lychee.content.show()
  39. lychee.goto('')
  40. }
  41. return false
  42. }
  43. if (data==='Warning: Wrong password!') {
  44. album.load(albumID, refresh)
  45. return false
  46. }
  47. album.json = data
  48. // Calculate delay
  49. let durationTime = (new Date().getTime() - startTime)
  50. if (durationTime>300) waitTime = 0
  51. else waitTime = 300 - durationTime
  52. // Skip delay when refresh is true
  53. // Skip delay when opening a blank Lychee
  54. if (refresh===true) waitTime = 0
  55. if (!visible.albums() && !visible.photo() && !visible.album()) waitTime = 0
  56. setTimeout(() => {
  57. view.album.init()
  58. if (refresh===false) {
  59. lychee.animate(lychee.content, 'contentZoomIn')
  60. header.setMode('album')
  61. }
  62. }, waitTime)
  63. })
  64. })
  65. }
  66. album.parse = function() {
  67. if (!album.json.title) album.json.title = 'Untitled'
  68. }
  69. album.add = function() {
  70. const action = function(data) {
  71. let title = data.title
  72. const isNumber = (n) => (!isNaN(parseFloat(n)) && isFinite(n))
  73. basicModal.close()
  74. if (title.length===0) title = 'Untitled'
  75. let params = {
  76. title
  77. }
  78. api.post('Album::add', params, function(data) {
  79. // Avoid first album to be true
  80. if (data===true) data = 1
  81. if (data!==false && isNumber(data)) {
  82. albums.refresh()
  83. lychee.goto(data)
  84. } else {
  85. lychee.error(null, params, data)
  86. }
  87. })
  88. }
  89. basicModal.show({
  90. body: `<p>Enter a title for the new album: <input class='text' name='title' type='text' maxlength='50' placeholder='Title' value='Untitled'></p>`,
  91. buttons: {
  92. action: {
  93. title: 'Create Album',
  94. fn: action
  95. },
  96. cancel: {
  97. title: 'Cancel',
  98. fn: basicModal.close
  99. }
  100. }
  101. })
  102. }
  103. album.delete = function(albumIDs) {
  104. let action = {}
  105. let cancel = {}
  106. let msg = ''
  107. if (!albumIDs) return false
  108. if (albumIDs instanceof Array===false) albumIDs = [ albumIDs ]
  109. action.fn = function() {
  110. let params
  111. basicModal.close()
  112. params = {
  113. albumIDs: albumIDs.join()
  114. }
  115. api.post('Album::delete', params, function(data) {
  116. if (visible.albums()) {
  117. albumIDs.forEach(function(id) {
  118. albums.json.num--
  119. view.albums.content.delete(id)
  120. albums.deleteByID(id)
  121. })
  122. } else {
  123. albums.refresh()
  124. lychee.goto('')
  125. }
  126. if (data!==true) lychee.error(null, params, data)
  127. })
  128. }
  129. if (albumIDs.toString()==='0') {
  130. action.title = 'Clear Unsorted'
  131. cancel.title = 'Keep Unsorted'
  132. msg = `<p>Are you sure you want to delete all photos from 'Unsorted'?<br>This action can't be undone!</p>`
  133. } else if (albumIDs.length===1) {
  134. let albumTitle = ''
  135. action.title = 'Delete Album and Photos'
  136. cancel.title = 'Keep Album'
  137. // Get title
  138. if (album.json) albumTitle = album.json.title
  139. else if (albums.json) albumTitle = albums.getByID(albumIDs).title
  140. 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>`
  141. } else {
  142. action.title = 'Delete Albums and Photos'
  143. cancel.title = 'Keep Albums'
  144. 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>`
  145. }
  146. basicModal.show({
  147. body: msg,
  148. buttons: {
  149. action: {
  150. title: action.title,
  151. fn: action.fn,
  152. class: 'red'
  153. },
  154. cancel: {
  155. title: cancel.title,
  156. fn: basicModal.close
  157. }
  158. }
  159. })
  160. }
  161. album.setTitle = function(albumIDs) {
  162. let oldTitle = ''
  163. let msg = ''
  164. if (!albumIDs) return false
  165. if (albumIDs instanceof Array===false) albumIDs = [ albumIDs ]
  166. if (albumIDs.length===1) {
  167. // Get old title if only one album is selected
  168. if (album.json) oldTitle = album.json.title
  169. else if (albums.json) oldTitle = albums.getByID(albumIDs).title
  170. if (!oldTitle) oldTitle = ''
  171. }
  172. const action = function(data) {
  173. let newTitle = data.title
  174. basicModal.close()
  175. // Set title to Untitled when empty
  176. newTitle = (newTitle==='') ? 'Untitled' : newTitle
  177. if (visible.album()) {
  178. // Rename only one album
  179. album.json.title = newTitle
  180. view.album.title()
  181. if (albums.json) albums.getByID(albumIDs[0]).title = newTitle
  182. } else if (visible.albums()) {
  183. // Rename all albums
  184. albumIDs.forEach(function(id) {
  185. albums.getByID(id).title = newTitle
  186. view.albums.content.title(id)
  187. })
  188. }
  189. let params = {
  190. albumIDs : albumIDs.join(),
  191. title : newTitle
  192. }
  193. api.post('Album::setTitle', params, function(data) {
  194. if (data!==true) lychee.error(null, params, data)
  195. })
  196. }
  197. let input = lychee.html`<input class='text' name='title' type='text' maxlength='50' placeholder='Title' value='$${ oldTitle }'>`
  198. if (albumIDs.length===1) msg = lychee.html`<p>Enter a new title for this album: ${ input }</p>`
  199. else msg = lychee.html`<p>Enter a title for all $${ albumIDs.length } selected albums: ${ input }</p>`
  200. basicModal.show({
  201. body: msg,
  202. buttons: {
  203. action: {
  204. title: 'Set Title',
  205. fn: action
  206. },
  207. cancel: {
  208. title: 'Cancel',
  209. fn: basicModal.close
  210. }
  211. }
  212. })
  213. }
  214. album.setDescription = function(albumID) {
  215. let oldDescription = album.json.description.replace(/'/g, '&apos;')
  216. const action = function(data) {
  217. let description = data.description
  218. basicModal.close()
  219. if (visible.album()) {
  220. album.json.description = description
  221. view.album.description()
  222. }
  223. let params = {
  224. albumID,
  225. description
  226. }
  227. api.post('Album::setDescription', params, function(data) {
  228. if (data!==true) lychee.error(null, params, data)
  229. })
  230. }
  231. basicModal.show({
  232. 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>`,
  233. buttons: {
  234. action: {
  235. title: 'Set Description',
  236. fn: action
  237. },
  238. cancel: {
  239. title: 'Cancel',
  240. fn: basicModal.close
  241. }
  242. }
  243. })
  244. }
  245. album.setPublic = function(albumID, modal, e) {
  246. let password = ''
  247. albums.refresh()
  248. if (modal===true) {
  249. let text = ''
  250. let action = {}
  251. action.fn = () => {
  252. // Call setPublic function without showing the modal
  253. album.setPublic(album.getID(), false, e)
  254. }
  255. // Album public = Editing a shared album
  256. if (album.json.public==='1') {
  257. action.title = 'Edit Sharing'
  258. text = 'The sharing-properties of this album will be changed to the following:'
  259. } else {
  260. action.title = 'Share Album'
  261. text = 'This album will be shared with the following properties:'
  262. }
  263. let msg = `
  264. <p class='less'>${ text }</p>
  265. <form>
  266. <div class='choice'>
  267. <label>
  268. <input type='checkbox' name='visible'>
  269. <span class='checkbox'>${ build.iconic('check') }</span>
  270. <span class='label'>Visible</span>
  271. </label>
  272. <p>Listed to visitors of your Lychee.</p>
  273. </div>
  274. <div class='choice'>
  275. <label>
  276. <input type='checkbox' name='downloadable'>
  277. <span class='checkbox'>${ build.iconic('check') }</span>
  278. <span class='label'>Downloadable</span>
  279. </label>
  280. <p>Visitors of your Lychee can download this album.</p>
  281. </div>
  282. <div class='choice'>
  283. <label>
  284. <input type='checkbox' name='password'>
  285. <span class='checkbox'>${ build.iconic('check') }</span>
  286. <span class='label'>Password protected</span>
  287. </label>
  288. <p>Only accessible with a valid password.</p>
  289. <input class='text' name='passwordtext' type='password' placeholder='password' value=''>
  290. </div>
  291. </form>
  292. `
  293. basicModal.show({
  294. body: msg,
  295. buttons: {
  296. action: {
  297. title: action.title,
  298. fn: action.fn
  299. },
  300. cancel: {
  301. title: 'Cancel',
  302. fn: basicModal.close
  303. }
  304. }
  305. })
  306. // Active visible by default (public = 0)
  307. if ((album.json.public==='1' && album.json.visible==='1') || (album.json.public==='0')) $('.basicModal .choice input[name="visible"]').click()
  308. if (album.json.downloadable==='1') $('.basicModal .choice input[name="downloadable"]').click()
  309. $('.basicModal .choice input[name="password"]').on('change', function() {
  310. if ($(this).prop('checked')===true) $('.basicModal .choice input[name="passwordtext"]').show().focus()
  311. else $('.basicModal .choice input[name="passwordtext"]').hide()
  312. })
  313. return true
  314. }
  315. // Set data
  316. if (basicModal.visible()) {
  317. // Visible modal => Set album public
  318. album.json.public = '1'
  319. // Set visible
  320. if ($('.basicModal .choice input[name="visible"]:checked').length===1) album.json.visible = '1'
  321. else album.json.visible = '0'
  322. // Set downloadable
  323. if ($('.basicModal .choice input[name="downloadable"]:checked').length===1) album.json.downloadable = '1'
  324. else album.json.downloadable = '0'
  325. // Set password
  326. if ($('.basicModal .choice input[name="password"]:checked').length===1) {
  327. password = $('.basicModal .choice input[name="passwordtext"]').val()
  328. album.json.password = '1'
  329. } else {
  330. password = ''
  331. album.json.password = '0'
  332. }
  333. // Modal input has been processed, now it can be closed
  334. basicModal.close()
  335. } else {
  336. // Modal not visible => Set album private
  337. album.json.public = '0'
  338. }
  339. // Set data and refresh view
  340. if (visible.album()) {
  341. album.json.visible = (album.json.public==='0') ? '0' : album.json.visible
  342. album.json.downloadable = (album.json.public==='0') ? '0' : album.json.downloadable
  343. album.json.password = (album.json.public==='0') ? '0' : album.json.password
  344. view.album.public()
  345. view.album.visible()
  346. view.album.downloadable()
  347. view.album.password()
  348. if (album.json.public==='1') contextMenu.shareAlbum(albumID, e)
  349. }
  350. let params = {
  351. albumID,
  352. public : album.json.public,
  353. password : password,
  354. visible : album.json.visible,
  355. downloadable : album.json.downloadable
  356. }
  357. api.post('Album::setPublic', params, function(data) {
  358. if (data!==true) lychee.error(null, params, data)
  359. })
  360. }
  361. album.share = function(service) {
  362. let link = ''
  363. let url = location.href
  364. switch (service) {
  365. case 'twitter':
  366. link = `https://twitter.com/share?url=${ encodeURI(url) }`
  367. break
  368. case 'facebook':
  369. link = `http://www.facebook.com/sharer.php?u=${ encodeURI(url) }&t=${ encodeURI(album.json.title) }`
  370. break
  371. case 'mail':
  372. link = `mailto:?subject=${ encodeURI(album.json.title) }&body=${ encodeURI(url) }`
  373. break
  374. default:
  375. link = ''
  376. break
  377. }
  378. if (link!=='') location.href = link
  379. }
  380. album.getArchive = function(albumID) {
  381. let link = ''
  382. let url = `${ api.path }?function=Album::getArchive&albumID=${ albumID }`
  383. if (location.href.indexOf('index.html')>0) link = location.href.replace(location.hash, '').replace('index.html', url)
  384. else link = location.href.replace(location.hash, '') + url
  385. if (lychee.publicMode===true) link += `&password=${ encodeURIComponent(password.value) }`
  386. location.href = link
  387. }
  388. album.merge = function(albumIDs) {
  389. let title = ''
  390. let sTitle = ''
  391. let msg = ''
  392. if (!albumIDs) return false
  393. if (albumIDs instanceof Array===false) albumIDs = [ albumIDs ]
  394. // Get title of first album
  395. if (albums.json) title = albums.getByID(albumIDs[0]).title
  396. if (!title) title = ''
  397. title = title.replace(/'/g, '&apos;')
  398. if (albumIDs.length===2) {
  399. // Get title of second album
  400. if (albums.json) sTitle = albums.getByID(albumIDs[1]).title
  401. if (!sTitle) sTitle = ''
  402. sTitle = sTitle.replace(/'/g, '&apos;')
  403. msg = lychee.html`<p>Are you sure you want to merge the album '$${ sTitle }' into the album '$${ title }'?</p>`
  404. } else {
  405. msg = lychee.html`<p>Are you sure you want to merge all selected albums into the album '$${ title }'?</p>`
  406. }
  407. const action = function() {
  408. basicModal.close()
  409. let params = {
  410. albumIDs: albumIDs.join()
  411. }
  412. api.post('Album::merge', params, function(data) {
  413. if (data!==true) {
  414. lychee.error(null, params, data)
  415. } else {
  416. albums.refresh()
  417. albums.load()
  418. }
  419. })
  420. }
  421. basicModal.show({
  422. body: msg,
  423. buttons: {
  424. action: {
  425. title: 'Merge Albums',
  426. fn: action,
  427. class: 'red'
  428. },
  429. cancel: {
  430. title: "Don't Merge",
  431. fn: basicModal.close
  432. }
  433. }
  434. })
  435. }