axios-wrapper.js 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157
  1. /* eslint-disable no-console */
  2. /* eslint-disable no-param-reassign */
  3. import { get, isObject, isArray } from 'lodash-es'
  4. import Axios from 'axios'
  5. import { trimData, isNullOrUndefined } from './util-methods'
  6. import { ErrorCode } from './error-code'
  7. let currentRequests = 0
  8. export class AxiosWrapper {
  9. constructor({ baseUrl = import.meta.env.VITE_APP_BASE_API, unwrap = true } = {}) {
  10. this.baseUrl = baseUrl
  11. this.unwrap = unwrap
  12. }
  13. baseUrl
  14. unwrap
  15. // 替换uri中的参数变量
  16. static merge(uri, query) {
  17. if (!uri.includes(':')) {
  18. return uri
  19. }
  20. const keys = []
  21. const regexp = /\/:([a-z0-9_]+)/gi
  22. let res
  23. // eslint-disable-next-line no-cond-assign
  24. while ((res = regexp.exec(uri)) != null) {
  25. keys.push(res[1])
  26. }
  27. keys.forEach((key) => {
  28. const val = get(query, key)
  29. if (!isNullOrUndefined(val)) {
  30. uri = uri.replace(`:${key}`, `${val}`)
  31. }
  32. })
  33. return uri
  34. }
  35. // 新函数,重新生成url,并且把参数拼进uri中
  36. static getUriWithQuery(uri, query) {
  37. if (!uri || !query) return uri
  38. uri = `${uri}?`
  39. const arr = []
  40. for (const i in query) {
  41. const val = query[i]
  42. if (isArray(val)) {
  43. for (const v of val) {
  44. const str = `${i}=${v}`
  45. arr.push(str)
  46. }
  47. } else {
  48. const str = `${i}=${val}`
  49. arr.push(str)
  50. }
  51. }
  52. const sign = '&'
  53. uri = `${uri}${arr.join(sign)}`
  54. return uri
  55. }
  56. $get(uri, query, options) {
  57. return this.$request(uri, undefined, query, options)
  58. }
  59. $post(uri, data = {}, query, options) {
  60. return this.$request(uri, data, query, options)
  61. }
  62. $delete(uri, data = {}, query, options = {}) {
  63. options = { ...options, method: 'delete' }
  64. return this.$request(uri, data, query, options)
  65. }
  66. async $request(uri, data, query, options = {}) {
  67. // 此处需要重写,因为现在出现了同一个名称的变量要出现多次并且是不同的值 的情况
  68. // if (query && isObject(query)) {
  69. // const keys = Object.keys(query)
  70. // for (const key of keys) {
  71. // const val = get(query, key)
  72. // if (val === '') {
  73. // delete query[key]
  74. // }
  75. // }
  76. // }
  77. /**
  78. * 需要处理 query,options
  79. * query: 将值拼入uri中
  80. * options保持原数据即可,一般不会用
  81. */
  82. const url = AxiosWrapper.getUriWithQuery(uri, query)
  83. // if (isObject(query) && isObject(options)) {
  84. // options = { ...options, params: query, method: 'get' }
  85. // } else if (isObject(query) && !query.params) {
  86. // options = { params: query }
  87. // } else if (isObject(query) && query.params) {
  88. // options = query
  89. // }
  90. // if (!options) options = {}
  91. // if (options.params) options.params = trimData(options.params, null, null)
  92. // const params = get(options, 'params')
  93. // const url = AxiosWrapper.merge(uri, params)
  94. currentRequests += 1
  95. // Indicator.open({
  96. // spinnerType: 'fading-circle',
  97. // });
  98. try {
  99. let returnData
  100. const axios = Axios.create({
  101. baseURL: this.baseUrl,
  102. withCredentials: true
  103. })
  104. // if (util.token && util.token !== null) axios.defaults.headers.common.Authorization = util.token;
  105. const token = localStorage.getItem('webToken')
  106. const apiToken = localStorage.getItem('apiToken')
  107. if (token) axios.defaults.headers.common['token'] = token
  108. if (apiToken) axios.defaults.headers.common['api-token'] = apiToken
  109. const res = await axios.request({
  110. method: isNullOrUndefined(data) ? 'get' : 'post',
  111. url,
  112. data,
  113. responseType: 'json',
  114. ...options
  115. })
  116. const returnRes = res.data
  117. const { errcode, errmsg, details } = returnRes
  118. if (errcode) {
  119. console.warn(`[${uri}] fail: ${errcode}-${errmsg} ${details}`)
  120. return returnRes
  121. }
  122. // unwrap data
  123. if (this.unwrap) {
  124. returnData = returnRes
  125. }
  126. // 处理apiToken
  127. const { apiToken: at, ...others } = returnData
  128. if (at) localStorage.setItem('apiToken', at)
  129. return others
  130. } catch (err) {
  131. let errmsg = '接口请求失败,请稍后重试'
  132. if (err.response) {
  133. const { status } = err.response
  134. if (status === 401) errmsg = '用户认证失败,请重新登录'
  135. if (status === 403) errmsg = '当前用户不允许执行该操作'
  136. }
  137. console.error(
  138. `[AxiosWrapper] 接口请求失败: ${err.config && err.config.url} -
  139. ${err.message}`
  140. )
  141. return { errcode: ErrorCode.SERVICE_FAULT, errmsg, details: err.message }
  142. } finally {
  143. /* eslint-disable */
  144. currentRequests -= 1
  145. if (currentRequests <= 0) {
  146. currentRequests = 0
  147. // Indicator.close();
  148. }
  149. }
  150. }
  151. }