http.js 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205
  1. var common = require('./common.js');
  2. var storage = require('./storage.js');
  3. var config = require('./config.js');
  4. var params = require('./params.js')
  5. var helpConfig = require('./help_config.js');
  6. // 检查token是否失效 如失效 清除缓存 提示重新登录
  7. // 402: 解析token出错 403: token格式错误 404: 公共声明中缺少必要字段 405: token验证失败
  8. function _checkTokenValid(res) {
  9. if (
  10. res.data.code === 402 ||
  11. res.data.code === 403 ||
  12. res.data.code === 404 ||
  13. res.data.code === 405 ||
  14. res.data.code === 300 ||
  15. res.data.code === 302 ||
  16. res.data.code === 303 ||
  17. res.data.code === 304 ||
  18. res.data.code === 305 ||
  19. res.data.code === 306
  20. ) {
  21. uni.clearStorageSync();
  22. uni.reLaunch({
  23. url: '/pages/login/login'
  24. });
  25. return false;
  26. }
  27. return true;
  28. }
  29. function getRequest(url, data, successCallBack, failCallBack) {
  30. if (!failCallBack) {
  31. failCallBack = function () {};
  32. }
  33. var hostApi = ''
  34. if(url.indexOf('https') === -1) {
  35. hostApi = storage.getApiUrl();
  36. }
  37. var apiUrl = hostApi!='' ? (hostApi + url) : url
  38. if (apiUrl.indexOf('?') > 0) {
  39. apiUrl = apiUrl + '&' + common.obj2UrlQuery(data);
  40. } else {
  41. apiUrl = '?' + common.obj2UrlQuery(data);
  42. }
  43. uni.request({
  44. url: apiUrl + '?token=' + storage.getApiToken(),
  45. method: 'GET',
  46. success: function (res) {
  47. uni.hideLoading();
  48. if (_checkTokenValid(res)) {
  49. successCallBack(res);
  50. }
  51. },
  52. fail: function (res) {
  53. uni.hideLoading();
  54. uni.showModal({
  55. title: '错误',
  56. content: '网络错误',
  57. showCancel: false
  58. });
  59. if (failCallBack) {
  60. failCallBack(res);
  61. }
  62. }
  63. });
  64. }
  65. function getHelpRequest(url, data, successCallBack, failCallBack) {
  66. if (!failCallBack) {
  67. failCallBack = function () {};
  68. }
  69. if (url.indexOf('?') > 0) {
  70. url = url + '&' + common.obj2UrlQuery(data);
  71. } else {
  72. url = '?' + common.obj2UrlQuery(data);
  73. }
  74. uni.request({
  75. url: url + '&token=' + storage.getApiToken(),
  76. method: 'GET',
  77. success: function (res) {
  78. uni.hideLoading();
  79. if (_checkTokenValid(res)) {
  80. successCallBack(res);
  81. }
  82. },
  83. fail: function (res) {
  84. uni.hideLoading();
  85. uni.showModal({
  86. title: '错误',
  87. content: '网络错误',
  88. showCancel: false
  89. });
  90. if (failCallBack) {
  91. failCallBack(res);
  92. }
  93. }
  94. });
  95. }
  96. function postRequest(url, data, successCallBack, failCallBack) {
  97. if (!failCallBack) {
  98. failCallBack = function () {};
  99. }
  100. var hostApi = ''
  101. if(url.indexOf('https') === -1) {
  102. hostApi = storage.getApiUrl();
  103. }
  104. var apiUrl = hostApi != '' ? (hostApi + url) : url
  105. var header = {
  106. 'content-type': 'application/json',
  107. 'X-Token': storage.getApiToken()
  108. }
  109. var locale = uni.getLocale()
  110. data.language = (locale==='zh-Hans'||locale==='zh')?'':'en'
  111. uni.request({
  112. url: apiUrl + '?token=' + storage.getApiToken(),
  113. data: data,
  114. header: header,
  115. method: 'POST',
  116. // language: language,
  117. success: function (res) {
  118. //wx.hideLoading();
  119. if (_checkTokenValid(res)) {
  120. successCallBack(res);
  121. }
  122. },
  123. fail: function (res) {
  124. uni.hideLoading();
  125. failCallBack(res);
  126. }
  127. });
  128. }
  129. function postHelpRequest(url, data, successCallBack, failCallBack) {
  130. if (!failCallBack) {
  131. failCallBack = function () {};
  132. }
  133. if (url.indexOf('?') > 0) {
  134. url = url + '&token=' + storage.getApiToken();
  135. } else {
  136. url = url + '?token=' + storage.getApiToken();
  137. }
  138. uni.request({
  139. url: url,
  140. data: data,
  141. header: {
  142. 'content-type': 'application/json'
  143. },
  144. method: 'POST',
  145. success: function (res) {
  146. //wx.hideLoading();
  147. if (_checkTokenValid(res)) {
  148. successCallBack(res);
  149. }
  150. },
  151. fail: function (res) {
  152. uni.hideLoading();
  153. failCallBack(res);
  154. }
  155. });
  156. }
  157. function getApi(url, data, successCallBack, failCallBack) {
  158. getRequest(url, data, successCallBack, failCallBack);
  159. }
  160. function postApi(url, data, successCallBack, failCallBack) {
  161. postRequest(url, data, successCallBack, failCallBack);
  162. }
  163. function getAppConfig(callback = () => {}) {
  164. console.log('getAppConfig ...');
  165. //const accountInfo = uni.getAccountInfoSync();
  166. const pData = {
  167. appid: "wxddbcc3709026525e",
  168. terminal: 'wx_app'
  169. };
  170. getApi(helpConfig.API_INDEX_APP_CONFIG, pData, function (resp) {
  171. if (resp.data.code === 200) {
  172. const appConfig = resp.data.data.appConfig;
  173. storage.setAppConfig(appConfig);
  174. // wx.setNavigationBarTitle({
  175. // title: appConfig.app_name,
  176. // })
  177. callback(appConfig);
  178. }
  179. });
  180. }
  181. /**
  182. * 上报formid
  183. */
  184. function reportFormId(formId) {
  185. //const accountInfo = uni.getAccountInfoSync();
  186. var postData = {
  187. formId: formId,
  188. appid: "wxddbcc3709026525e"
  189. };
  190. postApi(config.API_FORMID_REPORT, postData, function () {});
  191. }
  192. module.exports = {
  193. getAppConfig: getAppConfig,
  194. getRequest: getRequest,
  195. getHelpRequest: getHelpRequest,
  196. postHelpRequest: postHelpRequest,
  197. postRequest: postRequest,
  198. getApi: getApi,
  199. postApi: postApi,
  200. reportFormId: reportFormId
  201. };