upload.js 8.5 KB

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