gosora/database.go
Azareal b2e97e47c1 Moved the last control panel theme manager route into /routes/panel/
Added the UpdateDefaultTheme function.

Renamed panelRenderTemplate to renderTemplate.
Renamed panelSuccessRedirect to successRedirect.
Reduced the amount of boilerplate in panel.GroupsEdit with renderTemplate.
Renamed the pre_render_panel_edit_group hook to pre_render_panel_group_edit.
Reduced the amount of boilerplate in panel.GroupsEditPerms with renderTemplate.
Renamed the pre_render_panel_edit_group_perms hook to pre_render_panel_group_edit_perms.

Fixed a bug where the active status for themes didn't get loaded at start-up.
Fixed a theoretical deadlock in NewThemeList.
Updated CONTRIBUTING.md
2018-10-02 14:09:17 +10:00

108 lines
2.3 KiB
Go

package main
import (
"database/sql"
"log"
"./common"
"github.com/pkg/errors"
)
var stmts *Stmts
var db *sql.DB
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 errors.WithStack(err)
}
log.Print("Loading the usergroups.")
common.Groups, err = common.NewMemoryGroupStore()
if err != nil {
return errors.WithStack(err)
}
err2 := common.Groups.LoadGroups()
if err2 != nil {
return errors.WithStack(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")
var ucache common.UserCache
if common.Config.UserCache == "static" {
ucache = common.NewMemoryUserCache(common.Config.UserCacheCapacity)
}
var tcache common.TopicCache
if common.Config.TopicCache == "static" {
tcache = common.NewMemoryTopicCache(common.Config.TopicCacheCapacity)
}
common.Users, err = common.NewDefaultUserStore(ucache)
if err != nil {
return errors.WithStack(err)
}
common.Topics, err = common.NewDefaultTopicStore(tcache)
if err != nil {
return errors.WithStack(err2)
}
log.Print("Loading the forums.")
common.Forums, err = common.NewMemoryForumStore()
if err != nil {
return errors.WithStack(err)
}
err = common.Forums.LoadForums()
if err != nil {
return errors.WithStack(err)
}
log.Print("Loading the forum permissions.")
common.FPStore, err = common.NewMemoryForumPermsStore()
if err != nil {
return errors.WithStack(err)
}
err = common.FPStore.Init()
if err != nil {
return errors.WithStack(err)
}
log.Print("Loading the settings.")
err = common.LoadSettings()
if err != nil {
return errors.WithStack(err)
}
log.Print("Loading the plugins.")
err = common.InitExtend()
if err != nil {
return errors.WithStack(err)
}
log.Print("Loading the themes.")
err = common.Themes.LoadActiveStatus()
if err != nil {
return errors.WithStack(err)
}
return nil
}