album.js 7.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335
  1. /**
  2. * @name Album Module
  3. * @description Takes care of every action an album can handle and execute.
  4. * @author Tobias Reich
  5. * @copyright 2014 by Tobias Reich
  6. */
  7. album = {
  8. json: null,
  9. getID: function() {
  10. var id;
  11. if (photo.json) id = photo.json.album;
  12. else if (album.json) id = album.json.id;
  13. else id = $(".album:hover, .album.active").attr("data-id");
  14. // Search
  15. if (!id) id = $(".photo:hover, .photo.active").attr("data-album-id");
  16. if (id) return id;
  17. else return false;
  18. },
  19. load: function(albumID, refresh) {
  20. var startTime,
  21. params,
  22. durationTime,
  23. waitTime;
  24. password.get(albumID, function() {
  25. if (!refresh) {
  26. loadingBar.show();
  27. lychee.animate(".album, .photo", "contentZoomOut");
  28. lychee.animate(".divider", "fadeOut");
  29. }
  30. startTime = new Date().getTime();
  31. params = "getAlbum&albumID=" + albumID + "&password=" + password.value;
  32. lychee.api(params, function(data) {
  33. if (data==="Warning: Album private!") {
  34. lychee.setMode("view");
  35. return false;
  36. }
  37. if (data==="Warning: Wrong password!") {
  38. album.load(albumID, refresh);
  39. return false;
  40. }
  41. album.json = data;
  42. durationTime = (new Date().getTime() - startTime);
  43. if (durationTime>300) waitTime = 0; else if (refresh) waitTime = 0; else waitTime = 300 - durationTime;
  44. if (!visible.albums()&&!visible.photo()&&!visible.album()) waitTime = 0;
  45. setTimeout(function() {
  46. view.album.init();
  47. if (!refresh) {
  48. lychee.animate(".album, .photo", "contentZoomIn");
  49. view.header.mode("album");
  50. }
  51. }, waitTime);
  52. });
  53. });
  54. },
  55. parse: function(photo) {
  56. if (photo&&photo.thumbUrl) photo.thumbUrl = lychee.upload_path_thumb + photo.thumbUrl;
  57. else if (!album.json.title) album.json.title = "Untitled";
  58. },
  59. add: function() {
  60. var title,
  61. params,
  62. buttons;
  63. buttons = [
  64. ["Create Album", function() {
  65. title = $(".message input.text").val();
  66. if (title.length===0) title = "Untitled";
  67. modal.close();
  68. params = "addAlbum&title=" + escape(encodeURI(title));
  69. lychee.api(params, function(data) {
  70. if (data!==false) {
  71. if (data===true) data = 1; // Avoid first album to be true
  72. lychee.goto(data);
  73. } else lychee.error(null, params, data);
  74. });
  75. }],
  76. ["Cancel", function() {}]
  77. ];
  78. modal.show("New Album", "Enter a title for this album: <input class='text' type='text' maxlength='30' placeholder='Title' value='Untitled'>", buttons);
  79. },
  80. delete: function(albumIDs) {
  81. var params,
  82. buttons,
  83. albumTitle;
  84. if (!albumIDs) return false;
  85. if (albumIDs instanceof Array===false) albumIDs = [albumIDs];
  86. buttons = [
  87. ["", function() {
  88. params = "deleteAlbum&albumIDs=" + albumIDs;
  89. lychee.api(params, function(data) {
  90. if (visible.albums()) {
  91. albumIDs.forEach(function(id, index, array) {
  92. albums.json.num--;
  93. view.albums.content.delete(id);
  94. });
  95. } else lychee.goto("");
  96. if (data!==true) lychee.error(null, params, data);
  97. });
  98. }],
  99. ["", function() {}]
  100. ];
  101. if (albumIDs==="0") {
  102. buttons[0][0] = "Clear Unsorted";
  103. buttons[1][0] = "Keep Unsorted";
  104. modal.show("Clear Unsorted", "Are you sure you want to delete all photos from 'Unsorted'?<br>This action can't be undone!", buttons)
  105. } else if (albumIDs.length===1) {
  106. buttons[0][0] = "Delete Album and Photos";
  107. buttons[1][0] = "Keep Album";
  108. // Get title
  109. if (album.json) albumTitle = album.json.title;
  110. else if (albums.json) albumTitle = albums.json.content[albumIDs].title;
  111. modal.show("Delete Album", "Are you sure you want to delete the album '" + albumTitle + "' and all of the photos it contains? This action can't be undone!", buttons);
  112. } else {
  113. buttons[0][0] = "Delete Albums and Photos";
  114. buttons[1][0] = "Keep Albums";
  115. modal.show("Delete Albums", "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!", buttons);
  116. }
  117. },
  118. setTitle: function(albumIDs) {
  119. var oldTitle = "",
  120. newTitle,
  121. params,
  122. buttons;
  123. if (!albumIDs) return false;
  124. if (albumIDs instanceof Array===false) albumIDs = [albumIDs];
  125. if (albumIDs.length===1) {
  126. // Get old title if only one album is selected
  127. if (album.json) oldTitle = album.json.title;
  128. else if (albums.json) oldTitle = albums.json.content[albumIDs].title;
  129. }
  130. buttons = [
  131. ["Set Title", function() {
  132. newTitle = ($(".message input.text").val()==="") ? "Untitled" : $(".message input.text").val();
  133. if (visible.album()) {
  134. album.json.title = newTitle;
  135. view.album.title();
  136. } else if (visible.albums()) {
  137. albumIDs.forEach(function(id, index, array) {
  138. albums.json.content[id].title = newTitle;
  139. view.albums.content.title(id);
  140. });
  141. }
  142. params = "setAlbumTitle&albumIDs=" + albumIDs + "&title=" + escape(encodeURI(newTitle));
  143. lychee.api(params, function(data) {
  144. if (data!==true) lychee.error(null, params, data);
  145. });
  146. }],
  147. ["Cancel", function() {}]
  148. ];
  149. if (albumIDs.length===1) modal.show("Set Title", "Enter a new title for this album: <input class='text' type='text' maxlength='30' placeholder='Title' value='" + oldTitle + "'>", buttons);
  150. else modal.show("Set Titles", "Enter a title for all " + albumIDs.length + " selected album: <input class='text' type='text' maxlength='30' placeholder='Title' value='" + oldTitle + "'>", buttons);
  151. },
  152. setDescription: function(photoID) {
  153. var oldDescription = album.json.description,
  154. description,
  155. params,
  156. buttons;
  157. buttons = [
  158. ["Set Description", function() {
  159. description = $(".message input.text").val();
  160. if (visible.album()) {
  161. album.json.description = description;
  162. view.album.description();
  163. }
  164. params = "setAlbumDescription&albumID=" + photoID + "&description=" + escape(description);
  165. lychee.api(params, function(data) {
  166. if (data!==true) lychee.error(null, params, data);
  167. });
  168. }],
  169. ["Cancel", function() {}]
  170. ];
  171. modal.show("Set Description", "Please enter a description for this album: <input class='text' type='text' maxlength='800' placeholder='Description' value='" + oldDescription + "'>", buttons);
  172. },
  173. setPublic: function(albumID, e) {
  174. var params;
  175. if ($(".message input.text").length>0&&$(".message input.text").val().length>0) {
  176. params = "setAlbumPublic&albumID=" + albumID + "&password=" + hex_md5($(".message input.text").val());
  177. album.json.password = true;
  178. } else {
  179. params = "setAlbumPublic&albumID=" + albumID;
  180. album.json.password = false;
  181. }
  182. if (visible.album()) {
  183. album.json.public = (album.json.public==0) ? 1 : 0;
  184. view.album.public();
  185. view.album.password();
  186. if (album.json.public==1) contextMenu.shareAlbum(albumID, e);
  187. }
  188. lychee.api(params, function(data) {
  189. if (data!==true) lychee.error(null, params, data);
  190. });
  191. },
  192. share: function(service) {
  193. var link = "",
  194. url = location.href;
  195. switch (service) {
  196. case 0:
  197. link = "https://twitter.com/share?url=" + encodeURI(url);
  198. break;
  199. case 1:
  200. link = "http://www.facebook.com/sharer.php?u=" + encodeURI(url) + "&t=" + encodeURI(album.json.title);
  201. break;
  202. case 2:
  203. link = "mailto:?subject=" + encodeURI(album.json.title) + "&body=" + encodeURI("Hi! Check this out: " + url);
  204. break;
  205. default:
  206. link = "";
  207. break;
  208. }
  209. if (link.length>5) location.href = link;
  210. },
  211. getArchive: function(albumID) {
  212. var link;
  213. if (location.href.indexOf("index.html")>0) link = location.href.replace(location.hash, "").replace("index.html", "php/api.php?function=getAlbumArchive&albumID=" + albumID);
  214. else link = location.href.replace(location.hash, "") + "php/api.php?function=getAlbumArchive&albumID=" + albumID;
  215. if (lychee.publicMode) link += "&password=" + password.value;
  216. location.href = link;
  217. }
  218. }