photos.js 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431
  1. /**
  2. * @name photos.js
  3. * @author Philipp Maurer
  4. * @author Tobias Reich
  5. * @copyright 2013 by Philipp Maurer, Tobias Reich
  6. *
  7. * Photos Module
  8. * Takes care of every action photos can handle and execute.
  9. */
  10. photos = {
  11. load: function(albumID, refresh) {
  12. // If refresh is true the function will only refresh the content and not change the toolbar buttons either the title
  13. /*password = localStorage.getItem("album" + albumID);
  14. if (password==null) {
  15. if (lychee.publicMode) password = prompt("Please enter a password for this album:", ""); else password = "";
  16. if (password!="") password = hex_md5(password);
  17. localStorage.setItem("album" + albumID, password);
  18. }*/
  19. password = "";
  20. if (!refresh) {
  21. loadingBar.show();
  22. if (visible.imageview()) photos.hideView();
  23. lychee.animate(".album, .photo", "contentZoomOut");
  24. lychee.animate(".divider", "fadeOut");
  25. }
  26. startTime = new Date().getTime();
  27. params = "getPhotos&albumID=" + albumID + "&password=" + password;
  28. lychee.api(params, "json", function(data) {
  29. if (data=="HTTP/1.1 403 Wrong password!") {
  30. localStorage.removeItem("album" + albumID);
  31. photos.load(albumID, refresh);
  32. return false;
  33. }
  34. durationTime = (new Date().getTime() - startTime);
  35. if (durationTime>300) waitTime = 0; else if (refresh) waitTime = 0; else waitTime = 300 - durationTime;
  36. $.timer(waitTime,function(){
  37. photosData = "";
  38. $.each(data, function() { photosData += build.photo(this); });
  39. lychee.content.html(photosData);
  40. if (!refresh) {
  41. lychee.animate(".album, .photo", "contentZoomIn");
  42. $("#tools_albums, #tools_photo").hide();
  43. $("#tools_album").show();
  44. $("img").retina();
  45. albums.loadInfo(albumID, password);
  46. }
  47. }, false);
  48. });
  49. },
  50. loadInfo: function(photoID, albumID) {
  51. /*password = localStorage.getItem("album" + albumID);
  52. if (password==null) {
  53. if (lychee.publicMode) password = prompt("Please enter a password for this album:", ""); else password = "";
  54. if (password!="") password = hex_md5(password);
  55. localStorage.setItem("album" + albumID, password);
  56. }*/
  57. password = "";
  58. photos.showView();
  59. params = "getPhotoInfo&photoID=" + photoID + "&password=" + password;
  60. lychee.api(params, "json", function(data) {
  61. if (data=="HTTP/1.1 403 Wrong password!") {
  62. localStorage.removeItem("album" + albumID);
  63. photos.loadInfo(photoID, albumID);
  64. return false;
  65. }
  66. if (!data.title) data.title = "Untitled";
  67. document.title = "Lychee - " + data.title;
  68. lychee.headerTitle.html(data.title).addClass("editable");
  69. $("#button_star a").removeClass("icon-star-empty icon-star");
  70. if (data.star=="1") {
  71. $("#button_star a").addClass("icon-star");
  72. $("#button_star").attr("title", "Unstar Photo");
  73. } else {
  74. $("#button_star a").addClass("icon-star-empty");
  75. $("#button_star").attr("title", "Star Photo");
  76. }
  77. if (data.public=="1") {
  78. $("#button_share a").addClass("active");
  79. $("#button_share").attr("title", "Share Photo");
  80. } else {
  81. $("#button_share a").removeClass("active");
  82. $("#button_share").attr("title", "Make Public");
  83. }
  84. data.url = lychee.upload_path + data.url;
  85. if (visible.controls()&&photos.isSmall(data)) lychee.image_view.html("<a id='previous' class='icon-caret-left'></a><a id='next' class='icon-caret-right'></a><div id='image' class='small' style='background-image: url(" + data.url + "); width: " + data.width + "px; height: " + data.height + "px; margin-top: -" + parseInt(data.height/2-20) + "px; margin-left: -" + data.width/2 + "px;'></div>");
  86. else if (visible.controls()) lychee.image_view.html("<a id='previous' class='icon-caret-left'></a><a id='next' class='icon-caret-right'></a><div id='image' style='background-image: url(" + data.url + ")'></div>");
  87. else if (photos.isSmall(data)) lychee.image_view.html("<a id='previous' style='left: -50px' class='icon-caret-left'></a><a id='next' style='right: -50px' class='icon-caret-right'></a><div id='image' class='small' style='background-image: url(" + data.url + "); width: " + data.width + "px; height: " + data.height + "px; margin-top: -" + parseInt(data.height/2) + "px; margin-left: -" + data.width/2 + "px;'></div>");
  88. else lychee.image_view.html("<a id='previous' style='left: -50px' class='icon-caret-left'></a><a id='next' style='right: -50px' class='icon-caret-right'></a><div id='image' style='background-image: url(" + data.url + "); top: 0px; right: 0px; bottom: 0px; left: 0px;'></div>");
  89. lychee.animate(image_view, "fadeIn");
  90. lychee.image_view.show();
  91. if (!visible.controls()) lychee.hideControls();
  92. lychee.infobox.html(build.infobox(data)).show();
  93. $.timer(300,function(){ lychee.content.show(); });
  94. });
  95. },
  96. isSmall: function(photo) {
  97. size = [
  98. ["width", false],
  99. ["height", false]
  100. ];
  101. if (photo.width<$(window).width()-60) size["width"] = true;
  102. if (photo.height<$(window).height()-100) size["height"] = true;
  103. if (size["width"]&&size["height"]) return true;
  104. else return false;
  105. },
  106. showView: function() {
  107. // Change toolbar-buttons
  108. $("#tools_albums, #tools_album").hide();
  109. $("#tools_photo").show();
  110. // Make body not scrollable
  111. $("body").css("overflow", "hidden");
  112. },
  113. hideView: function() {
  114. // Change toolbar-buttons
  115. $("#tools_photo, #tools_albums").hide();
  116. $("#tools_album").show();
  117. // Make body scrollable
  118. $("body").css("overflow", "scroll");
  119. // Change website title and url by using albums.loadInfo
  120. albums.loadInfo(lychee.content.attr("data-id"));
  121. // Hide ImageViewer
  122. lychee.animate(image_view, "fadeOut");
  123. $.timer(300,function(){ lychee.image_view.hide() });
  124. },
  125. showInfobox: function() {
  126. if (!visible.infobox()) $("body").append("<div id='infobox_overlay'></div>");
  127. lychee.infobox.css("right", "0px");
  128. },
  129. hideInfobox: function() {
  130. $("#infobox_overlay").remove();
  131. lychee.infobox.css("right", "-320px");
  132. },
  133. hide: function(photoID) {
  134. $(".photo[data-id='" + photoID + "']").css("opacity", 0).animate({
  135. width: 0,
  136. marginLeft: 0
  137. }, 300, function() {
  138. $(this).remove();
  139. if (!visible.imageview()) {
  140. imgNum = parseInt($("#title span").html().replace("- ", "").replace(" photos", ""))-1;
  141. $("#title span").html(" - " + imgNum + " photos");
  142. }
  143. });
  144. },
  145. delete: function(photoID) {
  146. params = "deletePhoto&photoID=" + photoID;
  147. lychee.api(params, "text", function(data) {
  148. if (data) {
  149. photos.hide(photoID);
  150. lychee.goto("a" + lychee.content.attr("data-id"));
  151. } else loadingBar.show("error");
  152. });
  153. },
  154. deleteDialog: function(photoID) {
  155. if (!photoID) photoID = lychee.image_view.attr("data-id");
  156. if (visible.imageview()) photoTitle = lychee.title();
  157. else photoTitle = $(".photo[data-id='" + photoID + "'] .overlay h1").html();
  158. if (photoTitle=="") photoTitle = "Untitled";
  159. f1 = "photos.delete(" + photoID + ");";
  160. f2 = "";
  161. modal = build.modal("Delete Photo", "Are you sure you want to delete the photo '" + photoTitle + "'?<br>This action can't be undone!", ["Delete Photo", "Keep Photo"], [f1, f2]);
  162. $("body").append(modal);
  163. },
  164. setTitle: function(photoID) {
  165. if (!photoID) oldTitle = lychee.title(); else oldTitle = "";
  166. if (!photoID) photoID = lychee.image_view.attr("data-id");
  167. newTitle = prompt("Please enter a new title for this photo:", oldTitle);
  168. if (photoID!=null&&photoID&&newTitle.length<31) {
  169. if (newTitle=="") newTitle = "Untitled";
  170. params = "setPhotoTitle&photoID=" + photoID + "&title=" + encodeURI(newTitle);
  171. lychee.api(params, "text", function(data) {
  172. if (data) {
  173. if (visible.imageview()) {
  174. $("#infobox .attr_name").html($("#infobox .attr_name").html().replace(lychee.title(), newTitle));
  175. lychee.headerTitle.html(newTitle);
  176. document.title = "Lychee - " + newTitle;
  177. }
  178. $(".photo[data-id='" + photoID + "'] .overlay h1").html(newTitle);
  179. } else loadingBar.show("error");
  180. });
  181. } else if (newTitle.length>0) loadingBar.show("error", "Error", "New title to short or too long. Please try another one!");
  182. },
  183. setAlbum: function(photoID, albumID) {
  184. if (albumID>=0) {
  185. params = "setAlbum&photoID=" + photoID + "&albumID=" + albumID;
  186. lychee.api(params, "text", function(data) {
  187. if (data) {
  188. photos.hide(photoID);
  189. lychee.goto("a" + lychee.content.attr("data-id"));
  190. } else loadingBar.show("error");
  191. });
  192. }
  193. },
  194. setStar: function() {
  195. photoID = lychee.image_view.attr("data-id");
  196. params = "setPhotoStar&photoID=" + photoID;
  197. lychee.api(params, "text", function(data) {
  198. if (data) {
  199. if ($("#button_star a.icon-star-empty").length) {
  200. $("#button_star a").removeClass("icon-star-empty icon-star").addClass("icon-star");
  201. $("#button_star").attr("title", "Unstar Photo");
  202. } else {
  203. $("#button_star a").removeClass("icon-star-empty icon-star").addClass("icon-star-empty");
  204. $("#button_star").attr("title", "Star Photo");
  205. }
  206. photos.load(lychee.content.attr("data-id"), true);
  207. } else loadingBar.show("error");
  208. });
  209. },
  210. setPublic: function(e) {
  211. photoID = lychee.image_view.attr("data-id");
  212. params = "setPhotoPublic&photoID=" + photoID + "&url=" + photos.getViewLink(photoID);
  213. lychee.api(params, "text", function(data) {
  214. if (data) {
  215. if ($("#button_share a.active").length) {
  216. $("#button_share a").removeClass("active");
  217. $("#button_share").attr("title", "Make Public");
  218. $("#infobox .attr_visibility").html("Private");
  219. } else {
  220. $("#button_share a").addClass("active");
  221. $("#button_share").attr("title", "Share Photo");
  222. $("#infobox .attr_visibility").html("Public");
  223. contextMenu.share(photoID, e.pageX, e.pageY);
  224. }
  225. photos.load(lychee.content.attr("data-id"), true);
  226. } else loadingBar.show("error");
  227. });
  228. },
  229. setDescription: function() {
  230. description = prompt("Please enter a description for this photo:", "");
  231. photoID = lychee.image_view.attr("data-id");
  232. if (description.length>0&&description.length<160) {
  233. params = "setPhotoDescription&photoID=" + photoID + "&description=" + escape(description);
  234. lychee.api(params, "text", function(data) {
  235. if (data) {
  236. $("#infobox .attr_description").html(description + " <div id='edit_description'><a class='icon-pencil'></a></div>");
  237. } else loadingBar.show("error");
  238. });
  239. } else if (description.length>0) loadingBar.show("error", "Error", "Description to short or too long. Please try another one!");
  240. },
  241. share: function(service, photoID) {
  242. link = "";
  243. url = photos.getViewLink(photoID);
  244. switch (service) {
  245. case 0:
  246. link = "https://twitter.com/share?url=" + encodeURI(url);
  247. break;
  248. case 1:
  249. link = "http://www.facebook.com/sharer.php?u=" + encodeURI(url) + "&t=" + encodeURI(lychee.title());
  250. break;
  251. case 2:
  252. link = "mailto:?subject=" + encodeURI(lychee.title()) + "&body=" + encodeURI("Hi! Check this out: " + url);
  253. break;
  254. case 3:
  255. modal = build.modal("Copy Link", "Everyone can view your public photos, but only you can edit them. Use this link to share your photo with others: <input class='copylink' value='" + url + "'>", ["Close"], [""]);
  256. $("body").append(modal);
  257. $(".copylink").focus();
  258. break;
  259. case 4:
  260. params = "getShortlink&photoID=" + photoID;
  261. lychee.api(params, "text", function(data) {
  262. if (data=="") data = "Something went wrong!";
  263. modal = build.modal("Copy Shortlink", "Everyone can view your public photos, but only you can edit them. Use this link to share your photo with others: <input class='copylink' value='" + data + "'>", ["Close"], [""]);
  264. $("body").append(modal);
  265. $(".copylink").focus();
  266. });
  267. break;
  268. default:
  269. link = "";
  270. break;
  271. }
  272. if (link.length>5) location.href = link;
  273. },
  274. getViewLink: function(photoID) {
  275. if (location.href.indexOf("index.html")>0) return location.href.replace("index.html" + location.hash, "view.php?p=" + photoID);
  276. else return location.href.replace(location.hash, "view.php?p=" + photoID);
  277. },
  278. previous: function() {
  279. albumID = lychee.content.attr("data-id");
  280. photoID = lychee.image_view.attr("data-id");
  281. params = "previousPhoto&photoID=" + photoID + "&albumID=" + albumID;
  282. lychee.api(params, "json", function(data) {
  283. if (data!=false) lychee.goto("a" + albumID + "p" + data.id);
  284. });
  285. },
  286. next: function() {
  287. albumID = lychee.content.attr("data-id");
  288. photoID = lychee.image_view.attr("data-id");
  289. params = "nextPhoto&photoID=" + photoID + "&albumID=" + albumID;
  290. lychee.api(params, "json", function(data) {
  291. if (data) lychee.goto("a" + albumID + "p" + data.id);
  292. });
  293. }
  294. }