Axios.ts 7.1 KB
Newer Older
1
import type { AxiosRequestConfig, AxiosInstance, AxiosResponse, AxiosError } from 'axios';
2
import type { RequestOptions, Result, UploadFileParams } from '/#/axios';
V
Vben 已提交
3
import type { CreateAxiosOptions } from './axiosTransform';
陈文彬 已提交
4
import axios from 'axios';
V
Vben 已提交
5
import qs from 'qs';
陈文彬 已提交
6 7
import { AxiosCanceler } from './axiosCancel';
import { isFunction } from '/@/utils/is';
8
import { cloneDeep } from 'lodash-es';
J
jq 已提交
9
import { ContentTypeEnum } from '/@/enums/httpEnum';
10
import { RequestEnum } from '/@/enums/httpEnum';
陈文彬 已提交
11 12 13 14

export * from './axiosTransform';

/**
15
 * @description:  axios module
陈文彬 已提交
16 17 18
 */
export class VAxios {
  private axiosInstance: AxiosInstance;
V
vben 已提交
19
  private readonly options: CreateAxiosOptions;
陈文彬 已提交
20 21 22 23 24 25 26 27

  constructor(options: CreateAxiosOptions) {
    this.options = options;
    this.axiosInstance = axios.create(options);
    this.setupInterceptors();
  }

  /**
28
   * @description:  Create axios instance
陈文彬 已提交
29 30 31 32 33 34 35 36 37 38 39 40 41 42 43
   */
  private createAxios(config: CreateAxiosOptions): void {
    this.axiosInstance = axios.create(config);
  }

  private getTransform() {
    const { transform } = this.options;
    return transform;
  }

  getAxios(): AxiosInstance {
    return this.axiosInstance;
  }

  /**
44
   * @description: Reconfigure axios
陈文彬 已提交
45 46 47 48 49 50 51 52 53
   */
  configAxios(config: CreateAxiosOptions) {
    if (!this.axiosInstance) {
      return;
    }
    this.createAxios(config);
  }

  /**
54
   * @description: Set general header
陈文彬 已提交
55 56 57 58 59 60 61 62 63
   */
  setHeader(headers: any): void {
    if (!this.axiosInstance) {
      return;
    }
    Object.assign(this.axiosInstance.defaults.headers, headers);
  }

  /**
J
Jim 已提交
64
   * @description: Interceptor configuration 拦截器配置
陈文彬 已提交
65 66 67 68 69 70 71 72 73 74 75 76 77 78 79
   */
  private setupInterceptors() {
    const transform = this.getTransform();
    if (!transform) {
      return;
    }
    const {
      requestInterceptors,
      requestInterceptorsCatch,
      responseInterceptors,
      responseInterceptorsCatch,
    } = transform;

    const axiosCanceler = new AxiosCanceler();

80
    // Request interceptor configuration processing
陈文彬 已提交
81
    this.axiosInstance.interceptors.request.use((config: AxiosRequestConfig) => {
V
vben 已提交
82
      // If cancel repeat request is turned on, then cancel repeat request is prohibited
83 84
      // @ts-ignore
      const { ignoreCancelToken } = config.requestOptions;
V
Vben 已提交
85 86 87 88 89 90
      const ignoreCancel =
        ignoreCancelToken !== undefined
          ? ignoreCancelToken
          : this.options.requestOptions?.ignoreCancelToken;

      !ignoreCancel && axiosCanceler.addPending(config);
陈文彬 已提交
91
      if (requestInterceptors && isFunction(requestInterceptors)) {
92
        config = requestInterceptors(config, this.options);
陈文彬 已提交
93 94 95 96
      }
      return config;
    }, undefined);

97
    // Request interceptor error capture
陈文彬 已提交
98 99 100 101
    requestInterceptorsCatch &&
      isFunction(requestInterceptorsCatch) &&
      this.axiosInstance.interceptors.request.use(undefined, requestInterceptorsCatch);

102
    // Response result interceptor processing
陈文彬 已提交
103 104 105 106 107 108 109 110
    this.axiosInstance.interceptors.response.use((res: AxiosResponse<any>) => {
      res && axiosCanceler.removePending(res.config);
      if (responseInterceptors && isFunction(responseInterceptors)) {
        res = responseInterceptors(res);
      }
      return res;
    }, undefined);

111
    // Response result interceptor error capture
陈文彬 已提交
112 113
    responseInterceptorsCatch &&
      isFunction(responseInterceptorsCatch) &&
C
Captain 已提交
114 115
      this.axiosInstance.interceptors.response.use(undefined, (error) => {
        // @ts-ignore
116
        return responseInterceptorsCatch(this.axiosInstance, error);
C
Captain 已提交
117
      });
陈文彬 已提交
118 119
  }

J
jq 已提交
120
  /**
121
   * @description:  File Upload
J
jq 已提交
122 123 124
   */
  uploadFile<T = any>(config: AxiosRequestConfig, params: UploadFileParams) {
    const formData = new window.FormData();
125 126 127 128 129 130 131
    const customFilename = params.name || 'file';

    if (params.filename) {
      formData.append(customFilename, params.file, params.filename);
    } else {
      formData.append(customFilename, params.file);
    }
J
jq 已提交
132 133 134

    if (params.data) {
      Object.keys(params.data).forEach((key) => {
135
        const value = params.data![key];
J
jq 已提交
136 137 138 139 140 141 142
        if (Array.isArray(value)) {
          value.forEach((item) => {
            formData.append(`${key}[]`, item);
          });
          return;
        }

143
        formData.append(key, params.data![key]);
J
jq 已提交
144 145 146 147 148 149 150 151 152
      });
    }

    return this.axiosInstance.request<T>({
      ...config,
      method: 'POST',
      data: formData,
      headers: {
        'Content-type': ContentTypeEnum.FORM_DATA,
V
vben 已提交
153
        // @ts-ignore
J
jq 已提交
154 155 156 157
        ignoreCancelToken: true,
      },
    });
  }
陈文彬 已提交
158

159 160
  // support form-data
  supportFormData(config: AxiosRequestConfig) {
161
    const headers = config.headers || this.options.headers;
162 163 164 165 166 167 168 169 170 171 172 173
    const contentType = headers?.['Content-Type'] || headers?.['content-type'];

    if (
      contentType !== ContentTypeEnum.FORM_URLENCODED ||
      !Reflect.has(config, 'data') ||
      config.method?.toUpperCase() === RequestEnum.GET
    ) {
      return config;
    }

    return {
      ...config,
最后 已提交
174
      data: qs.stringify(config.data, { arrayFormat: 'brackets' }),
175 176 177
    };
  }

V
Vben 已提交
178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193
  get<T = any>(config: AxiosRequestConfig, options?: RequestOptions): Promise<T> {
    return this.request({ ...config, method: 'GET' }, options);
  }

  post<T = any>(config: AxiosRequestConfig, options?: RequestOptions): Promise<T> {
    return this.request({ ...config, method: 'POST' }, options);
  }

  put<T = any>(config: AxiosRequestConfig, options?: RequestOptions): Promise<T> {
    return this.request({ ...config, method: 'PUT' }, options);
  }

  delete<T = any>(config: AxiosRequestConfig, options?: RequestOptions): Promise<T> {
    return this.request({ ...config, method: 'DELETE' }, options);
  }

陈文彬 已提交
194
  request<T = any>(config: AxiosRequestConfig, options?: RequestOptions): Promise<T> {
195
    let conf: CreateAxiosOptions = cloneDeep(config);
196
    // cancelToken 如果被深拷贝,会导致最外层无法使用cancel方法来取消请求
V
vben 已提交
197 198
    if (config.cancelToken) {
      conf.cancelToken = config.cancelToken;
199
    }
V
vben 已提交
200

陈文彬 已提交
201 202 203 204 205 206
    const transform = this.getTransform();

    const { requestOptions } = this.options;

    const opt: RequestOptions = Object.assign({}, requestOptions, options);

207
    const { beforeRequestHook, requestCatchHook, transformResponseHook } = transform || {};
陈文彬 已提交
208 209 210
    if (beforeRequestHook && isFunction(beforeRequestHook)) {
      conf = beforeRequestHook(conf, opt);
    }
211
    conf.requestOptions = opt;
212 213

    conf = this.supportFormData(conf);
214

陈文彬 已提交
215 216 217 218
    return new Promise((resolve, reject) => {
      this.axiosInstance
        .request<any, AxiosResponse<Result>>(conf)
        .then((res: AxiosResponse<Result>) => {
219
          if (transformResponseHook && isFunction(transformResponseHook)) {
220
            try {
221
              const ret = transformResponseHook(res, opt);
222 223 224 225
              resolve(ret);
            } catch (err) {
              reject(err || new Error('request error!'));
            }
陈文彬 已提交
226 227
            return;
          }
228
          resolve(res as unknown as Promise<T>);
陈文彬 已提交
229
        })
230
        .catch((e: Error | AxiosError) => {
V
Vben 已提交
231
          if (requestCatchHook && isFunction(requestCatchHook)) {
232
            reject(requestCatchHook(e, opt));
陈文彬 已提交
233 234
            return;
          }
235 236 237
          if (axios.isAxiosError(e)) {
            // rewrite error message from axios in here
          }
陈文彬 已提交
238 239 240 241 242
          reject(e);
        });
    });
  }
}