mirror of https://github.com/shunfei/cronsun
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.
82 lines
1.8 KiB
82 lines
1.8 KiB
package db
|
|
|
|
import (
|
|
"strings"
|
|
"time"
|
|
|
|
"gopkg.in/mgo.v2"
|
|
"gopkg.in/mgo.v2/bson"
|
|
)
|
|
|
|
type Config struct {
|
|
Hosts []string
|
|
UserName string
|
|
Password string
|
|
Database string
|
|
Timeout time.Duration // second
|
|
}
|
|
|
|
type Mdb struct {
|
|
*Config
|
|
*mgo.Session
|
|
}
|
|
|
|
func NewMdb(c *Config) (*Mdb, error) {
|
|
m := &Mdb{
|
|
Config: c,
|
|
}
|
|
return m, m.connect()
|
|
}
|
|
|
|
func (m *Mdb) connect() error {
|
|
// url: [mongodb://][user:pass@]host1[:port1][,host2[:port2],...][/database][?options]
|
|
url := strings.Join(m.Config.Hosts, ",")
|
|
if len(m.Config.UserName) > 0 && len(m.Config.Password) > 0 {
|
|
url = m.Config.UserName + ":" + m.Config.Password + "@" + url
|
|
}
|
|
|
|
if len(m.Config.Database) > 0 {
|
|
url += "/" + m.Config.Database
|
|
}
|
|
|
|
session, err := mgo.DialWithTimeout(url, m.Config.Timeout)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
m.Session = session
|
|
return nil
|
|
}
|
|
|
|
func (m *Mdb) WithC(collection string, job func(*mgo.Collection) error) error {
|
|
s := m.Session.New()
|
|
err := job(s.DB(m.Config.Database).C(collection))
|
|
s.Close()
|
|
return err
|
|
}
|
|
|
|
func (self *Mdb) Upsert(collection string, selector interface{}, change interface{}) error {
|
|
return self.WithC(collection, func(c *mgo.Collection) error {
|
|
_, err := c.Upsert(selector, change)
|
|
return err
|
|
})
|
|
}
|
|
|
|
func (self *Mdb) Insert(collection string, data ...interface{}) error {
|
|
return self.WithC(collection, func(c *mgo.Collection) error {
|
|
return c.Insert(data...)
|
|
})
|
|
}
|
|
|
|
func (self *Mdb) FindId(collection string, id interface{}, result interface{}) error {
|
|
return self.WithC(collection, func(c *mgo.Collection) error {
|
|
return c.Find(bson.M{"_id": id}).One(result)
|
|
})
|
|
}
|
|
|
|
func (self *Mdb) FindOne(collection string, query interface{}, result interface{}) error {
|
|
return self.WithC(collection, func(c *mgo.Collection) error {
|
|
return c.Find(query).One(result)
|
|
})
|
|
}
|