123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157 |
- /* eslint-disable no-console */
- /* eslint-disable no-param-reassign */
- import { get, isObject, isArray } from 'lodash-es'
- import Axios from 'axios'
- import { trimData, isNullOrUndefined } from './util-methods'
- import { ErrorCode } from './error-code'
- let currentRequests = 0
- export class AxiosWrapper {
- constructor({ baseUrl = import.meta.env.VITE_APP_BASE_API, unwrap = true } = {}) {
- this.baseUrl = baseUrl
- this.unwrap = unwrap
- }
- baseUrl
- unwrap
- // 替换uri中的参数变量
- static merge(uri, query) {
- if (!uri.includes(':')) {
- return uri
- }
- const keys = []
- const regexp = /\/:([a-z0-9_]+)/gi
- let res
- // eslint-disable-next-line no-cond-assign
- while ((res = regexp.exec(uri)) != null) {
- keys.push(res[1])
- }
- keys.forEach((key) => {
- const val = get(query, key)
- if (!isNullOrUndefined(val)) {
- uri = uri.replace(`:${key}`, `${val}`)
- }
- })
- return uri
- }
- // 新函数,重新生成url,并且把参数拼进uri中
- static getUriWithQuery(uri, query) {
- if (!uri || !query) return uri
- uri = `${uri}?`
- const arr = []
- for (const i in query) {
- const val = query[i]
- if (isArray(val)) {
- for (const v of val) {
- const str = `${i}=${v}`
- arr.push(str)
- }
- } else {
- const str = `${i}=${val}`
- arr.push(str)
- }
- }
- const sign = '&'
- uri = `${uri}${arr.join(sign)}`
- return uri
- }
- $get(uri, query, options) {
- return this.$request(uri, undefined, query, options)
- }
- $post(uri, data = {}, query, options) {
- return this.$request(uri, data, query, options)
- }
- $delete(uri, data = {}, query, options = {}) {
- options = { ...options, method: 'delete' }
- return this.$request(uri, data, query, options)
- }
- async $request(uri, data, query, options = {}) {
- // 此处需要重写,因为现在出现了同一个名称的变量要出现多次并且是不同的值 的情况
- // if (query && isObject(query)) {
- // const keys = Object.keys(query)
- // for (const key of keys) {
- // const val = get(query, key)
- // if (val === '') {
- // delete query[key]
- // }
- // }
- // }
- /**
- * 需要处理 query,options
- * query: 将值拼入uri中
- * options保持原数据即可,一般不会用
- */
- const url = AxiosWrapper.getUriWithQuery(uri, query)
- // if (isObject(query) && isObject(options)) {
- // options = { ...options, params: query, method: 'get' }
- // } else if (isObject(query) && !query.params) {
- // options = { params: query }
- // } else if (isObject(query) && query.params) {
- // options = query
- // }
- // if (!options) options = {}
- // if (options.params) options.params = trimData(options.params, null, null)
- // const params = get(options, 'params')
- // const url = AxiosWrapper.merge(uri, params)
- currentRequests += 1
- // Indicator.open({
- // spinnerType: 'fading-circle',
- // });
- try {
- let returnData
- const axios = Axios.create({
- baseURL: this.baseUrl,
- withCredentials: true
- })
- // if (util.token && util.token !== null) axios.defaults.headers.common.Authorization = util.token;
- const token = localStorage.getItem('webToken')
- const apiToken = localStorage.getItem('apiToken')
- if (token) axios.defaults.headers.common['token'] = token
- if (apiToken) axios.defaults.headers.common['api-token'] = apiToken
- const res = await axios.request({
- method: isNullOrUndefined(data) ? 'get' : 'post',
- url,
- data,
- responseType: 'json',
- ...options
- })
- const returnRes = res.data
- const { errcode, errmsg, details } = returnRes
- if (errcode) {
- console.warn(`[${uri}] fail: ${errcode}-${errmsg} ${details}`)
- return returnRes
- }
- // unwrap data
- if (this.unwrap) {
- returnData = returnRes
- }
- // 处理apiToken
- const { apiToken: at, ...others } = returnData
- if (at) localStorage.setItem('apiToken', at)
- return others
- } catch (err) {
- let errmsg = '接口请求失败,请稍后重试'
- if (err.response) {
- const { status } = err.response
- if (status === 401) errmsg = '用户认证失败,请重新登录'
- if (status === 403) errmsg = '当前用户不允许执行该操作'
- }
- console.error(
- `[AxiosWrapper] 接口请求失败: ${err.config && err.config.url} -
- ${err.message}`
- )
- return { errcode: ErrorCode.SERVICE_FAULT, errmsg, details: err.message }
- } finally {
- /* eslint-disable */
- currentRequests -= 1
- if (currentRequests <= 0) {
- currentRequests = 0
- // Indicator.close();
- }
- }
- }
- }
|