envResolver.js 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. var http = function (url, success, failure) {
  2. var request = new XMLHttpRequest();
  3. request.open("GET", url, true);
  4. request.send(null);
  5. request.onreadystatechange = function () {
  6. if (request.readyState == 4) {
  7. if (request.status == 200)
  8. success(request.responseText);
  9. else if (failure)
  10. failure(request.status, request.statusText);
  11. }
  12. };
  13. };
  14. var mockXhr = function () {
  15. XMLHttpRequest = XhrMock;
  16. FormData = FormDataMock;
  17. };
  18. var resolveEnvironment = function () {
  19. if (window.location.href.toString().toLowerCase().indexOf('file://') >= 0) {
  20. mockXhr();
  21. return;
  22. }
  23. http('api/check', function (result) {
  24. if (result !== 'API OK')
  25. mockXhr();
  26. }, function () {
  27. mockXhr();
  28. });
  29. };
  30. var FormDataMock = (function () {
  31. function FormDataMock() {
  32. this.data = {};
  33. }
  34. FormDataMock.prototype.append = function (key, data, additional) {
  35. this.data[key] = { data: data, additional: additional };
  36. };
  37. return FormDataMock;
  38. })();
  39. var XhrMock = (function () {
  40. function XhrMock() {
  41. this.loaded = 0;
  42. this.step = 2000000;
  43. this.readyState = 0;
  44. this.status = 0;
  45. this.upload = { onprogress: function () { } };
  46. }
  47. XhrMock.prototype.open = function (method, url, async) {
  48. };
  49. XhrMock.prototype.setRequestHeader = function (name, value) {
  50. };
  51. XhrMock.prototype.send = function (formData) {
  52. this.file = formData.data['file'].data;
  53. this.performStep();
  54. };
  55. XhrMock.prototype.abort = function () {
  56. window.clearTimeout(this.timeoutId);
  57. };
  58. XhrMock.prototype.performStep = function () {
  59. var _this = this;
  60. this.timeoutId = window.setTimeout(function () {
  61. if (_this.addStep() === _this.file.size) {
  62. _this.readyState = 4;
  63. _this.status = 200;
  64. _this.onload(new Event('loaded'));
  65. }
  66. else {
  67. var e = {
  68. lengthComputable: true,
  69. loaded: _this.loaded,
  70. total: _this.file.size
  71. };
  72. _this.upload.onprogress(e);
  73. _this.performStep();
  74. }
  75. }, 100);
  76. };
  77. XhrMock.prototype.addStep = function () {
  78. var newValue = this.loaded + this.step;
  79. this.loaded = newValue > this.file.size ? this.file.size : newValue;
  80. return this.loaded;
  81. };
  82. return XhrMock;
  83. })();