56 lines
1.3 KiB
Go
56 lines
1.3 KiB
Go
package db
|
|
|
|
import (
|
|
"context"
|
|
"github.com/fthvgb1/wp-go/internal/pkg/config"
|
|
"github.com/fthvgb1/wp-go/model"
|
|
_ "github.com/go-sql-driver/mysql"
|
|
"github.com/jmoiron/sqlx"
|
|
"log"
|
|
)
|
|
|
|
var db *sqlx.DB
|
|
|
|
func InitDb() (*sqlx.DB, error) {
|
|
c := config.GetConfig()
|
|
dsn := c.Mysql.Dsn.GetDsn()
|
|
var err error
|
|
db, err = sqlx.Open("mysql", dsn)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
if c.Mysql.Pool.ConnMaxIdleTime != 0 {
|
|
db.SetConnMaxIdleTime(c.Mysql.Pool.ConnMaxLifetime)
|
|
}
|
|
if c.Mysql.Pool.MaxIdleConn != 0 {
|
|
db.SetMaxIdleConns(c.Mysql.Pool.MaxIdleConn)
|
|
}
|
|
if c.Mysql.Pool.MaxOpenConn != 0 {
|
|
db.SetMaxOpenConns(c.Mysql.Pool.MaxOpenConn)
|
|
}
|
|
if c.Mysql.Pool.ConnMaxLifetime != 0 {
|
|
db.SetConnMaxLifetime(c.Mysql.Pool.ConnMaxLifetime)
|
|
}
|
|
return db, err
|
|
}
|
|
|
|
func QueryDb(db *sqlx.DB) *model.SqlxQuery {
|
|
query := model.NewSqlxQuery(db, model.NewUniversalDb(
|
|
nil,
|
|
nil))
|
|
|
|
model.SetSelect(query, func(ctx context.Context, a any, s string, args ...any) error {
|
|
if config.GetConfig().ShowQuerySql {
|
|
go log.Println(model.FormatSql(s, args...))
|
|
}
|
|
return query.Selects(ctx, a, s, args...)
|
|
})
|
|
model.SetGet(query, func(ctx context.Context, a any, s string, args ...any) error {
|
|
if config.GetConfig().ShowQuerySql {
|
|
go log.Println(model.FormatSql(s, args...))
|
|
}
|
|
return query.Gets(ctx, a, s, args...)
|
|
})
|
|
return query
|
|
}
|