requestUtil.js 3.75 KB
Newer Older
1 2 3 4
import axios from 'axios';
import { notification } from 'ant-design-vue';
import md5 from 'crypto-js/md5';
import { langUtil } from '.';
wb-ct393452's avatar
wb-ct393452 committed
5 6

// 跨域认证信息 header 名
7
const xsrfHeaderName = 'Authorization';
wb-ct393452's avatar
wb-ct393452 committed
8

9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59
axios.defaults.timeout = 5000;
axios.defaults.withCredentials = true;
axios.defaults.xsrfHeaderName = xsrfHeaderName;
axios.defaults.xsrfCookieName = xsrfHeaderName;

/**
 * @param {*} info 提示函数
 */
function loadResponseInterceptor() {
    axios.interceptors.request.use(
        function(config) {
            // 在发送请求之前做些什么
            config.headers = {
                ...config.headers,
                Authorization: getToken(),
                'X-Access-Lang': langUtil.get() || 'zh_CN',
            };
            return config;
        },
        function(error) {
            // 对请求错误做些什么
            return Promise.reject(error);
        },
    );

    // 添加响应拦截器
    axios.interceptors.response.use(
        function(response) {
            const { data } = response;
            // 2xx 范围内的状态码都会触发该函数。
            // 对响应数据做点什么
            if (data.code === 'sys.success') {
                return data.data;
            }
            notification.error({
                message: data.code,
                description: h => h('pre', data.message),
            });
            return Promise.reject(data.message);
        },
        function(error) {
            // 超出 2xx 范围的状态码都会触发该函数。
            // 对响应错误做点什么
            notification.error({
                message: `${error.response.status} ${error.response.statusText}`,
                description: h => h('pre', error.message),
            });
            return Promise.reject(error);
        },
    );
}
wb-ct393452's avatar
wb-ct393452 committed
60 61 62

// 认证类型
const AUTH_TYPE = {
63 64 65 66 67
    BEARER: 'Bearer',
    BASIC: 'basic',
    AUTH1: 'auth1',
    AUTH2: 'auth2',
};
wb-ct393452's avatar
wb-ct393452 committed
68 69 70

// http method
const METHOD = {
71 72 73 74 75
    GET: 'get',
    POST: 'post',
    PUT: 'put',
    DELETE: 'delete',
};
wb-ct393452's avatar
wb-ct393452 committed
76 77 78 79 80 81 82 83 84 85

/**
 * axios请求
 * @param url 请求地址
 * @param method {METHOD} http method
 * @param params 请求参数
 * @param config token等信息
 * @returns {Promise<AxiosResponse<T>>}
 */
async function request(url, method, params, config) {
86 87 88 89 90 91 92 93 94 95 96 97
    switch (method) {
        case METHOD.GET:
            return axios.get(url, { params, ...config });
        case METHOD.POST:
            return axios.post(url, params, config);
        case METHOD.PUT:
            return axios.put(url, params, config);
        case METHOD.DELETE:
            return axios.delete(url, { params, ...config });
        default:
            return axios.get(url, { params, ...config });
    }
wb-ct393452's avatar
wb-ct393452 committed
98 99 100
}

/**
101 102 103
 * 解析 url 中的参数
 * @param url
 * @returns {Object}
wb-ct393452's avatar
wb-ct393452 committed
104
 */
105 106 107 108 109 110 111 112 113 114 115 116 117 118 119
function parseUrlParams(url) {
    const params = {};
    if (!url || url === '' || typeof url !== 'string') {
        return params;
    }
    const paramsStr = url.split('?')[1];
    if (!paramsStr) {
        return params;
    }
    const paramsArr = paramsStr.replace(/&|=/g, ' ').split(' ');
    for (let i = 0; i < paramsArr.length / 2; i++) {
        const value = paramsArr[i * 2 + 1];
        params[paramsArr[i * 2]] = value === 'true' ? true : value === 'false' ? false : value;
    }
    return params;
wb-ct393452's avatar
wb-ct393452 committed
120 121
}

122 123 124
const TOKEN_KEY = md5('TOKEN').toString();
function getToken() {
    return window.sessionStorage.getItem(TOKEN_KEY) ?? '';
wb-ct393452's avatar
wb-ct393452 committed
125 126
}

127 128
function setToken(val) {
    window.sessionStorage.setItem(TOKEN_KEY, val);
wb-ct393452's avatar
wb-ct393452 committed
129 130
}

131 132
function clearToken() {
    window.sessionStorage.removeItem(TOKEN_KEY);
wb-ct393452's avatar
wb-ct393452 committed
133 134
}

135 136
function checkAuthorization() {
    return !!getToken();
wb-ct393452's avatar
wb-ct393452 committed
137 138 139
}

export {
140 141 142 143 144 145 146 147 148
    METHOD,
    AUTH_TYPE,
    request,
    parseUrlParams,
    loadResponseInterceptor,
    setToken,
    checkAuthorization,
    clearToken,
};