album.js 9.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372
  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 = $(".album:hover, .album.active").attr("data-id");
  16. if (!id) id = $(".photo:hover, .photo.active").attr("data-album-id");
  17. if (id) return id;
  18. else return false;
  19. },
  20. load: function(albumID, refresh) {
  21. var startTime,
  22. params,
  23. durationTime,
  24. waitTime;
  25. password.get(albumID, function() {
  26. if (!refresh) {
  27. loadingBar.show();
  28. lychee.animate(".album, .photo", "contentZoomOut");
  29. lychee.animate(".divider", "fadeOut");
  30. }
  31. startTime = new Date().getTime();
  32. params = "getAlbum&albumID=" + albumID + "&password=" + password.value;
  33. lychee.api(params, function(data) {
  34. if (data==="Warning: Album private!") {
  35. if (document.location.hash.replace("#", "").split("/")[1]!=undefined) {
  36. // Display photo only
  37. lychee.setMode("view");
  38. } else {
  39. // Album not public
  40. lychee.content.show();
  41. lychee.goto("");
  42. }
  43. return false;
  44. }
  45. if (data==="Warning: Wrong password!") {
  46. album.load(albumID, refresh);
  47. return false;
  48. }
  49. album.json = data;
  50. durationTime = (new Date().getTime() - startTime);
  51. if (durationTime>300) waitTime = 0; else if (refresh) waitTime = 0; else waitTime = 300 - durationTime;
  52. if (!visible.albums()&&!visible.photo()&&!visible.album()) waitTime = 0;
  53. setTimeout(function() {
  54. view.album.init();
  55. if (!refresh) {
  56. lychee.animate(".album, .photo", "contentZoomIn");
  57. view.header.mode("album");
  58. }
  59. }, waitTime);
  60. });
  61. });
  62. },
  63. parse: function(photo) {
  64. if (photo&&photo.thumbUrl) photo.thumbUrl = lychee.upload_path_thumb + photo.thumbUrl;
  65. else if (!album.json.title) album.json.title = "Untitled";
  66. },
  67. add: function() {
  68. var title,
  69. params,
  70. buttons,
  71. isNumber = function(n) { return !isNaN(parseFloat(n)) && isFinite(n) };
  72. buttons = [
  73. ["Create Album", function() {
  74. title = $(".message input.text").val();
  75. if (title.length===0) title = "Untitled";
  76. modal.close();
  77. params = "addAlbum&title=" + escape(encodeURI(title));
  78. lychee.api(params, function(data) {
  79. if (data===true) data = 1; // Avoid first album to be true
  80. if (data!==false&&isNumber(data)) lychee.goto(data);
  81. else lychee.error(null, params, data);
  82. });
  83. }],
  84. ["Cancel", function() {}]
  85. ];
  86. modal.show("New Album", "Enter a title for this album: <input class='text' type='text' maxlength='30' placeholder='Title' value='Untitled'>", buttons);
  87. },
  88. delete: function(albumIDs) {
  89. var params,
  90. buttons,
  91. albumTitle;
  92. if (!albumIDs) return false;
  93. if (albumIDs instanceof Array===false) albumIDs = [albumIDs];
  94. buttons = [
  95. ["", function() {
  96. params = "deleteAlbum&albumIDs=" + albumIDs;
  97. lychee.api(params, function(data) {
  98. if (visible.albums()) {
  99. albumIDs.forEach(function(id, index, array) {
  100. albums.json.num--;
  101. view.albums.content.delete(id);
  102. });
  103. } else lychee.goto("");
  104. if (data!==true) lychee.error(null, params, data);
  105. });
  106. }],
  107. ["", function() {}]
  108. ];
  109. if (albumIDs.toString()==="0") {
  110. buttons[0][0] = "Clear Unsorted";
  111. buttons[1][0] = "Keep Unsorted";
  112. modal.show("Clear Unsorted", "Are you sure you want to delete all photos from 'Unsorted'?<br>This action can't be undone!", buttons);
  113. } else if (albumIDs.length===1) {
  114. buttons[0][0] = "Delete Album and Photos";
  115. buttons[1][0] = "Keep Album";
  116. // Get title
  117. if (album.json) albumTitle = album.json.title;
  118. else if (albums.json) albumTitle = albums.json.content[albumIDs].title;
  119. 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);
  120. } else {
  121. buttons[0][0] = "Delete Albums and Photos";
  122. buttons[1][0] = "Keep Albums";
  123. 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);
  124. }
  125. },
  126. setTitle: function(albumIDs) {
  127. var oldTitle = "",
  128. newTitle,
  129. params,
  130. buttons;
  131. if (!albumIDs) return false;
  132. if (albumIDs instanceof Array===false) albumIDs = [albumIDs];
  133. if (albumIDs.length===1) {
  134. // Get old title if only one album is selected
  135. if (album.json) oldTitle = album.json.title;
  136. else if (albums.json) oldTitle = albums.json.content[albumIDs].title;
  137. if (!oldTitle) oldTitle = "";
  138. oldTitle = oldTitle.replace("'", "&apos;");
  139. }
  140. buttons = [
  141. ["Set Title", function() {
  142. // Get input
  143. newTitle = $(".message input.text").val();
  144. // Remove html from input
  145. newTitle = lychee.removeHTML(newTitle);
  146. // Set to Untitled when empty
  147. newTitle = (newTitle==="") ? "Untitled" : newTitle;
  148. if (visible.album()) {
  149. album.json.title = newTitle;
  150. view.album.title();
  151. } else if (visible.albums()) {
  152. albumIDs.forEach(function(id, index, array) {
  153. albums.json.content[id].title = newTitle;
  154. view.albums.content.title(id);
  155. });
  156. }
  157. params = "setAlbumTitle&albumIDs=" + albumIDs + "&title=" + escape(encodeURI(newTitle));
  158. lychee.api(params, function(data) {
  159. if (data!==true) lychee.error(null, params, data);
  160. });
  161. }],
  162. ["Cancel", function() {}]
  163. ];
  164. 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);
  165. 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);
  166. },
  167. setDescription: function(photoID) {
  168. var oldDescription = album.json.description.replace("'", "&apos;"),
  169. description,
  170. params,
  171. buttons;
  172. buttons = [
  173. ["Set Description", function() {
  174. // Get input
  175. description = $(".message input.text").val();
  176. // Remove html from input
  177. description = lychee.removeHTML(description);
  178. if (visible.album()) {
  179. album.json.description = description;
  180. view.album.description();
  181. }
  182. params = "setAlbumDescription&albumID=" + photoID + "&description=" + escape(encodeURI(description));
  183. lychee.api(params, function(data) {
  184. if (data!==true) lychee.error(null, params, data);
  185. });
  186. }],
  187. ["Cancel", function() {}]
  188. ];
  189. modal.show("Set Description", "Please enter a description for this album: <input class='text' type='text' maxlength='800' placeholder='Description' value='" + oldDescription + "'>", buttons);
  190. },
  191. setPublic: function(albumID, e) {
  192. var params;
  193. if (!visible.message()&&album.json.public==0) {
  194. modal.show("Share Album", "This album will be shared with one of the following properties:</p><form><div class='choice'><input type='radio' value='public' name='choice' checked><h2>Public</h2><p>Visible and accessible for everyone.</p></div><div class='choice'><input type='radio' value='password' name='choice'><h2>Password protected</h2><p>Not visible to visitors and only accessible with a valid password.<input class='text' type='password' placeholder='password' value='' style='display: none;'></p></div></form><p style='display: none;'>", [["Share Album", function() { album.setPublic(album.getID(), e) }], ["Cancel", function() {}]], -160);
  195. $(".message .choice input:radio").on("change", function() {
  196. if ($(this).val()==="password") $(".message .choice input.text").show();
  197. else $(".message .choice input.text").hide();
  198. });
  199. return true;
  200. }
  201. if (visible.message()&&$(".message .choice input:checked").val()==="password") {
  202. params = "setAlbumPublic&albumID=" + albumID + "&password=" + md5($(".message input.text").val());
  203. album.json.password = true;
  204. } else {
  205. params = "setAlbumPublic&albumID=" + albumID + "&password=";
  206. album.json.password = false;
  207. }
  208. if (visible.album()) {
  209. album.json.public = (album.json.public==0) ? 1 : 0;
  210. view.album.public();
  211. view.album.password();
  212. if (album.json.public==1) contextMenu.shareAlbum(albumID, e);
  213. }
  214. lychee.api(params, function(data) {
  215. if (data!==true) lychee.error(null, params, data);
  216. });
  217. },
  218. share: function(service) {
  219. var link = "",
  220. url = location.href;
  221. switch (service) {
  222. case 0:
  223. link = "https://twitter.com/share?url=" + encodeURI(url);
  224. break;
  225. case 1:
  226. link = "http://www.facebook.com/sharer.php?u=" + encodeURI(url) + "&t=" + encodeURI(album.json.title);
  227. break;
  228. case 2:
  229. link = "mailto:?subject=" + encodeURI(album.json.title) + "&body=" + encodeURI(url);
  230. break;
  231. default:
  232. link = "";
  233. break;
  234. }
  235. if (link.length>5) location.href = link;
  236. },
  237. getArchive: function(albumID) {
  238. var link;
  239. if (location.href.indexOf("index.html")>0) link = location.href.replace(location.hash, "").replace("index.html", "php/api.php?function=getAlbumArchive&albumID=" + albumID);
  240. else link = location.href.replace(location.hash, "") + "php/api.php?function=getAlbumArchive&albumID=" + albumID;
  241. if (lychee.publicMode) link += "&password=" + password.value;
  242. location.href = link;
  243. }
  244. };