26f897c1ec
release / release-please (push) Failing after 1m49s
docs / build (push) Failing after 6m34s
release / build-and-upload (arm64, linux) (push) Has been cancelled
release / build-and-upload (arm64, windows) (push) Has been cancelled
release / build-darwin (amd64, darwin) (push) Has been cancelled
release / checksums (push) Has been cancelled
release / finalize (push) Has been cancelled
release / build-darwin (arm64, darwin) (push) Has been cancelled
release / build-and-upload (amd64, linux) (push) Has been cancelled
release / build-and-upload (amd64, windows) (push) Has been cancelled
docs / deploy (push) Has been cancelled
71 lines
1.7 KiB
Go
71 lines
1.7 KiB
Go
package db
|
|
|
|
import (
|
|
"crypto/rand"
|
|
"database/sql"
|
|
"fmt"
|
|
"strings"
|
|
"sync"
|
|
"time"
|
|
|
|
"github.com/oklog/ulid/v2"
|
|
_ "modernc.org/sqlite"
|
|
)
|
|
|
|
var (
|
|
entropyMu sync.Mutex
|
|
entropy = ulid.Monotonic(rand.Reader, 0)
|
|
)
|
|
|
|
// DB wraps a SQLite database connection.
|
|
type DB struct {
|
|
sql *sql.DB
|
|
}
|
|
|
|
// Open opens (or creates) the SQLite database at path and runs migrations.
|
|
func Open(path string) (*DB, error) {
|
|
sqlDB, err := sql.Open("sqlite", path+"?_pragma=journal_mode(wal)&_pragma=foreign_keys(on)&_pragma=busy_timeout(5000)")
|
|
if err != nil {
|
|
return nil, fmt.Errorf("open db: %w", err)
|
|
}
|
|
sqlDB.SetMaxOpenConns(1)
|
|
if _, err := sqlDB.Exec(schemaSQL); err != nil {
|
|
sqlDB.Close()
|
|
return nil, fmt.Errorf("migrate db: %w", err)
|
|
}
|
|
for _, stmt := range migrationStatements {
|
|
if _, err := sqlDB.Exec(stmt); err != nil && !isDuplicateColumnErr(err) {
|
|
sqlDB.Close()
|
|
return nil, fmt.Errorf("migrate db: %w", err)
|
|
}
|
|
}
|
|
return &DB{sql: sqlDB}, nil
|
|
}
|
|
|
|
// isDuplicateColumnErr reports whether err is SQLite's "duplicate column name"
|
|
// error, which ALTER TABLE ADD COLUMN emits when the column already exists.
|
|
// Treating this as a no-op keeps migrations idempotent without a version table.
|
|
func isDuplicateColumnErr(err error) bool {
|
|
if err == nil {
|
|
return false
|
|
}
|
|
return strings.Contains(err.Error(), "duplicate column name")
|
|
}
|
|
|
|
// Close closes the database connection.
|
|
func (d *DB) Close() error {
|
|
return d.sql.Close()
|
|
}
|
|
|
|
// newID generates a new ULID with monotonic ordering.
|
|
func newID() string {
|
|
entropyMu.Lock()
|
|
defer entropyMu.Unlock()
|
|
return ulid.MustNew(ulid.Timestamp(time.Now()), entropy).String()
|
|
}
|
|
|
|
// now returns the current unix timestamp in seconds.
|
|
func now() int64 {
|
|
return time.Now().Unix()
|
|
}
|