upload.js 8.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394
  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. upload = {
  8. show: function(title, files, callback) {
  9. upload.close(true);
  10. $("body").append(build.uploadModal(title, files));
  11. if (callback!=null&&callback!=undefined) callback();
  12. },
  13. setIcon: function(icon) {
  14. $(".upload_message a").remove();
  15. $(".upload_message").prepend("<a class='icon-" + icon + "'></a>");
  16. },
  17. setProgress: function(progress) {
  18. $(".progressbar div").css("width", progress + "%");
  19. },
  20. setText: function(text) {
  21. $(".progressbar").remove();
  22. $(".upload_message").append("<p>" + text + "</p>");
  23. },
  24. notify: function(title) {
  25. var popup;
  26. if (!window.webkitNotifications) return false;
  27. if (window.webkitNotifications.checkPermission()!==0) window.webkitNotifications.requestPermission();
  28. if (window.webkitNotifications.checkPermission()===0&&title) {
  29. popup = window.webkitNotifications.createNotification("", title, "You can now manage your new photo(s).");
  30. popup.show();
  31. }
  32. },
  33. start: {
  34. local: function(files) {
  35. var albumID = album.getID(),
  36. process = function(files, file) {
  37. var formData = new FormData(),
  38. xhr = new XMLHttpRequest(),
  39. pre_progress = 0,
  40. progress,
  41. finish = function() {
  42. window.onbeforeunload = null;
  43. $("#upload_files").val("");
  44. upload.close();
  45. upload.notify("Upload complete");
  46. if (album.getID()===false) lychee.goto("0");
  47. else album.load(albumID);
  48. };
  49. // Check if file is supported
  50. if (file.supported===false) {
  51. // Skip file
  52. if (file.next!==null) process(files, file.next);
  53. else {
  54. // Look for supported files
  55. // If zero files are supported, hide the upload after a delay
  56. var hasSupportedFiles = false;
  57. for (var i = 0; i < files.length; i++) {
  58. if (files[i].supported===true) {
  59. hasSupportedFiles = true;
  60. break;
  61. }
  62. }
  63. if (hasSupportedFiles===false) setTimeout(finish, 2000);
  64. }
  65. return false;
  66. }
  67. formData.append("function", "upload");
  68. formData.append("albumID", albumID);
  69. formData.append(0, file);
  70. xhr.open("POST", lychee.api_path);
  71. xhr.onload = function() {
  72. var wait = false;
  73. file.ready = true;
  74. // Set status
  75. if (xhr.status===200&&xhr.responseText==="1") {
  76. // Success
  77. $(".upload_message .rows .row:nth-child(" + (file.num+1) + ") .status")
  78. .html("Finished")
  79. .addClass("success");
  80. } else {
  81. // Error
  82. $(".upload_message .rows .row:nth-child(" + (file.num+1) + ") .status")
  83. .html("Error")
  84. .addClass("error");
  85. $(".upload_message .rows .row:nth-child(" + (file.num+1) + ") p.notice")
  86. .html("Server returned the status code " + xhr.status)
  87. .show();
  88. }
  89. // Check if there are file which are not finished
  90. for (var i = 0; i < files.length; i++) {
  91. if (files[i].ready===false) {
  92. wait = true;
  93. break;
  94. }
  95. }
  96. // Finish upload when all files are finished
  97. if (wait===false) finish();
  98. };
  99. xhr.upload.onprogress = function(e) {
  100. if (e.lengthComputable) {
  101. // Calculate progress
  102. progress = (e.loaded / e.total * 100 | 0);
  103. // Set progress when progress has changed
  104. if (progress>pre_progress) {
  105. $(".upload_message .rows .row:nth-child(" + (file.num+1) + ") .status").html(progress + "%");
  106. pre_progress = progress;
  107. }
  108. if (progress>=100) {
  109. // Scroll to the uploading file
  110. var scrollPos = 0;
  111. if ((file.num+1)>4) scrollPos = (file.num + 1 - 4) * 40
  112. $(".upload_message .rows").scrollTop(scrollPos);
  113. // Set status to processing
  114. $(".upload_message .rows .row:nth-child(" + (file.num+1) + ") .status").html("Processing");
  115. // Upload next file
  116. if (file.next!==null) process(files, file.next);
  117. }
  118. }
  119. };
  120. xhr.send(formData);
  121. };
  122. if (files.length<=0) return false;
  123. if (albumID===false||visible.albums()===true) albumID = 0;
  124. for (var i = 0; i < files.length; i++) {
  125. files[i].num = i;
  126. files[i].ready = false;
  127. files[i].supported = true;
  128. if (i < files.length-1) files[i].next = files[i+1];
  129. else files[i].next = null;
  130. // Check if file is supported
  131. if (files[i].type!=="image/jpeg"&&files[i].type!=="image/jpg"&&files[i].type!=="image/png"&&files[i].type!=="image/gif") {
  132. files[i].ready = true;
  133. files[i].supported = false;
  134. }
  135. }
  136. window.onbeforeunload = function() { return "Lychee is currently uploading!"; };
  137. upload.show("Uploading", files);
  138. // Upload first file
  139. process(files, files[0]);
  140. },
  141. url: function() {
  142. var albumID = album.getID(),
  143. params,
  144. extension,
  145. buttons,
  146. link,
  147. files = [];
  148. if (albumID===false) albumID = 0;
  149. buttons = [
  150. ["Import", function() {
  151. link = $(".message input.text").val();
  152. if (link&&link.length>3) {
  153. extension = link.split('.').pop();
  154. if (extension!=="jpeg"&&extension!=="jpg"&&extension!=="png"&&extension!=="gif"&&extension!=="webp") {
  155. loadingBar.show("error", "The file format of this link is not supported.");
  156. return false;
  157. }
  158. files[0] = {
  159. name: link,
  160. supported: true
  161. }
  162. upload.show("Importing URL", files, function() {
  163. $(".upload_message .rows .row .status").html("Importing");
  164. });
  165. params = "importUrl&url=" + escape(encodeURI(link)) + "&albumID=" + albumID;
  166. lychee.api(params, function(data) {
  167. upload.close();
  168. upload.notify("Import complete");
  169. if (album.getID()===false) lychee.goto("0");
  170. else album.load(albumID);
  171. if (data!==true) lychee.error(null, params, data);
  172. });
  173. } else loadingBar.show("error", "Link to short or too long. Please try another one!");
  174. }],
  175. ["Cancel", function() {}]
  176. ];
  177. modal.show("Import from Link", "Please enter the direct link to a photo to import it: <input class='text' type='text' placeholder='http://' value='http://'>", buttons);
  178. },
  179. server: function() {
  180. var albumID = album.getID(),
  181. params,
  182. buttons,
  183. files = [],
  184. path;
  185. if (albumID===false) albumID = 0;
  186. buttons = [
  187. ["Import", function() {
  188. path = $(".message input.text").val();
  189. files[0] = {
  190. name: path,
  191. supported: true
  192. };
  193. upload.show("Importing from server", files, function() {
  194. $(".upload_message .rows .row .status").html("Importing");
  195. });
  196. params = "importServer&albumID=" + albumID + "&path=" + escape(encodeURI(path));
  197. lychee.api(params, function(data) {
  198. upload.close();
  199. upload.notify("Import complete");
  200. if (data==="Notice: Import only contains albums!") {
  201. if (visible.albums()) lychee.load();
  202. else lychee.goto("");
  203. }
  204. else if (album.getID()===false) lychee.goto("0");
  205. else album.load(albumID);
  206. if (data==="Notice: Import only contains albums!") return true;
  207. else if (data==="Warning: Folder empty!") lychee.error("Folder empty. No photos imported!", params, data);
  208. else if (data!==true) lychee.error(null, params, data);
  209. });
  210. }],
  211. ["Cancel", function() {}]
  212. ];
  213. modal.show("Import from Server", "This action will import all photos, folders and sub-folders which are located in the following directory. The <b>original files will be deleted</b> after the import when possible. <input class='text' type='text' maxlength='100' placeholder='Absolute path to directory' value='" + lychee.location + "uploads/import/'>", buttons);
  214. },
  215. dropbox: function() {
  216. var albumID = album.getID(),
  217. params,
  218. links = "";
  219. if (albumID===false) albumID = 0;
  220. lychee.loadDropbox(function() {
  221. Dropbox.choose({
  222. linkType: "direct",
  223. multiselect: true,
  224. success: function(files) {
  225. for (var i = 0; i < files.length; i++) {
  226. links += files[i].link + ",";
  227. files[i] = {
  228. name: files[i].link,
  229. supported: true
  230. };
  231. }
  232. // Remove last comma
  233. links = links.substr(0, links.length-1);
  234. upload.show("Importing from Dropbox", files, function() {
  235. $(".upload_message .rows .row .status").html("Importing");
  236. });
  237. params = "importUrl&url=" + escape(links) + "&albumID=" + albumID;
  238. lychee.api(params, function(data) {
  239. upload.close();
  240. upload.notify("Import complete");
  241. if (album.getID()===false) lychee.goto("0");
  242. else album.load(albumID);
  243. if (data!==true) lychee.error(null, params, data);
  244. });
  245. }
  246. });
  247. });
  248. }
  249. },
  250. close: function(force) {
  251. if (force===true) {
  252. $(".upload_overlay").remove();
  253. } else {
  254. upload.setProgress(100);
  255. $(".upload_overlay").removeClass("fadeIn").css("opacity", 0);
  256. setTimeout(function() { $(".upload_overlay").remove() }, 300);
  257. }
  258. }
  259. };