upload.js 7.7 KB

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