album.js 7.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317
  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==="") title = "Untitled";
  67. if (title.length>0&&title.length<31) {
  68. modal.close();
  69. params = "addAlbum&title=" + escape(encodeURI(title));
  70. lychee.api(params, function(data) {
  71. if (data!==false) {
  72. if (data===true) data = 1; // Avoid first album to be true
  73. lychee.goto(data);
  74. } else lychee.error(null, params, data);
  75. });
  76. } else loadingBar.show("error", "Title too short or too long. Please try again!");
  77. }],
  78. ["Cancel", function() {}]
  79. ];
  80. modal.show("New Album", "Please enter a title for this album: <input class='text' type='text' placeholder='Title' value='Untitled'>", buttons);
  81. },
  82. delete: function(albumID) {
  83. var params,
  84. buttons,
  85. albumTitle;
  86. buttons = [
  87. ["Delete Album and Photos", function() {
  88. params = "deleteAlbum&albumID=" + albumID;
  89. lychee.api(params, function(data) {
  90. if (visible.albums()) {
  91. albums.json.num--;
  92. view.albums.content.delete(albumID);
  93. } else lychee.goto("");
  94. if (data!==true) lychee.error(null, params, data);
  95. });
  96. }],
  97. ["Keep Album", function() {}]
  98. ];
  99. if (albumID==="0") {
  100. buttons[0][0] = "Clear Unsorted";
  101. modal.show("Clear Unsorted", "Are you sure you want to delete all photos from 'Unsorted'?<br>This action can't be undone!", buttons)
  102. } else {
  103. if (album.json) albumTitle = album.json.title;
  104. else if (albums.json) albumTitle = albums.json.content[albumID].title;
  105. 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);
  106. }
  107. },
  108. setTitle: function(albumID) {
  109. var oldTitle = "",
  110. newTitle,
  111. params,
  112. buttons;
  113. if (!albumID) return false;
  114. if (album.json) oldTitle = album.json.title;
  115. else if (albums.json) oldTitle = albums.json.content[albumID].title;
  116. buttons = [
  117. ["Set Title", function() {
  118. newTitle = $(".message input.text").val();
  119. if (newTitle==="") newTitle = "Untitled";
  120. if (albumID!==""&&albumID!=null&&albumID&&newTitle.length<31) {
  121. if (visible.album()) {
  122. album.json.title = newTitle;
  123. view.album.title(oldTitle);
  124. } else if (visible.albums()) {
  125. albums.json.content[albumID].title = newTitle;
  126. view.albums.content.title(albumID);
  127. }
  128. params = "setAlbumTitle&albumID=" + albumID + "&title=" + escape(encodeURI(newTitle));
  129. lychee.api(params, function(data) {
  130. if (data!==true) lychee.error(null, params, data);
  131. });
  132. } else if (newTitle.length>0) loadingBar.show("error", "New title too short or too long. Please try again!");
  133. }],
  134. ["Cancel", function() {}]
  135. ];
  136. modal.show("Set Title", "Please enter a new title for this album: <input class='text' type='text' placeholder='Title' value='" + oldTitle + "'>", buttons);
  137. },
  138. setDescription: function(photoID) {
  139. var oldDescription = album.json.description,
  140. description,
  141. params,
  142. buttons;
  143. buttons = [
  144. ["Set Description", function() {
  145. description = $(".message input.text").val();
  146. if (description.length<800) {
  147. if (visible.album()) {
  148. album.json.description = description;
  149. view.album.description();
  150. }
  151. params = "setAlbumDescription&albumID=" + photoID + "&description=" + escape(description);
  152. lychee.api(params, function(data) {
  153. if (data!==true) lychee.error(null, params, data);
  154. });
  155. } else loadingBar.show("error", "Description too long. Please try again!");
  156. }],
  157. ["Cancel", function() {}]
  158. ];
  159. modal.show("Set Description", "Please enter a description for this album: <input class='text' type='text' placeholder='Description' value='" + oldDescription + "'>", buttons);
  160. },
  161. setPublic: function(albumID, e) {
  162. var params;
  163. if ($(".message input.text").length>0&&$(".message input.text").val().length>0) {
  164. params = "setAlbumPublic&albumID=" + albumID + "&password=" + hex_md5($(".message input.text").val());
  165. album.json.password = true;
  166. } else {
  167. params = "setAlbumPublic&albumID=" + albumID;
  168. album.json.password = false;
  169. }
  170. if (visible.album()) {
  171. album.json.public = (album.json.public==0) ? 1 : 0;
  172. view.album.public();
  173. view.album.password();
  174. if (album.json.public==1) contextMenu.shareAlbum(albumID, e);
  175. }
  176. lychee.api(params, function(data) {
  177. if (data!==true) lychee.error(null, params, data);
  178. });
  179. },
  180. share: function(service) {
  181. var link = "",
  182. url = location.href;
  183. switch (service) {
  184. case 0:
  185. link = "https://twitter.com/share?url=" + encodeURI(url);
  186. break;
  187. case 1:
  188. link = "http://www.facebook.com/sharer.php?u=" + encodeURI(url) + "&t=" + encodeURI(album.json.title);
  189. break;
  190. case 2:
  191. link = "mailto:?subject=" + encodeURI(album.json.title) + "&body=" + encodeURI("Hi! Check this out: " + url);
  192. break;
  193. default:
  194. link = "";
  195. break;
  196. }
  197. if (link.length>5) location.href = link;
  198. },
  199. getArchive: function(albumID) {
  200. var link;
  201. if (location.href.indexOf("index.html")>0) link = location.href.replace(location.hash, "").replace("index.html", "php/api.php?function=getAlbumArchive&albumID=" + albumID);
  202. else link = location.href.replace(location.hash, "") + "php/api.php?function=getAlbumArchive&albumID=" + albumID;
  203. if (lychee.publicMode) link += "&password=" + password.value;
  204. location.href = link;
  205. }
  206. }