
AI: 增加了AI前端绘制功能,可以根据描述生成客户端页面【授权用户专属】 自动化: 自动化模板采用了function模式,更加方便用户二次开发和自定义改动 自动化: 默认携带ID和CreatedAt排序 自动化: 所有自动化Select模板默认支持select搜索 优化:http交互报错信息增加防止多次弹出错误遮罩机制 ICON: 优化ICON逻辑,防止多次加载svg 布局:增加侧边分栏模式 布局: 顶栏模式样式优化和高亮逻辑调整 优化: 个人配置不再需要手动点击保存,会根据变化自动保存 BUG: 修复了菜单点击设为主页勾选被取消的bug 安全: 更新了jwt版本,修复CVE-2025-30204 导出: 默认支持软删除过滤 代码: 优化了部分代码逻辑 本次更新需要重新执行 npm i --------- Signed-off-by: joohwan <zhouhuan.chen@yunqutech.com > Co-authored-by: huiyifyj <jxfengyijie@gmail.com> Co-authored-by: piexlMax(奇淼 <qimiaojiangjizhao@gmail.com> Co-authored-by: okppop <okppop@protonmail.com> Co-authored-by: joohwan <zhouhuan.chen@yunqutech.com > Co-authored-by: xuedinge <781408517@qq.com>
77 lines
2.1 KiB
Go
77 lines
2.1 KiB
Go
package core
|
|
|
|
import (
|
|
"flag"
|
|
"fmt"
|
|
"os"
|
|
"path/filepath"
|
|
|
|
"github.com/flipped-aurora/gin-vue-admin/server/core/internal"
|
|
"github.com/flipped-aurora/gin-vue-admin/server/global"
|
|
"github.com/fsnotify/fsnotify"
|
|
"github.com/gin-gonic/gin"
|
|
"github.com/spf13/viper"
|
|
)
|
|
|
|
// Viper 配置
|
|
func Viper() *viper.Viper {
|
|
config := getConfigPath()
|
|
|
|
v := viper.New()
|
|
v.SetConfigFile(config)
|
|
v.SetConfigType("yaml")
|
|
err := v.ReadInConfig()
|
|
if err != nil {
|
|
panic(fmt.Errorf("fatal error config file: %w", err))
|
|
}
|
|
v.WatchConfig()
|
|
|
|
v.OnConfigChange(func(e fsnotify.Event) {
|
|
fmt.Println("config file changed:", e.Name)
|
|
if err = v.Unmarshal(&global.GVA_CONFIG); err != nil {
|
|
fmt.Println(err)
|
|
}
|
|
})
|
|
if err = v.Unmarshal(&global.GVA_CONFIG); err != nil {
|
|
panic(fmt.Errorf("fatal error unmarshal config: %w", err))
|
|
}
|
|
|
|
// root 适配性 根据root位置去找到对应迁移位置,保证root路径有效
|
|
global.GVA_CONFIG.AutoCode.Root, _ = filepath.Abs("..")
|
|
return v
|
|
}
|
|
|
|
// getConfigPath 获取配置文件路径, 优先级: 命令行 > 环境变量 > 默认值
|
|
func getConfigPath() (config string) {
|
|
// `-c` flag parse
|
|
flag.StringVar(&config, "c", "", "choose config file.")
|
|
flag.Parse()
|
|
if config != "" { // 命令行参数不为空 将值赋值于config
|
|
fmt.Printf("您正在使用命令行的 '-c' 参数传递的值, config 的路径为 %s\n", config)
|
|
return
|
|
}
|
|
if env := os.Getenv(internal.ConfigEnv); env != "" { // 判断环境变量 GVA_CONFIG
|
|
config = env
|
|
fmt.Printf("您正在使用 %s 环境变量, config 的路径为 %s\n", internal.ConfigEnv, config)
|
|
return
|
|
}
|
|
|
|
switch gin.Mode() { // 根据 gin 模式文件名
|
|
case gin.DebugMode:
|
|
config = internal.ConfigDebugFile
|
|
case gin.ReleaseMode:
|
|
config = internal.ConfigReleaseFile
|
|
case gin.TestMode:
|
|
config = internal.ConfigTestFile
|
|
}
|
|
fmt.Printf("您正在使用 gin 的 %s 模式运行, config 的路径为 %s\n", gin.Mode(), config)
|
|
|
|
_, err := os.Stat(config)
|
|
if err != nil || os.IsNotExist(err) {
|
|
config = internal.ConfigDefaultFile
|
|
fmt.Printf("配置文件路径不存在, 使用默认配置文件路径: %s\n", config)
|
|
}
|
|
|
|
return
|
|
}
|