123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596 |
- package system
- import (
- "context"
- "errors"
- "fmt"
- "path/filepath"
- "github.com/gookit/color"
- "server/config"
- "server/utils"
- "github.com/gofrs/uuid/v5"
- "gorm.io/driver/mysql"
- "gorm.io/gorm"
- "server/global"
- "server/model/system/request"
- )
- type MysqlInitHandler struct{}
- func NewMysqlInitHandler() *MysqlInitHandler {
- return &MysqlInitHandler{}
- }
- // WriteConfig mysql回写配置
- func (h MysqlInitHandler) WriteConfig(ctx context.Context) error {
- c, ok := ctx.Value("config").(config.Mysql)
- if !ok {
- return errors.New("mysql config invalid")
- }
- global.GVA_CONFIG.System.DbType = "mysql"
- global.GVA_CONFIG.Mysql = c
- global.GVA_CONFIG.JWT.SigningKey = uuid.Must(uuid.NewV4()).String()
- cs := utils.StructToMap(global.GVA_CONFIG)
- for k, v := range cs {
- global.GVA_VP.Set(k, v)
- }
- return global.GVA_VP.WriteConfig()
- }
- // EnsureDB 创建数据库并初始化 mysql
- func (h MysqlInitHandler) EnsureDB(ctx context.Context, conf *request.InitDB) (next context.Context, err error) {
- if s, ok := ctx.Value("dbtype").(string); !ok || s != "mysql" {
- return ctx, ErrDBTypeMismatch
- }
- c := conf.ToMysqlConfig()
- next = context.WithValue(ctx, "config", c)
- if c.Dbname == "" {
- return ctx, nil
- } // 如果没有数据库名, 则跳出初始化数据
- dsn := conf.MysqlEmptyDsn()
- createSql := fmt.Sprintf("CREATE DATABASE IF NOT EXISTS `%s` DEFAULT CHARACTER SET utf8mb4 DEFAULT COLLATE utf8mb4_general_ci;", c.Dbname)
- if err = createDatabase(dsn, "mysql", createSql); err != nil {
- return nil, err
- } // 创建数据库
- var db *gorm.DB
- if db, err = gorm.Open(mysql.New(mysql.Config{
- DSN: c.Dsn(), // DSN data source name
- DefaultStringSize: 191, // string 类型字段的默认长度
- SkipInitializeWithVersion: true, // 根据版本自动配置
- }), &gorm.Config{DisableForeignKeyConstraintWhenMigrating: true}); err != nil {
- return ctx, err
- }
- global.GVA_CONFIG.AutoCode.Root, _ = filepath.Abs("..")
- next = context.WithValue(next, "db", db)
- return next, err
- }
- func (h MysqlInitHandler) InitTables(ctx context.Context, inits initSlice) error {
- return createTables(ctx, inits)
- }
- func (h MysqlInitHandler) InitData(ctx context.Context, inits initSlice) error {
- next, cancel := context.WithCancel(ctx)
- defer func(c func()) { c() }(cancel)
- for _, init := range inits {
- if init.DataInserted(next) {
- color.Info.Printf(InitDataExist, Mysql, init.InitializerName())
- continue
- }
- if n, err := init.InitializeData(next); err != nil {
- color.Info.Printf(InitDataFailed, Mysql, init.InitializerName(), err)
- return err
- } else {
- next = n
- color.Info.Printf(InitDataSuccess, Mysql, init.InitializerName())
- }
- }
- color.Info.Printf(InitSuccess, Mysql)
- return nil
- }
|