mirror of
https://github.com/flipped-aurora/gin-vue-admin.git
synced 2026-09-23 21:08:09 +00:00
* feat: 调整AI工作模式,更符合harness基准 * feat: 添加BusinessDB字段到PluginInitializeGorm结构体,并增加相关测试用例 * [middleware/jwt.go]: fix #2192 issues bug * docs: add auto plugin design spec * chore: ignore worktrees directory * feat: 调整代码辅助能力至插件 * feat: 添加警告条组件,提示授权用户访问限制 * fix: 修正商业用途版权声明链接 * feat: 调整agent.md 更加节省token * fix: 修改casbin版本为v3 * feat: 更新JSONMap和JSONSlice类型,优化GORM数据类型处理 * feat: 添加数据库就绪通知机制,优化插件注册流程 * feat: 重构API路径和描述,优化代码生成器和模板配置分组 * feat: 优化 person 页面的 css 作用域限制 * feat: 更新 vite 至 vite8 * 新增:MCP工具为指定URL的角色ID授权 * fix: 增加文件名合法性检查,拒绝包含非法字符的文件写入 * chore: 更新CI配置,升级Node.js和Go版本,调整checkout和setup动作版本 * feat: 为数据库连接增加最大复用时间配置 * feat: 为各数据库连接配置增加最大连接生命周期设置 * feat: 更新插件注册逻辑并优化API和菜单组件的标签显示 * feat: 更新版本号至v2.9.2并添加新插件路径信息 --------- Co-authored-by: taincheng <zhangtc@gmail.com> Co-authored-by: Azir-11 <2075125282@qq.com> Co-authored-by: lanxi <1220lanxi@gmail.com>
47 lines
1.3 KiB
Go
47 lines
1.3 KiB
Go
package initialize
|
|
|
|
import (
|
|
"github.com/flipped-aurora/gin-vue-admin/server/config"
|
|
"github.com/flipped-aurora/gin-vue-admin/server/global"
|
|
"github.com/flipped-aurora/gin-vue-admin/server/initialize/internal"
|
|
"time"
|
|
|
|
"gorm.io/driver/postgres"
|
|
"gorm.io/gorm"
|
|
)
|
|
|
|
// GormPgSql 初始化 Postgresql 数据库
|
|
// Author [piexlmax](https://github.com/piexlmax)
|
|
// Author [SliverHorn](https://github.com/SliverHorn)
|
|
func GormPgSql() *gorm.DB {
|
|
p := global.GVA_CONFIG.Pgsql
|
|
return initPgSqlDatabase(p)
|
|
}
|
|
|
|
// GormPgSqlByConfig 初始化 Postgresql 数据库 通过指定参数
|
|
func GormPgSqlByConfig(p config.Pgsql) *gorm.DB {
|
|
return initPgSqlDatabase(p)
|
|
}
|
|
|
|
// initPgSqlDatabase 初始化 Postgresql 数据库的辅助函数
|
|
func initPgSqlDatabase(p config.Pgsql) *gorm.DB {
|
|
if p.Dbname == "" {
|
|
return nil
|
|
}
|
|
pgsqlConfig := postgres.Config{
|
|
DSN: p.Dsn(), // DSN data source name
|
|
PreferSimpleProtocol: false,
|
|
}
|
|
// 数据库配置
|
|
general := p.GeneralDB
|
|
if db, err := gorm.Open(postgres.New(pgsqlConfig), internal.Gorm.Config(general)); err != nil {
|
|
panic(err)
|
|
} else {
|
|
sqlDB, _ := db.DB()
|
|
sqlDB.SetMaxIdleConns(p.MaxIdleConns)
|
|
sqlDB.SetMaxOpenConns(p.MaxOpenConns)
|
|
sqlDB.SetConnMaxLifetime(time.Duration(p.ConnMaxLifetime) * time.Second)
|
|
return db
|
|
}
|
|
}
|