62 lines
1.3 KiB
Go
62 lines
1.3 KiB
Go
|
package dao
|
||
|
|
||
|
import (
|
||
|
"context"
|
||
|
"net/http"
|
||
|
"time"
|
||
|
|
||
|
"go-common/app/interface/main/esports/conf"
|
||
|
"go-common/library/cache/redis"
|
||
|
"go-common/library/database/elastic"
|
||
|
"go-common/library/database/sql"
|
||
|
bm "go-common/library/net/http/blademaster"
|
||
|
"go-common/library/sync/pipeline/fanout"
|
||
|
)
|
||
|
|
||
|
const (
|
||
|
_searchURL = "/esports/search"
|
||
|
)
|
||
|
|
||
|
// Dao dao struct.
|
||
|
type Dao struct {
|
||
|
// config
|
||
|
c *conf.Config
|
||
|
// db
|
||
|
db *sql.DB
|
||
|
// redis
|
||
|
redis *redis.Pool
|
||
|
filterExpire, listExpire int32
|
||
|
// http client
|
||
|
http *bm.Client
|
||
|
ldClient *http.Client
|
||
|
searchURL string
|
||
|
ela *elastic.Elastic
|
||
|
cache *fanout.Fanout
|
||
|
}
|
||
|
|
||
|
// New new dao.
|
||
|
func New(c *conf.Config) (d *Dao) {
|
||
|
d = &Dao{
|
||
|
// config
|
||
|
c: c,
|
||
|
db: sql.NewMySQL(c.Mysql),
|
||
|
redis: redis.NewPool(c.Redis.Config),
|
||
|
filterExpire: int32(time.Duration(c.Redis.FilterExpire) / time.Second),
|
||
|
listExpire: int32(time.Duration(c.Redis.ListExpire) / time.Second),
|
||
|
http: bm.NewClient(c.HTTPClient),
|
||
|
ldClient: http.DefaultClient,
|
||
|
searchURL: c.Host.Search + _searchURL,
|
||
|
ela: elastic.NewElastic(nil),
|
||
|
cache: fanout.New("fanout"),
|
||
|
}
|
||
|
return
|
||
|
}
|
||
|
|
||
|
// Ping ping dao
|
||
|
func (d *Dao) Ping(c context.Context) (err error) {
|
||
|
if err = d.db.Ping(c); err != nil {
|
||
|
return
|
||
|
}
|
||
|
return
|
||
|
}
|