-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathmodels.go
43 lines (35 loc) · 1023 Bytes
/
models.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
package models
import (
"context"
"database/sql"
"github.com/GitDataAI/jiaozifs/config"
"github.com/uptrace/bun"
"github.com/uptrace/bun/dialect/pgdialect"
"github.com/uptrace/bun/driver/pgdriver"
"github.com/uptrace/bun/extra/bundebug"
"go.uber.org/fx"
)
func SetupDatabase(ctx context.Context, lc fx.Lifecycle, dbConfig *config.DatabaseConfig) (*bun.DB, error) {
bunDB, err := NewBunDBFromConfig(ctx, dbConfig)
if err != nil {
return nil, err
}
lc.Append(fx.Hook{
OnStop: func(_ context.Context) error {
return bunDB.Close()
},
})
return bunDB, nil
}
func NewBunDBFromConfig(ctx context.Context, dbConfig *config.DatabaseConfig) (*bun.DB, error) {
sqlDB := sql.OpenDB(pgdriver.NewConnector(pgdriver.WithDSN(dbConfig.Connection)))
_, err := sqlDB.Conn(ctx)
if err != nil {
return nil, err
}
bunDB := bun.NewDB(sqlDB, pgdialect.New(), bun.WithDiscardUnknownColumns())
if dbConfig.Debug {
bunDB.AddQueryHook(bundebug.NewQueryHook(bundebug.WithVerbose(true)))
}
return bunDB, err
}