52 lines
1.0 KiB
Go
52 lines
1.0 KiB
Go
package dao
|
|
|
|
import (
|
|
"context"
|
|
|
|
"go-common/app/admin/main/coupon/conf"
|
|
seasongrpc "go-common/app/service/openplatform/pgc-season/api/grpc/season/v1"
|
|
"go-common/library/cache/memcache"
|
|
"go-common/library/database/elastic"
|
|
xsql "go-common/library/database/sql"
|
|
"go-common/library/log"
|
|
bm "go-common/library/net/http/blademaster"
|
|
)
|
|
|
|
// Dao dao
|
|
type Dao struct {
|
|
c *conf.Config
|
|
db *xsql.DB
|
|
es *elastic.Elastic
|
|
mc *memcache.Pool
|
|
// grpc
|
|
rpcClient seasongrpc.SeasonClient
|
|
client *bm.Client
|
|
}
|
|
|
|
// New init mysql db
|
|
func New(c *conf.Config) (dao *Dao) {
|
|
dao = &Dao{
|
|
c: c,
|
|
db: xsql.NewMySQL(c.MySQL),
|
|
// es
|
|
es: elastic.NewElastic(nil),
|
|
mc: memcache.NewPool(c.Memcache.Config),
|
|
client: bm.NewClient(c.HTTPClient),
|
|
}
|
|
var err error
|
|
if dao.rpcClient, err = seasongrpc.NewClient(c.PGCRPC); err != nil {
|
|
log.Error("seasongrpc NewClientt error(%v)", err)
|
|
}
|
|
return
|
|
}
|
|
|
|
// Close close the resource.
|
|
func (dao *Dao) Close() {
|
|
dao.db.Close()
|
|
}
|
|
|
|
// Ping dao ping
|
|
func (dao *Dao) Ping(c context.Context) error {
|
|
return dao.db.Ping(c)
|
|
}
|