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.
114 lines
2.7 KiB
114 lines
2.7 KiB
package dao |
|
|
|
import ( |
|
"bytes" |
|
"context" |
|
"encoding/json" |
|
"net/http" |
|
"time" |
|
|
|
"go-common/app/admin/ep/merlin/conf" |
|
"go-common/library/cache/memcache" |
|
"go-common/library/database/orm" |
|
"go-common/library/log" |
|
xhttp "go-common/library/net/http/blademaster" |
|
"go-common/library/sync/pipeline/fanout" |
|
|
|
dclient "github.com/docker/docker/client" |
|
"github.com/jinzhu/gorm" |
|
"gopkg.in/gomail.v2" |
|
"gopkg.in/h2non/gock.v1" |
|
) |
|
|
|
// Dao dao. |
|
type Dao struct { |
|
c *conf.Config |
|
httpClient *xhttp.Client |
|
db *gorm.DB |
|
email *gomail.Dialer |
|
mc *memcache.Pool |
|
cache *fanout.Fanout |
|
hubCache *fanout.Fanout |
|
expire int32 |
|
dockerClient *dclient.Client |
|
} |
|
|
|
// New init mysql db. |
|
func New(c *conf.Config) *Dao { |
|
var ( |
|
dc *dclient.Client |
|
err error |
|
) |
|
|
|
if dc, err = dclient.NewClientWithOpts(dclient.FromEnv); err != nil { |
|
log.Error("docker client init error(%v)", err) |
|
panic(err) |
|
} |
|
|
|
return &Dao{ |
|
c: c, |
|
httpClient: xhttp.NewClient(c.HTTPClient), |
|
db: orm.NewMySQL(c.ORM), |
|
email: gomail.NewDialer(c.Mail.Host, c.Mail.Port, c.Mail.Username, c.Mail.Password), |
|
mc: memcache.NewPool(c.Memcache.Config), |
|
cache: fanout.New("cache", fanout.Worker(10), fanout.Buffer(10240)), |
|
hubCache: fanout.New("hubCache", fanout.Worker(10), fanout.Buffer(10240)), |
|
expire: int32(time.Duration(c.Memcache.Expire) / time.Second), |
|
dockerClient: dc, |
|
} |
|
|
|
} |
|
|
|
// Close close the resource. |
|
func (d *Dao) Close() { |
|
if d.db != nil { |
|
d.db.Close() |
|
} |
|
if d.mc != nil { |
|
d.mc.Close() |
|
} |
|
} |
|
|
|
// SetProxy set test proxy. |
|
func (d *Dao) SetProxy() { |
|
d.httpClient.SetTransport(gock.DefaultTransport) |
|
} |
|
|
|
func (d *Dao) newRequest(method, url string, v interface{}) (req *http.Request, err error) { |
|
body := &bytes.Buffer{} |
|
if method != http.MethodGet { |
|
if err = json.NewEncoder(body).Encode(v); err != nil { |
|
log.Error("json encode value(%s) err(?) ", v, err) |
|
return |
|
} |
|
} |
|
if req, err = http.NewRequest(method, url, body); err != nil { |
|
log.Error("http new request url(?) err(?)", url, err) |
|
} |
|
return |
|
} |
|
|
|
// Ping verify server is ok. |
|
func (d *Dao) Ping(c context.Context) (err error) { |
|
if err = d.db.DB().Ping(); err != nil { |
|
log.Info("dao.cloudDB.Ping() error(%v)", err) |
|
} |
|
return |
|
} |
|
|
|
// tokenCacheSave The err does not need to return, because this method is irrelevant. |
|
func (d *Dao) tokenCacheSave(c context.Context, cacheItem *memcache.Item) { |
|
var f = func(c context.Context) { |
|
var ( |
|
conn = d.mc.Get(c) |
|
err error |
|
) |
|
defer conn.Close() |
|
if err = conn.Set(cacheItem); err != nil { |
|
log.Error("AddCache conn.Set(%s) error(%v)", cacheItem.Key, err) |
|
} |
|
} |
|
if err := d.cache.Do(c, f); err != nil { |
|
log.Error("Token cache save err(%v)", err) |
|
} |
|
}
|
|
|