Some checks failed
Backend Tests / Static Checks (push) Has been cancelled
Backend Tests / Tests (other) (push) Has been cancelled
Backend Tests / Tests (plugin) (push) Has been cancelled
Backend Tests / Tests (server) (push) Has been cancelled
Backend Tests / Tests (store) (push) Has been cancelled
Build Canary Image / build-frontend (push) Has been cancelled
Build Canary Image / build-push (linux/amd64) (push) Has been cancelled
Build Canary Image / build-push (linux/arm64) (push) Has been cancelled
Build Canary Image / merge (push) Has been cancelled
Frontend Tests / Lint (push) Has been cancelled
Frontend Tests / Build (push) Has been cancelled
Proto Linter / Lint Protos (push) Has been cancelled
58 lines
1.2 KiB
Go
58 lines
1.2 KiB
Go
package postgres
|
|
|
|
import (
|
|
"context"
|
|
"database/sql"
|
|
"log"
|
|
|
|
// Import the PostgreSQL driver.
|
|
_ "github.com/lib/pq"
|
|
"github.com/pkg/errors"
|
|
|
|
"github.com/usememos/memos/internal/profile"
|
|
"github.com/usememos/memos/store"
|
|
)
|
|
|
|
type DB struct {
|
|
db *sql.DB
|
|
profile *profile.Profile
|
|
}
|
|
|
|
func NewDB(profile *profile.Profile) (store.Driver, error) {
|
|
if profile == nil {
|
|
return nil, errors.New("profile is nil")
|
|
}
|
|
|
|
// Open the PostgreSQL connection
|
|
db, err := sql.Open("postgres", profile.DSN)
|
|
if err != nil {
|
|
log.Printf("Failed to open database: %s", err)
|
|
return nil, errors.Wrapf(err, "failed to open database: %s", profile.DSN)
|
|
}
|
|
|
|
var driver store.Driver = &DB{
|
|
db: db,
|
|
profile: profile,
|
|
}
|
|
|
|
// Return the DB struct
|
|
return driver, nil
|
|
}
|
|
|
|
func (d *DB) GetDB() *sql.DB {
|
|
return d.db
|
|
}
|
|
|
|
func (d *DB) Close() error {
|
|
return d.db.Close()
|
|
}
|
|
|
|
func (d *DB) IsInitialized(ctx context.Context) (bool, error) {
|
|
var exists bool
|
|
err := d.db.QueryRowContext(ctx, "SELECT EXISTS (SELECT 1 FROM information_schema.tables WHERE table_catalog = current_database() AND table_name = 'memo' AND table_type = 'BASE TABLE')").Scan(&exists)
|
|
if err != nil {
|
|
return false, errors.Wrap(err, "failed to check if database is initialized")
|
|
}
|
|
return exists, nil
|
|
}
|