functions.js 29 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038
  1. /**
  2. * @name functions.js
  3. * @author Philipp Maurer
  4. * @author Tobias Reich
  5. * @copyright 2012 by Philipp Maurer, Tobias Reich
  6. */
  7. /*
  8. Init Function
  9. This function is called when the site is loaded.
  10. */
  11. function init() {
  12. $("#tools_albums").show();
  13. if (!mobileBrowser()) $(".tools").tipsy({gravity: 'n'});
  14. params = "function=loggedIn";
  15. $.ajax({type: "POST", url: api_path, data: params, success: function(data) {
  16. if (data!=1) {
  17. $("body").append(buildSignInModal());
  18. $("#username").focus();
  19. } else if (data) {
  20. if (headerTitle.html().length<1&&BrowserDetect.browser=="Firefox") getURL();
  21. }
  22. }});
  23. }
  24. /*
  25. Session Function
  26. This functions are called when the user tries to login or logout.
  27. */
  28. function login() {
  29. user = $("input#username").val();
  30. password = $("input#password").val();
  31. params = "function=login&user=" + user + "&password=" + password;
  32. $.ajax({type: "POST", url: api_path, data: params, success: function(data) {
  33. if (data==1) {
  34. getURL();
  35. closeModal();
  36. } else {
  37. $("#password").val("").addClass("error");
  38. $(".message .button.active").removeClass("pressed");
  39. }
  40. }});
  41. }
  42. function logout() {
  43. params = "function=logout";
  44. $.ajax({type: "POST", url: api_path, data: params, success: function(data) {
  45. window.location.reload();
  46. }});
  47. }
  48. /*
  49. URL Function
  50. This functions are used to get and set the URL.
  51. */
  52. function setURL(website_url) {
  53. document.location.hash = website_url;
  54. }
  55. function getURL() {
  56. closeContextMenu();
  57. hash = document.location.hash.replace("#", "");
  58. albumID = "";
  59. photoID = "";
  60. if (hash.indexOf("a")!=-1) albumID = hash.split("p")[0].replace("a", "");
  61. if (hash.indexOf("p")!=-1) photoID = hash.split("p")[1];
  62. if (hash=="upload") {
  63. loadAlbums();
  64. $("body").append(buildAddModal);
  65. } else if (albumID&&photoID) {
  66. if (content.html()=="") {
  67. content.hide();
  68. loadPhotos(albumID, true);
  69. }
  70. showImageview(photoID);
  71. } else if (albumID) {
  72. if (!visibleControls()) showControls();
  73. if (visibleImageview()) hideImageview();
  74. else loadPhotos(albumID, false);
  75. } else {
  76. loadAlbums();
  77. }
  78. }
  79. /*
  80. Button Functions
  81. This functions are called from Buttons.
  82. */
  83. function deleteAlbum() {
  84. albumTitle = headerTitle.html().replace($("#title span").html(), "").replace("<span></span>", "");
  85. f1 = "loadDeleteAlbum(" + content.attr("data-id") + ", true);";
  86. f2 = "loadDeleteAlbum(" + content.attr("data-id") + ", false);";
  87. modal = buildModal("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!", ["Delete Album and Photos", "Keep Photos"], [f1, f2]);
  88. $("body").append(modal);
  89. }
  90. function deleteUnsorted() {
  91. albumTitle = headerTitle.html().replace($("#title span").html(), "").replace("<span></span>", "");
  92. f1 = "loadDeleteAlbum(" + content.attr("data-id") + ", true);";
  93. f2 = "";
  94. modal = buildModal("Clear Unsorted", "Are you sure you want to delete all photos from 'Unsorted'?<br>This action can't be undone!", ["Clear Unsorted", "Keep Photos"], [f1, f2]);
  95. $("body").append(modal);
  96. }
  97. function deletePhoto(photoID) {
  98. if (photoID==undefined) photoTitle = " '" + headerTitle.html() + "'"; else photoTitle = "";
  99. if (photoID==undefined) photoID = image_view.attr("data-id");
  100. f1 = "loadDeletePhoto(" + photoID + ");";
  101. f2 = "";
  102. modal = buildModal("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]);
  103. $("body").append(modal);
  104. }
  105. function closeModal() {
  106. $(".message_overlay").removeClass("fadeIn").css("opacity", 0);
  107. $.timer(300,function(){ $(".message_overlay").remove() });
  108. }
  109. /*
  110. Show/Hide Functions
  111. This functions are used to show/hide content.
  112. */
  113. function loadingFadeIn(status, errorTitle, errorText) {
  114. switch (status) {
  115. case "error":
  116. loading.removeClass("loading uploading error").addClass(status);
  117. if (!errorTitle||!errorText) {
  118. errorTitle = "Error";
  119. errorText = "Whoops, it looks like something went wrong. Please reload the site and try again!"
  120. }
  121. loading.html("<h1>" + errorTitle + ": <span>" + errorText + "</span></h1>");
  122. loading.css("height", "40px");
  123. header.css("margin-Top", "40px");
  124. $.timer(3000,function(){ loadingFadeOut() });
  125. break;
  126. case "loading":
  127. loading.removeClass("loading uploading error").addClass(status);
  128. if (visibleControls()) header.css("margin-Top", "3px");
  129. break;
  130. }
  131. }
  132. function loadingFadeOut() {
  133. loading.html("").css("height", "3px");
  134. if (visibleControls()) header.css("marginTop", "0px");
  135. }
  136. function showImageview(photoID) {
  137. // Change toolbar-buttons
  138. $("#tools_albums, #tools_album").hide();
  139. $("#tools_photo").show();
  140. // Make body scrollable
  141. $("body").css("overflow", "hidden");
  142. // Load photo
  143. loadPhotoInfo(photoID);
  144. }
  145. function hideImageview() {
  146. // Change toolbar-buttons
  147. $("#tools_photo, #tools_albums").hide();
  148. $("#tools_album").show();
  149. // Make body scrollable
  150. $("body").css("overflow", "scroll");
  151. // Change website title and url by using loadAlbumInfo
  152. loadAlbumInfo(content.attr("data-id"));
  153. // Hide ImageViewer
  154. image_view.removeClass("fadeIn").addClass("fadeOut");
  155. $.timer(300,function(){ image_view.hide() });
  156. }
  157. function visibleImageview() {
  158. if ($("#image_view.fadeIn").length>0) return true;
  159. else return false;
  160. }
  161. function showControls() {
  162. clearTimeout($(window).data("timeout"));
  163. if (visibleImageview()&&!runningDiashow()) {
  164. $("#image_view a#previous").css("left", "20px");
  165. $("#image_view a#next").css("right", "20px");
  166. image_view.css("background-color", "rgba(30,30,30,.99)");
  167. loading.css("opacity", 1);
  168. header.css("margin-Top", "0px");
  169. if ($("#image_view #image.small").length>0) {
  170. $("#image_view #image").css({
  171. marginTop: -1*($("#image_view #image").height()/2)+20
  172. });
  173. } else {
  174. $("#image_view #image").css({
  175. top: 70,
  176. right: 30,
  177. bottom: 30,
  178. left: 30
  179. });
  180. }
  181. }
  182. }
  183. function hideControls() {
  184. if (visibleImageview()) {
  185. clearTimeout($(window).data("timeout"));
  186. $(window).data("timeout", setTimeout( function () {
  187. $("#image_view a#previous").css("left", "-50px");
  188. $("#image_view a#next").css("right", "-50px");
  189. image_view.css("background-color", "#111");
  190. loading.css("opacity", 0);
  191. header.css("margin-Top", "-45px");
  192. if ($("#image_view #image.small").length>0) {
  193. $("#image_view #image").css({
  194. marginTop: -1*($("#image_view #image").height()/2)
  195. });
  196. } else {
  197. $("#image_view #image").css({
  198. top: 0,
  199. right: 0,
  200. bottom: 0,
  201. left: 0
  202. });
  203. }
  204. }, 500));
  205. }
  206. }
  207. function visibleControls() {
  208. if (loading.css("opacity")>0) return true;
  209. else return false;
  210. }
  211. function showContextMenuPhoto(photoID, mouse_x, mouse_y) {
  212. mouse_y -= $(document).scrollTop();
  213. items = [
  214. ["Rename", "renamePhoto(" + photoID + ")"],
  215. ["Move to Album", "showContextMenuMove(" + photoID + ", " + (mouse_x+150) + ", " + (mouse_y+$(document).scrollTop()) + ")"],
  216. ["Delete", "deletePhoto(" + photoID + ")"]
  217. ];
  218. closeContextMenu();
  219. $("body").css("overflow", "hidden");
  220. $(".photo[data-id='" + photoID + "']").addClass("active");
  221. $("body").append(buildContextMenu(items));
  222. $(".contextmenu").css({
  223. "top": mouse_y,
  224. "left": mouse_x
  225. });
  226. }
  227. function showContextMenuMove(photoID, mouse_x, mouse_y) {
  228. mouse_y -= $(document).scrollTop();
  229. params = "function=getAlbums";
  230. $.ajax({type: "POST", url: api_path, data: params, dataType: "json", success: function(data) {
  231. if (content.attr("data-id")==0) {
  232. items = new Array();
  233. } else {
  234. items = [
  235. ["Unsorted", "loadMovePhoto(" + photoID + ", 0)"]
  236. ];
  237. }
  238. $.each(data, function(index) {
  239. if (this.id!=content.attr("data-id")) {
  240. if(!this.title) this.title = "Untitled";
  241. items[items.length] = new Array(this.title, "loadMovePhoto(" + photoID + ", " + this.id + ")");
  242. } else {
  243. items[items.length] = new Array("", "");
  244. }
  245. });
  246. if (items.length==0) {
  247. items = [
  248. ["Create new Album", "addAlbum()"]
  249. ];
  250. }
  251. closeContextMenu();
  252. $("body").css("overflow", "hidden");
  253. $(".photo[data-id='" + photoID + "']").addClass("active");
  254. $("body").append(buildContextMenu(items));
  255. $(".contextmenu").css({
  256. "top": mouse_y,
  257. "left": mouse_x-150
  258. });
  259. }, error: ajaxError });
  260. }
  261. function showContextMenuShare(photoID, mouse_x, mouse_y) {
  262. mouse_y -= $(document).scrollTop();
  263. items = [
  264. ["<a class='icon-eye-close'></a> Make Private", "setPhotoPublic()"],
  265. ["<a class='icon-twitter'></a> Twitter", "loadSharePhoto(0, " + photoID + ")"],
  266. ["<a class='icon-facebook'></a> Facebook", "loadSharePhoto(1, " + photoID + ")"],
  267. ["<a class='icon-sign-blank'></a> Tumblr", "loadSharePhoto(2, " + photoID + ")"],
  268. ["<a class='icon-pinterest'></a> Pinterest", "loadSharePhoto(3, " + photoID + ")"],
  269. ["<a class='icon-envelope'></a> Mail", "loadSharePhoto(4, " + photoID + ")"],
  270. ["<a class='icon-link'></a> Copy Link", "loadSharePhoto(5, " + photoID + ")"],
  271. ["<a class='icon-link'></a> Copy Shortlink", "loadSharePhoto(6, " + photoID + ")"]
  272. ];
  273. closeContextMenu();
  274. $("body").css("overflow", "hidden");
  275. $(".photo[data-id='" + photoID + "']").addClass("active");
  276. $("body").append(buildContextMenu(items));
  277. $(".contextmenu").css({
  278. "top": mouse_y,
  279. "left": mouse_x
  280. });
  281. }
  282. function closeContextMenu() {
  283. $(".contextmenu_bg, .contextmenu").remove();
  284. $(".photo.active").removeClass("active");
  285. $("body").css("overflow", "scroll");
  286. }
  287. function hidePhoto(photoID) {
  288. $(".photo[data-id='" + photoID + "']").css("opacity", 0).animate({
  289. width: 0,
  290. marginLeft: 0
  291. }, 300, function() {
  292. $(this).remove();
  293. imgNum = parseInt($("#title span").html().replace("- ", "").replace(" photos", ""))-1;
  294. $("#title span").html(" - " + imgNum + " photos");
  295. });
  296. }
  297. function startDiashow() {
  298. image_view.attr("data-diashow", "play");
  299. clearInterval($(window).data("diashow"));
  300. hideControls();
  301. $(window).data("diashow", setInterval(function() { loadNextPhoto() }, 3000));
  302. }
  303. function stopDiashow() {
  304. image_view.attr("data-diashow", "stop");
  305. clearInterval($(window).data("diashow"));
  306. showControls();
  307. }
  308. function runningDiashow() {
  309. if (image_view.attr("data-diashow")=="play") return true;
  310. else return false;
  311. }
  312. function showInfobox() {
  313. $("body").append("<div id='infobox_overlay'></div>");
  314. infobox.css("right", "0px");
  315. }
  316. function hideInfobox() {
  317. $("#infobox_overlay").remove();
  318. infobox.css("right", "-320px");
  319. }
  320. function visibleInfobox() {
  321. if (parseInt(infobox.css("right").replace("px", ""))<0) return false;
  322. else return true;
  323. }
  324. function isPhotoSmall(photo) {
  325. size = [
  326. ["width", false],
  327. ["height", false]
  328. ];
  329. if (photo.width<$(window).width()-60) size["width"] = true;
  330. if (photo.height<$(window).height()-100) size["height"] = true;
  331. if (size["width"]&&size["height"]) return true;
  332. else return false;
  333. }
  334. /*
  335. Key Function
  336. This function triggers events when a special key is pressed.
  337. */
  338. function key(e) {
  339. code = (e.keyCode ? e.keyCode : e.which);
  340. if (code==13||code==37||code==39||code==32||code==27) e.preventDefault();
  341. if (code==13&&$(".message .button.active").length) $(".message .button.active").addClass("pressed").click();
  342. if (code==37&&visibleImageview()) loadPreviousPhoto();
  343. if (code==39&&visibleImageview()) loadNextPhoto();
  344. if (code==32&&visibleImageview()&&!runningDiashow()) startDiashow();
  345. else if (code==32&&visibleImageview()&&runningDiashow()) stopDiashow();
  346. if (code==27&&$(".message").length&&$(".sign_in").length==0) closeModal();
  347. else if (code==27&&visibleInfobox()) { hideInfobox(); e.preventDefault(); }
  348. else if (code==27&&visibleImageview()&&runningDiashow()) stopDiashow();
  349. else if (code==27&&visibleImageview()&&!runningDiashow()) { showControls(); setURL("a" + content.attr("data-id")); };
  350. }
  351. function getViewLink(photoID) {
  352. if (location.href.indexOf("index.html")>0) return location.href.replace("index.html" + location.hash, "view.php?p=" + photoID);
  353. else return location.href.replace(location.hash, "view.php?p=" + photoID);
  354. }
  355. /*
  356. Ajax Functions
  357. This functions are used to get and process data from the Api.
  358. */
  359. function addAlbum() {
  360. title = prompt("Please enter a title for this album:", "Untitled");
  361. closeModal();
  362. if (title.length>2&&title.length<31) {
  363. loadingFadeIn("loading");
  364. params = "function=addAlbum&title=" + escape(title);
  365. $.ajax({type: "POST", url: api_path, data: params, success: function(data) {
  366. if (data==0) loadingFadeIn("error");
  367. else setURL("a" + data);
  368. }, error: ajaxError });
  369. } else if (title.length>0) loadingFadeIn("error", "Error", "Title to short or too long. Please try another one!");
  370. }
  371. function renameAlbum() {
  372. oldTitle = headerTitle.html().replace($("#title span").html(), "").replace("<span></span>", "");
  373. newTitle = prompt("Please enter a new title for this album:", oldTitle);
  374. albumID = content.attr("data-id");
  375. if (albumID!=""&&albumID!=null&&albumID!=undefined&&newTitle.length>2&&newTitle.length<31) {
  376. loadingFadeIn("loading");
  377. params = "function=setAlbumTitle&albumID=" + albumID + "&title=" + encodeURI(newTitle);
  378. $.ajax({type: "POST", url: api_path, data: params, success: function(data) {
  379. if (data==1) {
  380. headerTitle.html(newTitle + "<span>" + $("#title span").html() + "</span>");
  381. document.title = "Lychee - " + newTitle;
  382. loadingFadeOut();
  383. } else loadingFadeIn("error");
  384. }, error: ajaxError });
  385. } else if (newTitle.length>0) loadingFadeIn("error", "Error", "New title to short or too long. Please try another one!");
  386. }
  387. function renamePhoto(photoID) {
  388. if (photoID==undefined) {
  389. // Function called from ImageViewer
  390. oldTitle = headerTitle.html();
  391. photoID = image_view.attr("data-id");
  392. } else oldTitle = "";
  393. newTitle = prompt("Please enter a new title for this photo:", oldTitle);
  394. if (photoID!=null&&photoID!=undefined&&newTitle.length<31) {
  395. loadingFadeIn("loading");
  396. params = "function=setPhotoTitle&photoID=" + photoID + "&title=" + encodeURI(newTitle);
  397. $.ajax({type: "POST", url: api_path, data: params, success: function(data) {
  398. if (data==1) {
  399. if (oldTitle!="") {
  400. headerTitle.html(newTitle);
  401. document.title = "Lychee - " + newTitle;
  402. }
  403. $(".photo[data-id='" + photoID + "'] .overlay h1").html(newTitle);
  404. loadingFadeOut();
  405. } else loadingFadeIn("error");
  406. }, error: ajaxError });
  407. } else if (newTitle.length>0) loadingFadeIn("error", "Error", "New title to short or too long. Please try another one!");
  408. }
  409. function loadAlbums() {
  410. loadingFadeIn("loading");
  411. $(".album, .photo").removeClass("contentZoomIn").addClass("contentZoomOut");
  412. startTime = new Date().getTime();
  413. params = "function=getAlbums";
  414. $.ajax({type: "POST", url: api_path, data: params, dataType: "json", success: function(data) {
  415. durationTime = (new Date().getTime() - startTime);
  416. if (durationTime>300) waitTime = 0; else waitTime = 300 - durationTime;
  417. $.timer(waitTime,function(){
  418. $("#tools_album, #tools_photo").hide();
  419. $("#tools_albums").show();
  420. content.attr("data-id", "");
  421. /* Smart Albums */
  422. unsortedAlbum = new Object();
  423. unsortedAlbum.id = 0;
  424. unsortedAlbum.title = "Unsorted";
  425. unsortedAlbum.sysdate = "";
  426. unsortedAlbum.unsorted = 1;
  427. starredAlbum = new Object();
  428. starredAlbum.id = "f";
  429. starredAlbum.title = "Starred";
  430. starredAlbum.sysdate = "";
  431. starredAlbum.star = 1;
  432. sharedAlbum = new Object();
  433. sharedAlbum.id = "s";
  434. sharedAlbum.title = "Public";
  435. sharedAlbum.sysdate = "";
  436. sharedAlbum.public = 1;
  437. content.html("").append(buildDivider("Smart Albums") + buildAlbum(unsortedAlbum) + buildAlbum(starredAlbum) + buildAlbum(sharedAlbum));
  438. if (data!=false) {
  439. /* Albums */
  440. albums = "";
  441. $.each(data, function() { albums += buildAlbum(this); });
  442. content.append(buildDivider("Albums") + albums);
  443. $(".album, .photo").removeClass("contentZoomOut").addClass("contentZoomIn");
  444. }
  445. document.title = "Lychee";
  446. headerTitle.html("Albums").removeClass("editable");
  447. loadSmartAlbums();
  448. });
  449. }, error: ajaxError });
  450. }
  451. function loadSmartAlbums() {
  452. params = "function=getSmartInfo";
  453. $.ajax({type: "POST", url: api_path, data: params, dataType: "json", success: function(data) {
  454. $(".album[data-id='0'] img:nth-child(1)").attr("src", data.unsortThumb2);
  455. $(".album[data-id='0'] img:nth-child(2)").attr("src", data.unsortThumb1);
  456. $(".album[data-id='0'] img:nth-child(3)").attr("src", data.unsortThumb0);
  457. $(".album[data-id='0'] .overlay a").html(data.unsortNum + " photos");
  458. $(".album[data-id='s'] img:nth-child(1)").attr("src", data.publicThumb2);
  459. $(".album[data-id='s'] img:nth-child(2)").attr("src", data.publicThumb1);
  460. $(".album[data-id='s'] img:nth-child(3)").attr("src", data.publicThumb0);
  461. $(".album[data-id='s'] .overlay a").html(data.publicNum + " photos");
  462. $(".album[data-id='f'] img:nth-child(1)").attr("src", data.starredThumb2);
  463. $(".album[data-id='f'] img:nth-child(2)").attr("src", data.starredThumb1);
  464. $(".album[data-id='f'] img:nth-child(3)").attr("src", data.starredThumb0);
  465. $(".album[data-id='f'] .overlay a").html(data.starredNum + " photos");
  466. loadingFadeOut();
  467. }, error: ajaxError });
  468. }
  469. function loadPhotos(albumID, refresh) {
  470. // If refresh is true the function will only refresh the content and not change the toolbar buttons either the title
  471. if (!refresh) {
  472. loadingFadeIn("loading");
  473. if (visibleImageview()) hideImageview();
  474. $(".album, .photo").removeClass("contentZoomIn").addClass("contentZoomOut");
  475. $(".divider").removeClass("fadeIn").addClass("fadeOut");
  476. }
  477. startTime = new Date().getTime();
  478. params = "function=getPhotos&albumID=" + albumID;
  479. $.ajax({type: "POST", url: api_path, data: params, dataType: "json", success: function(data) {
  480. durationTime = (new Date().getTime() - startTime);
  481. if (durationTime>300) waitTime = 0; else if (refresh) waitTime = 0; else waitTime = 300 - durationTime;
  482. $.timer(waitTime,function(){
  483. content.attr("data-id", albumID);
  484. photos = "";
  485. $.each(data, function() { photos += buildPhoto(this); });
  486. content.html("").append(photos);
  487. if (!refresh) {
  488. $(".album, .photo").removeClass("contentZoomOut").addClass("contentZoomIn");
  489. $("#tools_albums, #tools_photo").hide();
  490. $("#tools_album").show();
  491. loadAlbumInfo(albumID);
  492. }
  493. });
  494. }, error: ajaxError });
  495. }
  496. function loadAlbumInfo(albumID) {
  497. if (albumID=="f"||albumID=="s"||albumID==0) {
  498. params = "function=getSmartInfo";
  499. $.ajax({type: "POST", url: api_path, data: params, dataType: "json", success: function(data) {
  500. switch (albumID) {
  501. case "f":
  502. document.title = "Lychee - Starred";
  503. headerTitle.html("Starred<span> - " + data.starredNum + " photos</span>");
  504. $("#button_edit_album, #button_trash_album, .button_divider").hide();
  505. break;
  506. case "s":
  507. document.title = "Lychee - Public";
  508. headerTitle.html("Public<span> - " + data.publicNum + " photos</span>");
  509. $("#button_edit_album, #button_trash_album, .button_divider").hide();
  510. break;
  511. case "0":
  512. document.title = "Lychee - Unsorted";
  513. headerTitle.html("Unsorted<span> - " + data.unsortNum + " photos</span>");
  514. $("#button_edit_album").hide();
  515. $("#button_trash_album, .button_divider").show();
  516. break;
  517. }
  518. loadingFadeOut();
  519. }, error: ajaxError });
  520. } else {
  521. params = "function=getAlbumInfo&albumID=" + albumID;
  522. $.ajax({type: "POST", url: api_path, data: params, dataType: "json", success: function(data) {
  523. $("#button_edit_album, #button_trash_album, .button_divider").show();
  524. if (!data.title) data.title = "Untitled";
  525. document.title = "Lychee - " + data.title;
  526. headerTitle.html(data.title + "<span> - " + data.num + " photos</span>").addClass("editable");
  527. loadingFadeOut();
  528. }, error: ajaxError });
  529. }
  530. }
  531. function loadPhotoInfo(photoID) {
  532. loadingFadeIn("loading");
  533. params = "function=getPhotoInfo&photoID=" + photoID;
  534. $.ajax({type: "POST", url: api_path, data: params, dataType: "json", success: function(data) {
  535. if (!data.title) data.title = "Untitled";
  536. document.title = "Lychee - " + data.title;
  537. headerTitle.html(data.title).addClass("editable");
  538. $("#button_star a").removeClass("icon-star-empty icon-star");
  539. if (data.star=="1") {
  540. $("#button_star a").addClass("icon-star");
  541. $("#button_star").attr("title", "Unstar Photo");
  542. } else {
  543. $("#button_star a").addClass("icon-star-empty");
  544. $("#button_star").attr("title", "Star Photo");
  545. }
  546. if (data.public=="1") {
  547. $("#button_share a").addClass("active");
  548. $("#button_share").attr("title", "Make Photo Private");
  549. } else {
  550. $("#button_share a").removeClass("active");
  551. $("#button_share").attr("title", "Share Photo");
  552. }
  553. image_view.attr("data-id", photoID);
  554. if (visibleControls()&&isPhotoSmall(data)) image_view.html("").append("<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>");
  555. else if (visibleControls()) image_view.html("").append("<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>");
  556. else if (isPhotoSmall(data)) image_view.html("").append("<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>");
  557. else image_view.html("").append("<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>");
  558. image_view.removeClass("fadeOut").addClass("fadeIn").show();
  559. if (!visibleControls()) hideControls(true);
  560. infobox.html(buildInfobox(data)).show();
  561. $.timer(300,function(){ content.show(); });
  562. loadingFadeOut();
  563. }, error: ajaxError });
  564. }
  565. function setPhotoStar() {
  566. loadingFadeIn("loading");
  567. photoID = image_view.attr("data-id");
  568. params = "function=setPhotoStar&photoID=" + photoID;
  569. $.ajax({type: "POST", url: api_path, data: params, success: function(data) {
  570. if (data==1) {
  571. if ($("#button_star a.icon-star-empty").length) {
  572. $("#button_star a").removeClass("icon-star-empty icon-star").addClass("icon-star");
  573. $("#button_star").attr("title", "Unstar Photo");
  574. } else {
  575. $("#button_star a").removeClass("icon-star-empty icon-star").addClass("icon-star-empty");
  576. $("#button_star").attr("title", "Star Photo");
  577. }
  578. loadPhotos(content.attr("data-id"), true);
  579. loadingFadeOut();
  580. } else loadingFadeIn("error");
  581. }, error: ajaxError });
  582. }
  583. function setPhotoPublic(e) {
  584. loadingFadeIn("loading");
  585. photoID = image_view.attr("data-id");
  586. params = "function=setPhotoPublic&photoID=" + photoID + "&url=" + getViewLink(photoID);
  587. $.ajax({type: "POST", url: api_path, data: params, success: function(data) {
  588. if (data==1) {
  589. if ($("#button_share a.active").length) {
  590. $("#button_share a").removeClass("active");
  591. $("#button_share").attr("title", "Make Private");
  592. } else {
  593. $("#button_share a").addClass("active");
  594. $("#button_share").attr("title", "Share Photo");
  595. showContextMenuShare(photoID, e.pageX, e.pageY);
  596. }
  597. loadPhotos(content.attr("data-id"), true);
  598. loadingFadeOut();
  599. } else loadingFadeIn("error");
  600. }, error: ajaxError });
  601. }
  602. function setPhotoDescription() {
  603. description = prompt("Please enter a description for this photo:", "");
  604. photoID = image_view.attr("data-id");
  605. if (description.length>0&&description.length<160) {
  606. loadingFadeIn("loading");
  607. params = "function=setPhotoDescription&photoID=" + photoID + "&description=" + escape(description);
  608. $.ajax({type: "POST", url: api_path, data: params, success: function(data) {
  609. if (data==0) loadingFadeIn("error");
  610. else loadPhotoInfo(photoID);
  611. }, error: ajaxError });
  612. } else if (description.length>0) loadingFadeIn("error", "Error", "Description to short or too long. Please try another one!");
  613. }
  614. function loadDeleteAlbum(albumID, delAll) {
  615. loadingFadeIn("loading");
  616. params = "function=deleteAlbum&albumID=" + albumID + "&delAll=" + delAll;
  617. $.ajax({type: "POST", url: api_path, data: params, success: function(data) {
  618. if (data==1) setURL("");
  619. else loadingFadeIn("error");
  620. }, error: ajaxError });
  621. }
  622. function loadDeletePhoto(photoID) {
  623. loadingFadeIn("loading");
  624. params = "function=deletePhoto&photoID=" + photoID;
  625. $.ajax({type: "POST", url: api_path, data: params, success: function(data) {
  626. if (data==1) {
  627. hidePhoto(photoID);
  628. setURL("a" + content.attr("data-id"));
  629. loadingFadeOut();
  630. }
  631. else loadingFadeIn("error");
  632. }, error: ajaxError });
  633. }
  634. function loadSharePhoto(service, photoID) {
  635. loadingFadeIn("loading");
  636. params = "function=sharePhoto&photoID=" + photoID + "&url=" + getViewLink(photoID);
  637. $.ajax({type: "POST", url: api_path, data: params, dataType: "json", success: function(data) {
  638. switch (service) {
  639. case 0:
  640. link = data.twitter;
  641. break;
  642. case 1:
  643. link = data.facebook;
  644. break;
  645. case 2:
  646. link = data.tumblr;
  647. break;
  648. case 3:
  649. link = data.pinterest;
  650. break;
  651. case 4:
  652. link = data.mail;
  653. break;
  654. case 5:
  655. link = "copy";
  656. modal = buildModal("Copy Link", "You can use this link to share your image with other people: <input class='copylink' value='" + getViewLink(photoID) + "'>", ["Close"], [""]);
  657. $("body").append(modal);
  658. $(".copylink").click();
  659. break;
  660. case 6:
  661. link = "copy";
  662. modal = buildModal("Copy Shortlink", "You can use this link to share your image with other people: <input class='copylink' value='" + data.shortlink + "'>", ["Close"], [""]);
  663. $("body").append(modal);
  664. $(".copylink").click();
  665. break;
  666. default:
  667. link = "";
  668. break;
  669. }
  670. if (link=="copy") loadingFadeOut();
  671. else if (link.length>5) {
  672. location.href = link;
  673. loadingFadeOut();
  674. } else loadingFadeIn("error");
  675. }, error: ajaxError });
  676. }
  677. function getAlbumArchive() {
  678. albumID = content.attr("data-id");
  679. if (location.href.indexOf("index.html")>0) link = location.href.replace(location.hash, "").replace("index.html", "php/api.php?function=getAlbumArchive&albumID=" + albumID);
  680. else link = location.href.replace(location.hash, "") + "php/api.php?function=getAlbumArchive&albumID=" + albumID;
  681. location.href = link;
  682. }
  683. function loadMovePhoto(photoID, albumID) {
  684. if (albumID>=0) {
  685. loadingFadeIn("loading");
  686. params = "function=movePhoto&photoID=" + photoID + "&albumID=" + albumID;
  687. $.ajax({type: "POST", url: api_path, data: params, success: function(data) {
  688. if (data==1) {
  689. hidePhoto(photoID);
  690. setURL("a" + content.attr("data-id"));
  691. loadingFadeOut();
  692. } else loadingFadeIn("error");
  693. }, error: ajaxError });
  694. }
  695. }
  696. function loadPreviousPhoto() {
  697. albumID = content.attr("data-id");
  698. photoID = image_view.attr("data-id");
  699. params = "function=previousPhoto&photoID=" + photoID + "&albumID=" + albumID;
  700. $.ajax({type: "POST", url: api_path, data: params, dataType: "json", success: function(data) {
  701. if (data!=false) setURL("a" + albumID + "p" + data.id);
  702. }, error: ajaxError });
  703. }
  704. function loadNextPhoto() {
  705. albumID = content.attr("data-id");
  706. photoID = image_view.attr("data-id");
  707. params = "function=nextPhoto&photoID=" + photoID + "&albumID=" + albumID;
  708. $.ajax({type: "POST", url: api_path, data: params, dataType: "json", success: function(data) {
  709. if (data) setURL("a" + albumID + "p" + data.id);
  710. }, error: ajaxError });
  711. }
  712. function syncFolder() {
  713. params = "function=syncFolder";
  714. $.ajax({type: "POST", url: api_path, data: params, success: function(data) {
  715. if (data==1) setURL("a0");
  716. else loadingFadeIn("error");
  717. }, error: ajaxError });
  718. }
  719. function search(term) {
  720. clearTimeout($(window).data("timeout"));
  721. $(window).data("timeout", setTimeout(function() {
  722. if ($("#search").val().length<=2) {
  723. $(".divider").removeClass("fadeIn").addClass("fadeOut");
  724. loadAlbums();
  725. } else {
  726. $(".album, .photo").removeClass("contentZoomIn").addClass("contentZoomOut");
  727. $(".divider").removeClass("fadeIn").addClass("fadeOut");
  728. startTime = new Date().getTime();
  729. params = "function=search&term=" + term;
  730. $.ajax({type: "POST", url: api_path, data: params, dataType: "json", success: function(data) {
  731. console.log(data);
  732. albums = "";
  733. if (data.albums!=undefined&&data.albums!=null) $.each(data.albums, function() { albums += buildAlbum(this); });
  734. photos = "";
  735. if (data.photos!=undefined&&data.photos!=null) $.each(data.photos, function() { photos += buildPhoto(this); });
  736. durationTime = (new Date().getTime() - startTime);
  737. if (durationTime>300) waitTime = 0; else waitTime = 300 - durationTime;
  738. $.timer(waitTime,function(){
  739. if (albums==""&&photos=="") code = "";
  740. else if (albums=="") code = buildDivider("Photos")+photos;
  741. else if (photos=="") code = buildDivider("Albums")+albums;
  742. else code = buildDivider("Photos")+photos+buildDivider("Albums")+albums;
  743. content.html("").append(code);
  744. $(".album, .photo").removeClass("contentZoomOut").addClass("contentZoomIn");
  745. });
  746. }, error: ajaxError });
  747. }
  748. }, 250));
  749. }
  750. /*
  751. Error Function
  752. This function is called when an ajax-request fails.
  753. */
  754. function ajaxError(jqXHR, textStatus, errorThrown) {
  755. console.log(jqXHR);
  756. console.log(textStatus);
  757. console.log(errorThrown);
  758. loadingFadeIn("error", textStatus, errorThrown);
  759. }