genofire/hs_monolith
genofire
/
hs_monolith
Archived
1
0
Fork 0
This repository has been archived on 2020-09-27. You can view files and clone it, but cannot push or open issues or pull requests.
hs_monolith/lib/database/main.go

56 lines
1.1 KiB
Go
Raw Normal View History

2017-03-30 16:09:44 +02:00
package database
import (
"github.com/jinzhu/gorm"
_ "github.com/jinzhu/gorm/dialects/postgres"
2017-03-30 17:02:20 +02:00
_ "github.com/jinzhu/gorm/dialects/sqlite"
2017-03-30 16:09:44 +02:00
)
var (
2017-03-30 17:02:20 +02:00
Write *gorm.DB
Read *gorm.DB
2017-03-30 16:09:44 +02:00
config *Config
models []interface{}
)
type Config struct {
2017-03-30 17:02:20 +02:00
Type string
Connection string
2017-03-30 16:09:44 +02:00
ReadConnection string
}
2017-03-30 16:16:19 +02:00
func Open(c Config) (err error) {
2017-03-30 16:09:44 +02:00
config = &c
Write, err = gorm.Open(config.Type, config.Connection)
2017-03-30 18:44:09 +02:00
Write.SingularTable(true)
Write.Callback().Create().Remove("gorm:update_time_stamp")
Write.Callback().Update().Remove("gorm:update_time_stamp")
2017-03-30 16:09:44 +02:00
if err != nil {
return
}
if len(config.ReadConnection) > 0 {
Read, err = gorm.Open(config.Type, config.ReadConnection)
2017-03-30 18:44:09 +02:00
Read.SingularTable(true)
Read.Callback().Create().Remove("gorm:update_time_stamp")
Read.Callback().Update().Remove("gorm:update_time_stamp")
2017-03-30 16:09:44 +02:00
} else {
Read = Write
}
Write.AutoMigrate(models...)
return
}
func Close() {
Write.Close()
2017-03-30 18:44:09 +02:00
Write = nil
2017-03-30 16:09:44 +02:00
if len(config.ReadConnection) > 0 {
Read.Close()
}
2017-03-30 18:44:09 +02:00
Read = nil
2017-03-30 16:09:44 +02:00
}
func AddModel(m interface{}) {
models = append(models, m)
}