lychee.js 7.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346
  1. /**
  2. * @name Lychee Module
  3. * @description This module provides the basic functions of Lychee.
  4. * @author Tobias Reich
  5. * @copyright 2014 by Tobias Reich
  6. */
  7. var lychee = {
  8. title: "",
  9. version: "2.5 b1",
  10. version_code: "020200",
  11. api_path: "php/api.php",
  12. update_path: "http://lychee.electerious.com/version/index.php",
  13. updateURL: "https://github.com/electerious/Lychee",
  14. website: "http://lychee.electerious.com",
  15. upload_path_thumb: "uploads/thumb/",
  16. upload_path_big: "uploads/big/",
  17. publicMode: false,
  18. viewMode: false,
  19. debugMode: true,
  20. username: "",
  21. checkForUpdates: false,
  22. sorting: "",
  23. dropbox: false,
  24. dropboxKey: '',
  25. loadingBar: $("#loading"),
  26. header: $("header"),
  27. content: $("#content"),
  28. imageview: $("#imageview"),
  29. infobox: $("#infobox"),
  30. init: function() {
  31. var params;
  32. params = "init&version=" + lychee.version_code;
  33. lychee.api(params, function(data) {
  34. if (data.loggedIn!==true) {
  35. lychee.setMode("public");
  36. } else {
  37. lychee.username = data.config.username || '';
  38. lychee.sorting = data.config.sorting || '';
  39. lychee.dropboxKey = data.config.dropboxKey || '';
  40. }
  41. // No configuration
  42. if (data==="Warning: No configuration!") {
  43. lychee.header.hide();
  44. lychee.content.hide();
  45. $("body").append(build.no_content("cog"));
  46. settings.createConfig();
  47. return true;
  48. }
  49. // No login
  50. if (data.config.login===false) {
  51. settings.createLogin();
  52. }
  53. lychee.checkForUpdates = data.config.checkForUpdates;
  54. $(window).bind("popstate", lychee.load);
  55. lychee.load();
  56. });
  57. },
  58. api: function(params, callback, loading) {
  59. if (loading===undefined) loadingBar.show();
  60. $.ajax({
  61. type: "POST",
  62. url: lychee.api_path,
  63. data: "function=" + params,
  64. dataType: "text",
  65. success: function(data) {
  66. setTimeout(function() { loadingBar.hide() }, 100);
  67. if (typeof data==="string"&&data.substring(0, 7)==="Error: ") {
  68. lychee.error(data.substring(7, data.length), params, data);
  69. return false;
  70. }
  71. if (data==="1") data = true;
  72. else if (data==="") data = false;
  73. if (typeof data==="string"&&data.substring(0, 1)==="{"&&data.substring(data.length-1, data.length)==="}") data = $.parseJSON(data);
  74. if (lychee.debugMode) console.log(data);
  75. callback(data);
  76. },
  77. error: function(jqXHR, textStatus, errorThrown) {
  78. lychee.error("Server error or API not found.", params, errorThrown);
  79. upload.close(true);
  80. }
  81. });
  82. },
  83. login: function() {
  84. var user = $("input#username").val(),
  85. password = md5($("input#password").val()),
  86. params;
  87. params = "login&user=" + user + "&password=" + password;
  88. lychee.api(params, function(data) {
  89. if (data===true) {
  90. localStorage.setItem("username", user);
  91. window.location.reload();
  92. } else {
  93. $("#password").val("").addClass("error").focus();
  94. $(".message .button.active").removeClass("pressed");
  95. }
  96. });
  97. },
  98. loginDialog: function() {
  99. var local_username;
  100. $("body").append(build.signInModal());
  101. $("#username").focus();
  102. if (localStorage) {
  103. local_username = localStorage.getItem("username");
  104. if (local_username!==null) {
  105. if (local_username.length>0) $("#username").val(local_username);
  106. $("#password").focus();
  107. }
  108. }
  109. if (lychee.checkForUpdates==="1") lychee.getUpdate();
  110. },
  111. logout: function() {
  112. lychee.api("logout", function(data) {
  113. window.location.reload();
  114. });
  115. },
  116. goto: function(url) {
  117. if (url===undefined) url = "";
  118. document.location.hash = url;
  119. },
  120. load: function() {
  121. var albumID = "",
  122. photoID = "",
  123. hash = document.location.hash.replace("#", "").split("/");
  124. contextMenu.close();
  125. multiselect.close();
  126. if (hash[0]!==undefined) albumID = hash[0];
  127. if (hash[1]!==undefined) photoID = hash[1];
  128. if (albumID&&photoID) {
  129. // Trash data
  130. albums.json = null;
  131. photo.json = null;
  132. // Show Photo
  133. if (lychee.content.html()===""||($("#search").length&&$("#search").val().length!==0)) {
  134. lychee.content.hide();
  135. album.load(albumID, true);
  136. }
  137. photo.load(photoID, albumID);
  138. } else if (albumID) {
  139. // Trash data
  140. albums.json = null;
  141. photo.json = null;
  142. // Show Album
  143. if (visible.photo()) view.photo.hide();
  144. if (album.json&&albumID==album.json.id) view.album.title();
  145. else album.load(albumID);
  146. } else {
  147. // Trash data
  148. albums.json = null;
  149. album.json = null;
  150. photo.json = null;
  151. search.code = "";
  152. // Show Albums
  153. if (visible.album()) view.album.hide();
  154. if (visible.photo()) view.photo.hide();
  155. albums.load();
  156. }
  157. },
  158. getUpdate: function() {
  159. $.ajax({
  160. url: lychee.update_path,
  161. success: function(data) { if (data!=lychee.version) $("#version span").show(); }
  162. });
  163. },
  164. setTitle: function(title, editable) {
  165. if (lychee.title==="") lychee.title = document.title;
  166. if (title==="Albums") document.title = lychee.title;
  167. else document.title = lychee.title + " - " + title;
  168. if (editable) $("#title").addClass("editable");
  169. else $("#title").removeClass("editable");
  170. $("#title").html(title);
  171. },
  172. setMode: function(mode) {
  173. $("#button_settings, #button_settings, #button_search, #search, #button_trash_album, #button_share_album, .button_add, .button_divider").remove();
  174. $("#button_trash, #button_move, #button_share, #button_star").remove();
  175. $(document)
  176. .on("mouseenter", "#title.editable", function() { $(this).removeClass("editable") })
  177. .off("click", "#title.editable")
  178. .off("touchend", "#title.editable")
  179. .off("contextmenu", ".photo")
  180. .off("contextmenu", ".album")
  181. .off("drop");
  182. Mousetrap
  183. .unbind(['u', 'ctrl+u'])
  184. .unbind(['s', 'ctrl+s'])
  185. .unbind(['r', 'ctrl+r'])
  186. .unbind(['d', 'ctrl+d'])
  187. .unbind(['t', 'ctrl+t'])
  188. .unbind(['command+backspace', 'ctrl+backspace']);
  189. if (mode==="public") {
  190. $("header #button_signin, header #hostedwith").show();
  191. lychee.publicMode = true;
  192. } else if (mode==="view") {
  193. Mousetrap.unbind('esc');
  194. $("#button_back, a#next, a#previous").remove();
  195. $(".no_content").remove();
  196. lychee.publicMode = true;
  197. lychee.viewMode = true;
  198. }
  199. },
  200. animate: function(obj, animation) {
  201. var animations = [
  202. ["fadeIn", "fadeOut"],
  203. ["contentZoomIn", "contentZoomOut"]
  204. ];
  205. if (!obj.jQuery) obj = $(obj);
  206. for (var i = 0; i < animations.length; i++) {
  207. for (var x = 0; x < animations[i].length; x++) {
  208. if (animations[i][x]==animation) {
  209. obj.removeClass(animations[i][0] + " " + animations[i][1]).addClass(animation);
  210. return true;
  211. }
  212. }
  213. }
  214. return false;
  215. },
  216. loadDropbox: function(callback) {
  217. if (!lychee.dropbox&&lychee.dropboxKey) {
  218. loadingBar.show();
  219. var g = document.createElement("script"),
  220. s = document.getElementsByTagName("script")[0];
  221. g.src = "https://www.dropbox.com/static/api/1/dropins.js";
  222. g.id = "dropboxjs";
  223. g.type = "text/javascript";
  224. g.async = "true";
  225. g.setAttribute("data-app-key", lychee.dropboxKey);
  226. g.onload = g.onreadystatechange = function() {
  227. var rs = this.readyState;
  228. if (rs&&rs!=="complete"&&rs!=="loaded") return;
  229. lychee.dropbox = true;
  230. loadingBar.hide();
  231. callback();
  232. };
  233. s.parentNode.insertBefore(g, s);
  234. } else if (lychee.dropbox&&lychee.dropboxKey) {
  235. callback();
  236. } else {
  237. settings.setDropboxKey(callback);
  238. }
  239. },
  240. error: function(errorThrown, params, data) {
  241. console.log("Error Description: " + errorThrown);
  242. console.log("Error Params: " + params);
  243. console.log("Server Response: " + data);
  244. loadingBar.show("error", errorThrown);
  245. }
  246. };