structure: 确定基本结构(保持基本形式, 采用组合)

This commit is contained in:
loveuer
2024-11-01 17:47:33 +08:00
parent 9e8a47a7c6
commit 56cfd42bb9
52 changed files with 1003 additions and 176 deletions

46
pkg/store/client.go Normal file
View File

@@ -0,0 +1,46 @@
package store
import (
"context"
"uauth/tool"
"gorm.io/gorm"
)
type Store interface {
Session(ctx context.Context) *gorm.DB
}
var (
Default *Client
)
type Client struct {
ctx context.Context
cli *gorm.DB
ttype string
debug bool
}
func (c *Client) Type() string {
return c.ttype
}
func (c *Client) Session(ctx context.Context) *gorm.DB {
if ctx == nil {
ctx = tool.Timeout(30)
}
session := c.cli.Session(&gorm.Session{Context: ctx})
if c.debug {
session = session.Debug()
}
return session
}
func (c *Client) Close() {
d, _ := c.cli.DB()
d.Close()
}

59
pkg/store/init.go Normal file
View File

@@ -0,0 +1,59 @@
package store
import (
"fmt"
"strings"
"github.com/glebarez/sqlite"
"gorm.io/driver/mysql"
"gorm.io/driver/postgres"
"gorm.io/gorm"
)
type Config struct {
Debug bool
}
func New(uri string, configs ...Config) (*Client, error) {
strs := strings.Split(uri, "::")
if len(strs) != 2 {
return nil, fmt.Errorf("db.Init: opt db uri invalid: %s", uri)
}
c := &Client{ttype: strs[0]}
if len(configs) > 0 && configs[0].Debug {
c.debug = true
}
var (
err error
dsn = strs[1]
)
switch strs[0] {
case "sqlite":
c.cli, err = gorm.Open(sqlite.Open(dsn))
case "mysql":
c.cli, err = gorm.Open(mysql.Open(dsn))
case "postgres":
c.cli, err = gorm.Open(postgres.Open(dsn))
default:
return nil, fmt.Errorf("db type only support: [sqlite, mysql, postgres], unsupported db type: %s", strs[0])
}
if err != nil {
return nil, fmt.Errorf("db.Init: open %s with dsn:%s, err: %w", strs[0], dsn, err)
}
return c, nil
}
func Init(uri string, configs ...Config) (err error) {
if Default, err = New(uri, configs...); err != nil {
return err
}
return nil
}