File size: 2,084 Bytes
873f10f ec6e4a1 |
1 2 3 4 5 6 7 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 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 |
import axios from 'axios';
import dns from 'dns';
import http from 'http';
import https from 'https';
import config from '../config/config.js';
// ==================== DNS & 代理统一配置 ====================
// 自定义 DNS 解析:优先 IPv4,失败则回退 IPv6
function customLookup(hostname, options, callback) {
dns.lookup(hostname, { ...options, family: 4 }, (err4, address4, family4) => {
if (!err4 && address4) {
return callback(null, address4, family4);
}
dns.lookup(hostname, { ...options, family: 6 }, (err6, address6, family6) => {
if (!err6 && address6) {
return callback(null, address6, family6);
}
callback(err4 || err6);
});
});
}
// 使用自定义 DNS 解析的 Agent(优先 IPv4,失败则 IPv6)
const httpAgent = new http.Agent({
lookup: customLookup,
keepAlive: true
});
const httpsAgent = new https.Agent({
lookup: customLookup,
keepAlive: true
});
// 统一构建代理配置
function buildProxyConfig() {
if (!config.proxy) return false;
try {
const proxyUrl = new URL(config.proxy);
return {
protocol: proxyUrl.protocol.replace(':', ''),
host: proxyUrl.hostname,
port: parseInt(proxyUrl.port, 10)
};
} catch {
return false;
}
}
// 为 axios 构建统一请求配置
export function buildAxiosRequestConfig({ method = 'POST', url, headers, data = null, timeout = config.timeout }) {
const axiosConfig = {
method,
url,
headers,
timeout,
httpAgent,
httpsAgent,
proxy: buildProxyConfig()
};
if (data !== null) axiosConfig.data = data;
return axiosConfig;
}
// 简单封装 axios 调用,方便后续统一扩展(重试、打点等)
export async function httpRequest(configOverrides) {
const axiosConfig = buildAxiosRequestConfig(configOverrides);
return axios(axiosConfig);
}
// 流式请求封装
export async function httpStreamRequest(configOverrides) {
const axiosConfig = buildAxiosRequestConfig(configOverrides);
axiosConfig.responseType = 'stream';
return axios(axiosConfig);
}
|