2ff0d9d435
* integrate console api keys with buckets in pointerdb * fix test * fix tests kvmetainfo * linter fix * disable account activation * fix test * review fixes * fix comments * little refactoring * remove debug println * fix typo * disable activation in a propper way * fix test * fix imports * fix uplink count in testplanet * move key creation to planet.newUplink
117 lines
2.5 KiB
Go
117 lines
2.5 KiB
Go
// Copyright (C) 2019 Storj Labs, Inc.
|
|
// See LICENSE for copying information.
|
|
|
|
package satellitedb
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/zeebo/errs"
|
|
|
|
"storj.io/storj/internal/migrate"
|
|
"storj.io/storj/satellite/console"
|
|
dbx "storj.io/storj/satellite/satellitedb/dbx"
|
|
)
|
|
|
|
// ConsoleDB contains access to different satellite databases
|
|
type ConsoleDB struct {
|
|
db *dbx.DB
|
|
tx *dbx.Tx
|
|
|
|
methods dbx.Methods
|
|
}
|
|
|
|
// NewConsoleDB - constructor for ConsoleDB
|
|
func NewConsoleDB(driver, source string) (*ConsoleDB, error) {
|
|
db, err := dbx.Open(driver, source)
|
|
if err != nil {
|
|
return nil, Error.New("failed opening database %q, %q: %v",
|
|
driver, source, err)
|
|
}
|
|
|
|
database := &ConsoleDB{
|
|
db: db,
|
|
methods: db,
|
|
}
|
|
|
|
return database, nil
|
|
}
|
|
|
|
// Users is getter a for Users repository
|
|
func (db *ConsoleDB) Users() console.Users {
|
|
return &users{db.methods}
|
|
}
|
|
|
|
// Projects is a getter for Projects repository
|
|
func (db *ConsoleDB) Projects() console.Projects {
|
|
return &projects{db.methods}
|
|
}
|
|
|
|
// ProjectMembers is a getter for ProjectMembers repository
|
|
func (db *ConsoleDB) ProjectMembers() console.ProjectMembers {
|
|
return &projectMembers{db.methods, db.db}
|
|
}
|
|
|
|
// APIKeys is a getter for APIKeys repository
|
|
func (db *ConsoleDB) APIKeys() console.APIKeys {
|
|
return &apikeys{db.methods}
|
|
}
|
|
|
|
// CreateTables is a method for creating all tables for satellitedb
|
|
func (db *ConsoleDB) CreateTables() error {
|
|
if db.db == nil {
|
|
return errs.New("Connection is closed")
|
|
}
|
|
return migrate.Create("satellitedb", db.db)
|
|
}
|
|
|
|
// Close is used to close db connection
|
|
func (db *ConsoleDB) Close() error {
|
|
if db.db == nil {
|
|
return errs.New("Connection is closed")
|
|
}
|
|
return db.db.Close()
|
|
}
|
|
|
|
// BeginTx is a method for opening transaction
|
|
func (db *ConsoleDB) BeginTx(ctx context.Context) (console.DBTx, error) {
|
|
if db.db == nil {
|
|
return nil, errs.New("DB is not initialized!")
|
|
}
|
|
|
|
tx, err := db.db.Open(ctx)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
return &DBTx{
|
|
ConsoleDB: &ConsoleDB{
|
|
tx: tx,
|
|
methods: tx,
|
|
},
|
|
}, nil
|
|
}
|
|
|
|
// DBTx extends Database with transaction scope
|
|
type DBTx struct {
|
|
*ConsoleDB
|
|
}
|
|
|
|
// Commit is a method for committing and closing transaction
|
|
func (db *DBTx) Commit() error {
|
|
if db.tx == nil {
|
|
return errs.New("begin transaction before commit it!")
|
|
}
|
|
|
|
return db.tx.Commit()
|
|
}
|
|
|
|
// Rollback is a method for rollback and closing transaction
|
|
func (db *DBTx) Rollback() error {
|
|
if db.tx == nil {
|
|
return errs.New("begin transaction before rollback it!")
|
|
}
|
|
|
|
return db.tx.Rollback()
|
|
}
|