album.js 10.0 KB

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