gosora/database.go
Azareal 6bae378db0 Moved the modlog and admin log logic to their own file.
Refactored the code to use the new builder syntax.
Fixed the DbInit logic.
Made sure the prepared statements are cleaned up.
Added the AdminOnly middleware and added it to the routes.
Added the Query method to the selectBuilder.
2017-11-11 23:34:27 +00:00

98 lines
2.0 KiB
Go

package main
import (
"database/sql"
"log"
"./common"
)
var stmts *Stmts
var db *sql.DB
var dbVersion string
var dbAdapter string
// ErrNoRows is an alias of sql.ErrNoRows, just in case we end up with non-database/sql datastores
var ErrNoRows = sql.ErrNoRows
var _initDatabase func() error
func InitDatabase() (err error) {
stmts = &Stmts{Mocks: false}
// Engine specific code
err = _initDatabase()
if err != nil {
return err
}
globs = &Globs{stmts}
log.Print("Running the db handlers.")
err = common.DbInits.Run()
if err != nil {
return err
}
log.Print("Loading the usergroups.")
common.Gstore, err = common.NewMemoryGroupStore()
if err != nil {
return err
}
err2 := common.Gstore.LoadGroups()
if err2 != nil {
return err2
}
// We have to put this here, otherwise LoadForums() won't be able to get the last poster data when building it's forums
log.Print("Initialising the user and topic stores")
if common.Config.CacheTopicUser == common.CACHE_STATIC {
common.Users, err = common.NewMemoryUserStore(common.Config.UserCacheCapacity)
common.Topics, err2 = common.NewMemoryTopicStore(common.Config.TopicCacheCapacity)
} else {
common.Users, err = common.NewSQLUserStore()
common.Topics, err2 = common.NewSQLTopicStore()
}
if err != nil {
return err
}
if err2 != nil {
return err2
}
log.Print("Loading the forums.")
common.Fstore, err = common.NewMemoryForumStore()
if err != nil {
return err
}
err = common.Fstore.LoadForums()
if err != nil {
return err
}
log.Print("Loading the forum permissions.")
common.Fpstore, err = common.NewMemoryForumPermsStore()
if err != nil {
return err
}
err = common.Fpstore.Init()
if err != nil {
return err
}
log.Print("Loading the settings.")
err = common.LoadSettings()
if err != nil {
return err
}
log.Print("Loading the plugins.")
err = common.InitExtend()
if err != nil {
return err
}
log.Print("Loading the themes.")
return common.Themes.LoadActiveStatus()
}