api-service.js 8.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252
  1. (function($) {
  2. var publish_version = false;
  3. var agentName = "wlyyAgentForDoc";
  4. var server, userAgent, loginUrl, imserver, socketUrl, imgServer;
  5. var IMEI = localStorage.getItem('WLYY_IMEI') || uuid(16, 16)
  6. localStorage.setItem('WLYY_IMEI', IMEI)
  7. $.support.cors = true;
  8. if(publish_version) { // 生产环境配置
  9. server = "http://172.19.103.88:9092/wlyy/"
  10. imserver = "http://172.19.103.88:3000/api/v2";
  11. socketUrl = "http://172.19.103.88:3000";
  12. loginUrl = "login.html";
  13. imgServer = "";
  14. } else { // 测试环境配置
  15. server = "http://172.19.103.88:9092/wlyy/"
  16. imserver = "http://172.19.103.88:3000/api/v2";
  17. socketUrl = "http://172.19.103.88:3000";
  18. // server = "http://192.168.131.127:8060/"; //逸祥
  19. // server = "http://192.168.131.24:8080/"; //仕杰
  20. // imserver = "http://192.168.131.24:3000/api/v2"
  21. // socketUrl = "http://192.168.131.24:3000";
  22. loginUrl = "login.html";
  23. imgServer = "http://172.19.103.54/";
  24. }
  25. userAgent = localStorage.getItem(agentName)
  26. //hard code userAgent for test start
  27. //全科
  28. // userAgent = {"id":4800,"uid":"zbqD201703150222","imei":"864394010176834","token":"9b23e4ec0bcd3b9fa72a52f91544a4e9","platform":4,"hospital":"3502050100"}
  29. //健管
  30. // userAgent = {"id":4821,"uid":"zbqD201703150228","imei":"864394010176834","token":"73f5ace5c7d4cdb811f743902fd705d9","platform":4,"hospital":"3502050100"};
  31. // userAgent = JSON.stringify(userAgent);
  32. //hard code userAgent for test end
  33. if(userAgent) {
  34. try {
  35. userAgent = JSON.parse(userAgent)
  36. } catch(e) {
  37. toastr && toastr.warning("登录失效,请重新登录")
  38. toLoginPage()
  39. }
  40. } else {
  41. toLoginPage()
  42. }
  43. var isRelogined = sessionStorage.getItem('wlyy_relogin')
  44. // if(isRelogined && top !== window && location.href.indexOf("login.html") < 0) {
  45. if(isRelogined && location.href.indexOf("login.html") < 0){
  46. sessionStorage.removeItem('wlyy_relogin')
  47. top.location.reload(true)
  48. }
  49. function httpGet(url, options) {
  50. //发送ajax请求
  51. return new Promise(function(resolve, reject) {
  52. $.ajax(server + url,
  53. $.extend({}, {
  54. type: 'GET',
  55. dataType: 'JSON',
  56. beforeSend: function(request) {
  57. var agent = userAgent || {
  58. imei: localStorage.getItem('WLYY_IMEI'),
  59. platform: 4
  60. }
  61. request.setRequestHeader("userAgent", JSON.stringify(agent));
  62. },
  63. error: function(res) {
  64. reject(res)
  65. },
  66. success: function(res) {
  67. failCodeHandle(res)
  68. resolve(res)
  69. }
  70. }, options));
  71. })
  72. }
  73. function httpPost(url, options) {
  74. //发送ajax请求
  75. return new Promise(function(resolve, reject) {
  76. $.ajax(server + url,
  77. $.extend({}, {
  78. type: 'POST',
  79. dataType: 'JSON',
  80. beforeSend: function(request) {
  81. var agent = userAgent || {
  82. imei: localStorage.getItem('WLYY_IMEI')
  83. }
  84. request.setRequestHeader("userAgent", JSON.stringify(agent));
  85. },
  86. error: function(res) {
  87. reject(res)
  88. },
  89. success: function(res) {
  90. failCodeHandle(res)
  91. resolve(res)
  92. }
  93. }, options));
  94. })
  95. }
  96. function imHttpGet(url, options) {
  97. //发送ajax请求
  98. return new Promise(function(resolve, reject) {
  99. $.ajax(imserver + url,
  100. $.extend({}, {
  101. type: 'GET',
  102. dataType: 'JSON',
  103. beforeSend: function(request) {
  104. request.setRequestHeader("userAgent", JSON.stringify(userAgent));
  105. },
  106. error: function(res) {
  107. reject(res)
  108. },
  109. success: function(res) {
  110. failCodeHandle(res)
  111. resolve(res)
  112. }
  113. }, options));
  114. })
  115. }
  116. function imHttpPost(url, options) {
  117. //发送ajax请求
  118. return new Promise(function(resolve, reject) {
  119. $.ajax(imserver + url,
  120. $.extend({}, {
  121. type: 'POST',
  122. dataType: 'JSON',
  123. beforeSend: function(request) {
  124. request.setRequestHeader("userAgent", JSON.stringify(userAgent));
  125. },
  126. error: function(res) {
  127. reject(res)
  128. },
  129. success: function(res) {
  130. failCodeHandle(res)
  131. resolve(res)
  132. }
  133. }, options));
  134. })
  135. }
  136. function toLoginPage() {
  137. if(location.href.indexOf('login.html') > -1) {
  138. return;
  139. }
  140. setTimeout(function() {
  141. sessionStorage.setItem("wlyy_relogin", 1)
  142. top.location.replace(loginUrl + '?redirect_url=' + encodeURIComponent(top.location.href))
  143. }, 2000)
  144. }
  145. var count = 0;
  146. function failCodeHandle(res) {
  147. var tip = "";
  148. if(res.status == 999) {
  149. tip = "此账号已在别处登录,请重新登录";
  150. } else if(res.status == 998) {
  151. tip = "登录超时,请重新登录";
  152. } else if(res.status == 997) {
  153. tip = "此账号未登录,请先登录"
  154. }
  155. if(tip) {
  156. count ++;
  157. if(count == 1){
  158. toastr && toastr.warning(tip)
  159. toLoginPage()
  160. }
  161. }
  162. }
  163. function uuid(len, radix) {
  164. var chars = '0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz'.split('');
  165. var uuid = [],
  166. i;
  167. radix = radix || chars.length;
  168. if(len) {
  169. // Compact form
  170. for(i = 0; i < len; i++) uuid[i] = chars[0 | Math.random() * radix];
  171. } else {
  172. // rfc4122, version 4 form
  173. var r;
  174. // rfc4122 requires these characters
  175. uuid[8] = uuid[13] = uuid[18] = uuid[23] = '-';
  176. uuid[14] = '4';
  177. // Fill in random data. At i==19 set the high bits of clock sequence as
  178. // per rfc4122, sec. 4.1.5
  179. for(i = 0; i < 36; i++) {
  180. if(!uuid[i]) {
  181. r = 0 | Math.random() * 16;
  182. uuid[i] = chars[(i == 19) ? (r & 0x3) | 0x8 : r];
  183. }
  184. }
  185. }
  186. return uuid.join('');
  187. }
  188. /*
  189. * 获取图片路径方法修改
  190. */
  191. function getImgUrl(str) {
  192. if(typeof str != 'string') {
  193. return "";
  194. }
  195. if(str.length == 0) {
  196. return "";
  197. } else {
  198. if(str.indexOf("../") > -1) {
  199. //访问本地路径
  200. return str;
  201. } else if((str.indexOf("http://") > -1) || (str.indexOf("https://") > -1)) {
  202. return str;
  203. } else {
  204. //服务器上的图片路径
  205. return imgServer + str;
  206. }
  207. }
  208. }
  209. APIService = {
  210. agentName: agentName,
  211. server: server,
  212. imserver: imserver,
  213. socketUrl: socketUrl,
  214. userAgent: userAgent,
  215. httpGet: httpGet,
  216. httpPost: httpPost,
  217. imHttpGet: imHttpGet,
  218. imHttpPost: imHttpPost,
  219. getImgUrl: getImgUrl,
  220. loginIm: function(data){
  221. return imHttpPost('/users/login', data);
  222. },
  223. getDoctorInfo: function() {
  224. return httpGet('doctor/baseinfo');
  225. },
  226. getTeamInfo: function(doctor) {
  227. return httpGet('/doctor/admin-teams/team/' + doctor + '/teams');
  228. }
  229. }
  230. window.APIService = APIService;
  231. })(jQuery)