album.js 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400
  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:nth-child(-n+50), .photo:nth-child(-n+50)", "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:nth-child(-n+50), .photo:nth-child(-n+50)", "contentZoomIn");
  57. view.header.mode("album");
  58. }
  59. }, waitTime);
  60. });
  61. });
  62. },
  63. parse: function() {
  64. if (!album.json.title) album.json.title = "Untitled";
  65. },
  66. add: function() {
  67. var title,
  68. params,
  69. buttons,
  70. isNumber = function(n) { return !isNaN(parseFloat(n)) && isFinite(n) };
  71. buttons = [
  72. ["Create Album", function() {
  73. title = $(".message input.text").val();
  74. if (title.length===0) title = "Untitled";
  75. modal.close();
  76. params = "addAlbum&title=" + escape(encodeURI(title));
  77. lychee.api(params, function(data) {
  78. if (data===true) data = 1; // Avoid first album to be true
  79. if (data!==false&&isNumber(data)) {
  80. albums.refresh();
  81. lychee.goto(data);
  82. } else {
  83. lychee.error(null, params, data);
  84. }
  85. });
  86. }],
  87. ["Cancel", function() {}]
  88. ];
  89. modal.show("New Album", "Enter a title for this album: <input class='text' type='text' maxlength='30' placeholder='Title' value='Untitled'>", buttons);
  90. },
  91. delete: function(albumIDs) {
  92. var params,
  93. buttons,
  94. albumTitle;
  95. if (!albumIDs) return false;
  96. if (albumIDs instanceof Array===false) albumIDs = [albumIDs];
  97. buttons = [
  98. ["", function() {
  99. params = "deleteAlbum&albumIDs=" + albumIDs;
  100. lychee.api(params, function(data) {
  101. if (visible.albums()) {
  102. albumIDs.forEach(function(id) {
  103. albums.json.num--;
  104. view.albums.content.delete(id);
  105. delete albums.json.content[id];
  106. });
  107. } else {
  108. albums.refresh();
  109. lychee.goto("");
  110. }
  111. if (data!==true) lychee.error(null, params, data);
  112. });
  113. }],
  114. ["", function() {}]
  115. ];
  116. if (albumIDs.toString()==="0") {
  117. buttons[0][0] = "Clear Unsorted";
  118. buttons[1][0] = "Keep Unsorted";
  119. modal.show("Clear Unsorted", "Are you sure you want to delete all photos from 'Unsorted'?<br>This action can't be undone!", buttons);
  120. } else if (albumIDs.length===1) {
  121. buttons[0][0] = "Delete Album and Photos";
  122. buttons[1][0] = "Keep Album";
  123. // Get title
  124. if (album.json) albumTitle = album.json.title;
  125. else if (albums.json) albumTitle = albums.json.content[albumIDs].title;
  126. 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);
  127. } else {
  128. buttons[0][0] = "Delete Albums and Photos";
  129. buttons[1][0] = "Keep Albums";
  130. 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);
  131. }
  132. },
  133. setTitle: function(albumIDs) {
  134. var oldTitle = "",
  135. newTitle,
  136. params,
  137. buttons;
  138. if (!albumIDs) return false;
  139. if (albumIDs instanceof Array===false) albumIDs = [albumIDs];
  140. if (albumIDs.length===1) {
  141. // Get old title if only one album is selected
  142. if (album.json) oldTitle = album.json.title;
  143. else if (albums.json) oldTitle = albums.json.content[albumIDs].title;
  144. if (!oldTitle) oldTitle = "";
  145. oldTitle = oldTitle.replace("'", "&apos;");
  146. }
  147. buttons = [
  148. ["Set Title", function() {
  149. // Get input
  150. newTitle = $(".message input.text").val();
  151. // Remove html from input
  152. newTitle = lychee.removeHTML(newTitle);
  153. // Set to Untitled when empty
  154. newTitle = (newTitle==="") ? "Untitled" : newTitle;
  155. if (visible.album()) {
  156. album.json.title = newTitle;
  157. view.album.title();
  158. if (albums.json) {
  159. var id = albumIDs[0];
  160. albums.json.content[id].title = newTitle;
  161. }
  162. } else if (visible.albums()) {
  163. albumIDs.forEach(function(id) {
  164. albums.json.content[id].title = newTitle;
  165. view.albums.content.title(id);
  166. });
  167. }
  168. params = "setAlbumTitle&albumIDs=" + albumIDs + "&title=" + escape(encodeURI(newTitle));
  169. lychee.api(params, function(data) {
  170. if (data!==true) lychee.error(null, params, data);
  171. });
  172. }],
  173. ["Cancel", function() {}]
  174. ];
  175. 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);
  176. 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);
  177. },
  178. setDescription: function(photoID) {
  179. var oldDescription = album.json.description.replace("'", "&apos;"),
  180. description,
  181. params,
  182. buttons;
  183. buttons = [
  184. ["Set Description", function() {
  185. // Get input
  186. description = $(".message input.text").val();
  187. // Remove html from input
  188. description = lychee.removeHTML(description);
  189. if (visible.album()) {
  190. album.json.description = description;
  191. view.album.description();
  192. }
  193. params = "setAlbumDescription&albumID=" + photoID + "&description=" + escape(encodeURI(description));
  194. lychee.api(params, function(data) {
  195. if (data!==true) lychee.error(null, params, data);
  196. });
  197. }],
  198. ["Cancel", function() {}]
  199. ];
  200. modal.show("Set Description", "Please enter a description for this album: <input class='text' type='text' maxlength='800' placeholder='Description' value='" + oldDescription + "'>", buttons);
  201. },
  202. setPublic: function(albumID, e) {
  203. var params,
  204. password = "",
  205. listed = false,
  206. downloadable = false;
  207. albums.refresh();
  208. if (!visible.message()&&album.json.public==0) {
  209. modal.show("Share Album", "This album will be shared with the following properties:</p><form><div class='choice'><input type='checkbox' name='listed' value='listed' checked><h2>Visible</h2><p>Listed to visitors of your Lychee.</p></div><div class='choice'><input type='checkbox' name='downloadable' value='downloadable'><h2>Downloadable</h2><p>Visitors of your Lychee can download this album.</p></div><div class='choice'><input type='checkbox' name='password' value='password'><h2>Password protected</h2><p>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() {}]], -170);
  210. $(".message .choice input[name='password']").on("change", function() {
  211. if ($(this).prop('checked')===true) $(".message .choice input.text").show();
  212. else $(".message .choice input.text").hide();
  213. });
  214. return true;
  215. }
  216. if (visible.message()) {
  217. if ($(".message .choice input[name='password']:checked").val()==="password") {
  218. password = md5($(".message input.text").val());
  219. album.json.password = 1;
  220. } else {
  221. password = "";
  222. album.json.password = 0;
  223. }
  224. if ($(".message .choice input[name='listed']:checked").val()==="listed") listed = true;
  225. if ($(".message .choice input[name='downloadable']:checked").val()==="downloadable") downloadable = true;
  226. }
  227. params = "setAlbumPublic&albumID=" + albumID + "&password=" + password + "&visible=" + listed + "&downloadable=" + downloadable;
  228. if (visible.album()) {
  229. album.json.public = (album.json.public==0) ? 1 : 0;
  230. album.json.password = (album.json.public==0) ? 0 : album.json.password;
  231. view.album.public();
  232. view.album.password();
  233. if (album.json.public==1) contextMenu.shareAlbum(albumID, e);
  234. }
  235. lychee.api(params, function(data) {
  236. if (data!==true) lychee.error(null, params, data);
  237. });
  238. },
  239. share: function(service) {
  240. var link = "",
  241. url = location.href;
  242. switch (service) {
  243. case 0:
  244. link = "https://twitter.com/share?url=" + encodeURI(url);
  245. break;
  246. case 1:
  247. link = "http://www.facebook.com/sharer.php?u=" + encodeURI(url) + "&t=" + encodeURI(album.json.title);
  248. break;
  249. case 2:
  250. link = "mailto:?subject=" + encodeURI(album.json.title) + "&body=" + encodeURI(url);
  251. break;
  252. default:
  253. link = "";
  254. break;
  255. }
  256. if (link.length>5) location.href = link;
  257. },
  258. getArchive: function(albumID) {
  259. var link,
  260. url = "php/api.php?function=getAlbumArchive&albumID=" + albumID;
  261. if (location.href.indexOf("index.html")>0) link = location.href.replace(location.hash, "").replace("index.html", url);
  262. else link = location.href.replace(location.hash, "") + url;
  263. if (lychee.publicMode) link += "&password=" + password.value;
  264. location.href = link;
  265. }
  266. };