stash/database/database.go

64 lines
1.4 KiB
Go
Raw Normal View History

2019-02-09 12:30:49 +00:00
package database
import (
"fmt"
"github.com/gobuffalo/packr/v2"
"github.com/golang-migrate/migrate/v4"
"github.com/golang-migrate/migrate/v4/source"
"github.com/jmoiron/sqlx"
_ "github.com/mattn/go-sqlite3"
2019-02-10 02:53:08 +00:00
"github.com/stashapp/stash/logger"
2019-02-10 18:13:23 +00:00
"github.com/stashapp/stash/utils"
"os"
2019-02-09 12:30:49 +00:00
)
var DB *sqlx.DB
var appSchemaVersion uint = 1
2019-02-09 12:30:49 +00:00
func Initialize(databasePath string) {
runMigrations(databasePath)
// https://github.com/mattn/go-sqlite3
conn, err := sqlx.Open("sqlite3", "file:"+databasePath+"?_fk=true")
conn.SetMaxOpenConns(25)
conn.SetMaxIdleConns(4)
2019-02-09 12:30:49 +00:00
if err != nil {
logger.Fatalf("db.Open(): %q\n", err)
}
DB = conn
}
func Reset(databasePath string) {
_ = DB.Close()
_ = os.Remove(databasePath)
Initialize(databasePath)
2019-02-09 12:30:49 +00:00
}
// Migrate the database
func runMigrations(databasePath string) {
migrationsBox := packr.New("Migrations Box", "./migrations")
packrSource := &Packr2Source{
Box: migrationsBox,
Migrations: source.NewMigrations(),
}
2019-02-10 18:13:23 +00:00
databasePath = utils.FixWindowsPath(databasePath)
2019-02-09 12:30:49 +00:00
s, _ := WithInstance(packrSource)
m, err := migrate.NewWithSourceInstance(
"packr2",
s,
fmt.Sprintf("sqlite3://%s", "file:"+databasePath),
2019-02-09 12:30:49 +00:00
)
if err != nil {
panic(err.Error())
}
databaseSchemaVersion, _, _ := m.Version()
stepNumber := appSchemaVersion - databaseSchemaVersion
if stepNumber != 0 {
err = m.Steps(int(stepNumber))
if err != nil {
panic(err.Error())
}
2019-02-09 12:30:49 +00:00
}
}