b12e812b36
This allows users to change the default logging verbosity (errors) to either *detailed* (prints SQL statements) or *silent*. Also added support for using a custom logger function. - Fixed the gorm unit test that checks the automigrations They will actually fail if any errors were logged now. - Added a postgres unit test Currently disabled because it would need a running local postgres db and a change to the .travis.yml file to work inside the CI build.
71 lignes
1,4 Kio
Go
71 lignes
1,4 Kio
Go
package db
|
|
|
|
import (
|
|
"github.com/azhao12345/gorm"
|
|
"github.com/ewhal/nyaa/config"
|
|
"github.com/ewhal/nyaa/model"
|
|
"github.com/ewhal/nyaa/util/log"
|
|
_ "github.com/jinzhu/gorm/dialects/postgres"
|
|
_ "github.com/jinzhu/gorm/dialects/sqlite"
|
|
)
|
|
|
|
type Logger interface {
|
|
Print(v ...interface{})
|
|
}
|
|
|
|
// use the default gorm logger that prints to stdout
|
|
var DefaultLogger Logger = nil
|
|
|
|
var ORM *gorm.DB
|
|
|
|
var IsSqlite bool
|
|
|
|
// GormInit init gorm ORM.
|
|
func GormInit(conf *config.Config, logger Logger) (*gorm.DB, error) {
|
|
|
|
db, openErr := gorm.Open(conf.DBType, conf.DBParams)
|
|
if openErr != nil {
|
|
log.CheckError(openErr)
|
|
return nil, openErr
|
|
}
|
|
|
|
IsSqlite = conf.DBType == "sqlite"
|
|
|
|
connectionErr := db.DB().Ping()
|
|
if connectionErr != nil {
|
|
log.CheckError(connectionErr)
|
|
return nil, connectionErr
|
|
}
|
|
db.DB().SetMaxIdleConns(10)
|
|
db.DB().SetMaxOpenConns(100)
|
|
|
|
if config.Environment == "DEVELOPMENT" {
|
|
db.LogMode(true)
|
|
}
|
|
|
|
switch conf.DBLogMode {
|
|
case "detailed":
|
|
db.LogMode(true)
|
|
case "silent":
|
|
db.LogMode(false)
|
|
}
|
|
|
|
if logger != nil {
|
|
db.SetLogger(logger)
|
|
}
|
|
|
|
db.AutoMigrate(&model.User{}, &model.UserFollows{}, &model.UserUploadsOld{})
|
|
if db.Error != nil {
|
|
return db, db.Error
|
|
}
|
|
db.AutoMigrate(&model.Torrent{}, &model.TorrentReport{})
|
|
if db.Error != nil {
|
|
return db, db.Error
|
|
}
|
|
db.AutoMigrate(&model.Comment{}, &model.OldComment{})
|
|
if db.Error != nil {
|
|
return db, db.Error
|
|
}
|
|
|
|
return db, nil
|
|
}
|