upload.js 9.4 KB

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