- 添加题库管理页面及相关组件 - 实现排行榜管理功能,包括列表和详情页 - 新增实时结果展示页面 - 添加模板制作和管理功能 - 完善路由配置和国际化支持 - 新增阿里云OSS文件上传服务 - 添加多种工具函数和类型定义 - 优化表格和表单组件 - 调整布局和样式细节
66 lines
1.9 KiB
TypeScript
66 lines
1.9 KiB
TypeScript
import type { ProxyOptions } from 'vite'
|
|
import { consola } from 'consola'
|
|
import { bgRed, bgYellow, green, lightBlue } from 'kolorist'
|
|
import { createServiceConfig } from '../../src/utils/service'
|
|
|
|
/**
|
|
* 设置 HTTP 代理
|
|
*
|
|
* @param env - 当前环境变量
|
|
* @param enable - 是否启用 HTTP 代理
|
|
*/
|
|
export function createViteProxy(env: Env.ImportMeta, enable: boolean) {
|
|
const isEnableHttpProxy = enable && env.VITE_HTTP_PROXY === 'Y'
|
|
|
|
if (!isEnableHttpProxy)
|
|
return undefined
|
|
|
|
const isEnableProxyLog = env.VITE_PROXY_LOG === 'Y'
|
|
|
|
const { baseURL, proxyPattern, other } = createServiceConfig(env)
|
|
console.log('baseURL:', baseURL, 'proxyPattern:', proxyPattern, 'other:', other)
|
|
|
|
const proxy: Record<string, ProxyOptions> = createProxyItem({ baseURL, proxyPattern }, isEnableProxyLog)
|
|
|
|
other.forEach((item) => {
|
|
Object.assign(proxy, createProxyItem(item, isEnableProxyLog))
|
|
})
|
|
|
|
return proxy
|
|
}
|
|
|
|
/**
|
|
* 创建 HTTP 代理项
|
|
*
|
|
* @param item - 服务配置项
|
|
* @param enableLog - 是否启用日志记录
|
|
*/
|
|
function createProxyItem(item: App.Service.ServiceConfigItem, enableLog: boolean) {
|
|
const proxy: Record<string, ProxyOptions> = {}
|
|
|
|
proxy[item.proxyPattern] = {
|
|
target: item.baseURL,
|
|
changeOrigin: true,
|
|
configure: (_proxy, options) => {
|
|
_proxy.on('proxyReq', (_proxyReq, req, _res) => {
|
|
if (!enableLog)
|
|
return
|
|
|
|
const requestUrl = `${lightBlue('[代理地址]')}: ${bgYellow(` ${req.method} `)} ${green(`${item.proxyPattern}${req.url}`)}`
|
|
|
|
const proxyUrl = `${lightBlue('[真实请求地址]')}: ${green(`${options.target}${req.url}`)}`
|
|
|
|
consola.log(`${requestUrl}\n${proxyUrl}`)
|
|
})
|
|
_proxy.on('error', (_err, req, _res) => {
|
|
if (!enableLog)
|
|
return
|
|
consola.log(bgRed(`错误: ${req.method} `), green(`${options.target}${req.url}`))
|
|
})
|
|
},
|
|
rewrite: path => path.replace(new RegExp(`^${item.proxyPattern}`), ''),
|
|
}
|
|
|
|
return proxy
|
|
}
|