You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
49 lines
1.1 KiB
49 lines
1.1 KiB
package ugc |
|
|
|
import ( |
|
"context" |
|
"time" |
|
|
|
"go-common/app/job/main/tv/conf" |
|
"go-common/library/cache/memcache" |
|
"go-common/library/cache/redis" |
|
"go-common/library/database/sql" |
|
httpx "go-common/library/net/http/blademaster" |
|
) |
|
|
|
// Dao dao. |
|
type Dao struct { |
|
conf *conf.Config |
|
DB *sql.DB |
|
client *httpx.Client |
|
mc *memcache.Pool |
|
mcExpire int32 // expire for ugc cache, same as pgc auth, because it's daily refresh |
|
criCID int64 // critical cid for ugc video sync |
|
redis *redis.Pool |
|
} |
|
|
|
// New create a instance of Dao and return. |
|
func New(c *conf.Config) (d *Dao) { |
|
d = &Dao{ |
|
conf: c, |
|
DB: sql.NewMySQL(c.Mysql), |
|
client: httpx.NewClient(conf.Conf.HTTPClient), |
|
mc: memcache.NewPool(c.Memcache.Config), |
|
mcExpire: int32(time.Duration(c.Memcache.Expire) / time.Second), |
|
criCID: c.UgcSync.Cfg.CriticalCid, |
|
redis: redis.NewPool(c.Redis.Config), |
|
} |
|
return |
|
} |
|
|
|
// Close close the redis and kafka resource. |
|
func (d *Dao) Close() { |
|
if d.DB != nil { |
|
d.DB.Close() |
|
} |
|
} |
|
|
|
// BeginTran begin mysql transaction |
|
func (d *Dao) BeginTran(c context.Context) (*sql.Tx, error) { |
|
return d.DB.Begin(c) |
|
}
|
|
|