mirror of
https://github.com/steveiliop56/tinyauth.git
synced 2026-05-10 14:28:12 +00:00
4f7335ed73
* feat: add new logger * refactor: use one struct for context handling and cancellation * refactor: rework logging and config in controllers * refactor: rework logging and config in middlewares * refactor: rework logging and cancellation in services * refactor: rework cli logging * fix: improve logging in routines * feat: use sync groups for better cancellation * refactor: simplify middleware, controller and service init * tests: fix controller tests * tests: use require instead of assert where previous step is required * tests: fix middleware tests * tests: fix service tests * tests: fix context tests * fix: fix typos * feat: add option to enable or disable concurrent listeners * fix: assign public key correctly in oidc server * tests: fix don't try to test logger with char size * fix: coderabbit comments * tests: use filepath join instead of path join * fix: ensure unix socket shutdown doesn't run twice * chore: remove temp lint file
70 lines
1.6 KiB
Go
70 lines
1.6 KiB
Go
package bootstrap
|
|
|
|
import (
|
|
"database/sql"
|
|
"fmt"
|
|
"os"
|
|
"path/filepath"
|
|
|
|
"github.com/tinyauthapp/tinyauth/internal/assets"
|
|
|
|
"github.com/golang-migrate/migrate/v4"
|
|
"github.com/golang-migrate/migrate/v4/database/sqlite3"
|
|
"github.com/golang-migrate/migrate/v4/source/iofs"
|
|
_ "modernc.org/sqlite"
|
|
)
|
|
|
|
func (app *BootstrapApp) SetupDatabase() error {
|
|
dir := filepath.Dir(app.config.Database.Path)
|
|
|
|
if err := os.MkdirAll(dir, 0750); err != nil {
|
|
return fmt.Errorf("failed to create database directory %s: %w", dir, err)
|
|
}
|
|
|
|
db, err := sql.Open("sqlite", app.config.Database.Path)
|
|
|
|
if err != nil {
|
|
return fmt.Errorf("failed to open database: %w", err)
|
|
}
|
|
|
|
// Close the database if there is an error during migration
|
|
defer func() {
|
|
if err != nil {
|
|
db.Close()
|
|
}
|
|
}()
|
|
|
|
// Limit to 1 connection to sequence writes, this may need to be revisited in the future
|
|
// if the sqlite connection starts being a bottleneck
|
|
db.SetMaxOpenConns(1)
|
|
|
|
migrations, err := iofs.New(assets.Migrations, "migrations")
|
|
|
|
if err != nil {
|
|
return fmt.Errorf("failed to create migrations: %w", err)
|
|
}
|
|
|
|
target, err := sqlite3.WithInstance(db, &sqlite3.Config{})
|
|
|
|
if err != nil {
|
|
return fmt.Errorf("failed to create sqlite3 instance: %w", err)
|
|
}
|
|
|
|
migrator, err := migrate.NewWithInstance("iofs", migrations, "sqlite3", target)
|
|
|
|
if err != nil {
|
|
return fmt.Errorf("failed to create migrator: %w", err)
|
|
}
|
|
|
|
if err := migrator.Up(); err != nil && err != migrate.ErrNoChange {
|
|
return fmt.Errorf("failed to migrate database: %w", err)
|
|
}
|
|
|
|
app.db = db
|
|
return nil
|
|
}
|
|
|
|
func (app *BootstrapApp) GetDB() *sql.DB {
|
|
return app.db
|
|
}
|