hostenv_dashboard.js
上传用户:kimgenplus
上传日期:2016-06-05
资源大小:20877k
文件大小:5k
源码类别:

OA系统

开发平台:

Java

  1. /*
  2. Copyright (c) 2004-2006, The Dojo Foundation
  3. All Rights Reserved.
  4. Licensed under the Academic Free License version 2.1 or above OR the
  5. modified BSD license. For more information on Dojo licensing, see:
  6. http://dojotoolkit.org/community/licensing.shtml
  7. */
  8. dojo.render.name = dojo.hostenv.name_ = "dashboard";
  9. dojo.hostenv.println = function (message) {
  10. return alert(message);
  11. };
  12. dojo.hostenv.getXmlhttpObject = function (kwArgs) {
  13. if (widget.system && kwArgs) {
  14. if ((kwArgs.contentType && kwArgs.contentType.indexOf("text/") != 0) || (kwArgs.headers && kwArgs.headers["content-type"] && kwArgs.headers["content-type"].indexOf("text/") != 0)) {
  15. var curl = new dojo.hostenv.CurlRequest;
  16. curl._save = true;
  17. return curl;
  18. } else {
  19. if (kwArgs.method && kwArgs.method.toUpperCase() == "HEAD") {
  20. return new dojo.hostenv.CurlRequest;
  21. } else {
  22. if (kwArgs.headers && kwArgs.header.referer) {
  23. return new dojo.hostenv.CurlRequest;
  24. }
  25. }
  26. }
  27. }
  28. return new XMLHttpRequest;
  29. };
  30. dojo.hostenv.CurlRequest = function () {
  31. this.onreadystatechange = null;
  32. this.readyState = 0;
  33. this.responseText = "";
  34. this.responseXML = null;
  35. this.status = 0;
  36. this.statusText = "";
  37. this._method = "";
  38. this._url = "";
  39. this._async = true;
  40. this._referrer = "";
  41. this._headers = [];
  42. this._save = false;
  43. this._responseHeader = "";
  44. this._responseHeaders = {};
  45. this._fileName = "";
  46. this._username = "";
  47. this._password = "";
  48. };
  49. dojo.hostenv.CurlRequest.prototype.open = function (method, url, async, username, password) {
  50. this._method = method;
  51. this._url = url;
  52. if (async) {
  53. this._async = async;
  54. }
  55. if (username) {
  56. this._username = username;
  57. }
  58. if (password) {
  59. this._password = password;
  60. }
  61. };
  62. dojo.hostenv.CurlRequest.prototype.setRequestHeader = function (label, value) {
  63. switch (label) {
  64.   case "Referer":
  65. this._referrer = value;
  66. break;
  67.   case "content-type":
  68. break;
  69.   default:
  70. this._headers.push(label + "=" + value);
  71. break;
  72. }
  73. };
  74. dojo.hostenv.CurlRequest.prototype.getAllResponseHeaders = function () {
  75. return this._responseHeader;
  76. };
  77. dojo.hostenv.CurlRequest.prototype.getResponseHeader = function (headerLabel) {
  78. return this._responseHeaders[headerLabel];
  79. };
  80. dojo.hostenv.CurlRequest.prototype.send = function (content) {
  81. this.readyState = 1;
  82. if (this.onreadystatechange) {
  83. this.onreadystatechange.call(this);
  84. }
  85. var query = {sS:""};
  86. if (this._referrer) {
  87. query.e = this._referrer;
  88. }
  89. if (this._headers.length) {
  90. query.H = this._headers.join("&");
  91. }
  92. if (this._username) {
  93. if (this._password) {
  94. query.u = this._username + ":" + this._password;
  95. } else {
  96. query.u = this._username;
  97. }
  98. }
  99. if (content) {
  100. query.d = this.content;
  101. if (this._method != "POST") {
  102. query.G = "";
  103. }
  104. }
  105. if (this._method == "HEAD") {
  106. query.I = "";
  107. } else {
  108. if (this._save) {
  109. query.I = "";
  110. } else {
  111. query.i = "";
  112. }
  113. }
  114. var system = widget.system(dojo.hostenv.CurlRequest._formatCall(query, this._url), null);
  115. this.readyState = 2;
  116. if (this.onreadystatechange) {
  117. this.onreadystatechange.call(this);
  118. }
  119. if (system.errorString) {
  120. this.responseText = system.errorString;
  121. this.status = 0;
  122. } else {
  123. if (this._save) {
  124. this._responseHeader = system.outputString;
  125. } else {
  126. var split = system.outputString.replace(/r/g, "").split("nn", 2);
  127. this._responseHeader = split[0];
  128. this.responseText = split[1];
  129. }
  130. split = this._responseHeader.split("n");
  131. this.statusText = split.shift();
  132. this.status = this.statusText.split(" ")[1];
  133. for (var i = 0, header; header = split[i]; i++) {
  134. var header_split = header.split(": ", 2);
  135. this._responseHeaders[header_split[0]] = header_split[1];
  136. }
  137. if (this._save) {
  138. widget.system("/bin/mkdir cache", null);
  139. this._fileName = this._url.split("/").pop().replace(/W/g, "");
  140. this._fileName += "." + this._responseHeaders["Content-Type"].replace(/[rn]/g, "").split("/").pop();
  141. delete query.I;
  142. query.o = "cache/" + this._fileName;
  143. system = widget.system(dojo.hostenv.CurlRequest._formatCall(query, this._url), null);
  144. if (!system.errorString) {
  145. this.responseText = "cache/" + this._fileName;
  146. }
  147. } else {
  148. if (this._method == "HEAD") {
  149. this.responseText = this._responseHeader;
  150. }
  151. }
  152. }
  153. this.readyState = 4;
  154. if (this.onreadystatechange) {
  155. this.onreadystatechange.call(this);
  156. }
  157. };
  158. dojo.hostenv.CurlRequest._formatCall = function (query, url) {
  159. var call = ["/usr/bin/curl"];
  160. for (var key in query) {
  161. if (query[key] != "") {
  162. call.push("-" + key + " '" + query[key].replace(/'/g, "'") + "'");
  163. } else {
  164. call.push("-" + key);
  165. }
  166. }
  167. call.push("'" + url.replace(/'/g, "'") + "'");
  168. return call.join(" ");
  169. };
  170. dojo.hostenv.exit = function () {
  171. if (widget.system) {
  172. widget.system("/bin/rm -rf cache/*", null);
  173. }
  174. };