upload.js 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  1. /**
  2. * @name upload.js
  3. * @author Philipp Maurer
  4. * @author Tobias Reich
  5. * @copyright 2012 by Philipp Maurer, Tobias Reich
  6. */
  7. var global_progress = new Array(),
  8. last_final_progress = 0;
  9. function handleFiles(files) {
  10. var i = 0;
  11. var auswahl_div = document.getElementById('auswahl');
  12. var imageType = /image.*/;
  13. var fileList = files;
  14. for(i = 0; i < fileList.length; i++) {
  15. var img = document.createElement("img");
  16. img.height = 0;
  17. img.file = fileList[i];
  18. img.name = 'pic_'+ i;
  19. img.classList.add("obj");
  20. auswahl_div.appendChild(img);
  21. }
  22. }
  23. function sendFiles(){
  24. imgs = document.querySelectorAll(".obj");
  25. $(".upload_overlay").remove();
  26. $("body").append(buildUploadModal());
  27. global_progress = new Array();
  28. last_final_progress = 0;
  29. for(i = 0; i < imgs.length; i++) {
  30. global_progress[i] = 0;
  31. new FileUpload(i, imgs[i], imgs[i].file);
  32. }
  33. }
  34. function changeProgress(i, progress) {
  35. global_progress[i] = progress;
  36. final_progress = 0;
  37. for(i = 0; i < global_progress.length; i++) {
  38. final_progress += global_progress[i];
  39. }
  40. if (Math.round(final_progress/document.querySelectorAll(".obj").length)%2==0&&Math.round(last_final_progress/document.querySelectorAll(".obj").length)<Math.round(final_progress/document.querySelectorAll(".obj").length)) {
  41. $(".progressbar div").css("width", Math.round(final_progress/document.querySelectorAll(".obj").length) + "%");
  42. }
  43. last_final_progress = final_progress;
  44. if ((final_progress/document.querySelectorAll(".obj").length)>=100) {
  45. $(".progressbar div").css("width", "100%");
  46. $.timer(1000,function(){
  47. $(".upload_overlay").removeClass("fadeIn").css("opacity", 0);
  48. $.timer(300,function(){ $(".upload_overlay").remove() });
  49. if (content.attr("data-id")=="") setURL("a0");
  50. else loadPhotos(content.attr("data-id"));
  51. });
  52. }
  53. }
  54. function FileUpload(i, img, file) {
  55. var old_percent = 0,
  56. xhr = new XMLHttpRequest(),
  57. fd = new FormData,
  58. percent = 0;
  59. this.xhr = xhr;
  60. this.xhr.upload.addEventListener("progress", function(e) {
  61. if (e.lengthComputable) percent = Math.round((e.loaded * 100) / e.total);
  62. changeProgress(i, percent);
  63. }, false);
  64. fd.append("File", file);
  65. fd.append("function", "upload");
  66. if (content.attr("data-id")=="") fd.append("albumID", 0);
  67. else fd.append("albumID", content.attr("data-id"));
  68. xhr.open("POST", "php/api.php", true);
  69. xhr.overrideMimeType('text/plain; charset=x-user-defined-binary');
  70. xhr.send(fd);
  71. }