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
axios.defaults.timeout = 5000;
axios.defaults.withCredentials = true;
axios.defaults.xsrfHeaderName = xsrfHeaderName;
axios.defaults.xsrfCookieName = xsrfHeaderName;

/**
 * @param {*} info 提示函数
 */
水落(YangLei)'s avatar
水落(YangLei) committed
17
function loadResponseInterceptor({ router }) {
18 19
    axios.interceptors.request.use(
        function(config) {
水落(YangLei)'s avatar
水落(YangLei) committed
20
            console.log(getToken(), config);
21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43
            // 在发送请求之前做些什么
            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;
            }
水落(YangLei)'s avatar
水落(YangLei) committed
44 45 46 47

            if (data.code === 'error.system.authc') {
                router.push('/login');
            }
48 49 50 51
            notification.error({
                message: data.code,
                description: h => h('pre', data.message),
            });
水落(YangLei)'s avatar
水落(YangLei) committed
52

53 54 55 56 57 58 59 60 61 62 63 64 65
            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
66 67 68

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

/**
 * axios请求
 * @param url 请求地址
 * @param method {METHOD} http method
 * @param params 请求参数
 * @param config token等信息
 * @returns {Promise<AxiosResponse<T>>}
 */
async function request(url, method, params, config) {
84 85 86 87 88 89 90 91 92 93 94 95
    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
96 97 98
}

/**
99 100 101
 * 解析 url 中的参数
 * @param url
 * @returns {Object}
wb-ct393452's avatar
wb-ct393452 committed
102
 */
103 104 105 106 107 108 109 110 111 112 113 114 115 116 117
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
118 119
}

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

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

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

133 134
function checkAuthorization() {
    return !!getToken();
wb-ct393452's avatar
wb-ct393452 committed
135 136
}

水落(YangLei)'s avatar
水落(YangLei) committed
137
export { METHOD, request, parseUrlParams, loadResponseInterceptor, setToken, checkAuthorization, clearToken };