2019-01-24 20:15:10 +00:00
|
|
|
// Copyright (C) 2019 Storj Labs, Inc.
|
2018-12-05 09:35:50 +00:00
|
|
|
// See LICENSE for copying information.
|
|
|
|
|
|
|
|
package satellitedb
|
|
|
|
|
|
|
|
import (
|
2018-12-07 14:46:42 +00:00
|
|
|
"github.com/zeebo/errs"
|
2019-02-14 21:55:21 +00:00
|
|
|
"go.uber.org/zap"
|
2018-12-07 14:46:42 +00:00
|
|
|
|
2019-11-14 19:46:15 +00:00
|
|
|
"storj.io/storj/private/dbutil"
|
|
|
|
"storj.io/storj/private/dbutil/pgutil"
|
2018-12-27 09:56:25 +00:00
|
|
|
"storj.io/storj/satellite"
|
2019-07-28 06:55:36 +01:00
|
|
|
"storj.io/storj/satellite/accounting"
|
2019-06-19 13:02:37 +01:00
|
|
|
"storj.io/storj/satellite/attribution"
|
2019-07-28 06:55:36 +01:00
|
|
|
"storj.io/storj/satellite/audit"
|
2019-01-16 20:23:28 +00:00
|
|
|
"storj.io/storj/satellite/console"
|
2019-09-25 18:12:44 +01:00
|
|
|
"storj.io/storj/satellite/gracefulexit"
|
2019-03-27 10:24:35 +00:00
|
|
|
"storj.io/storj/satellite/orders"
|
2019-07-28 06:55:36 +01:00
|
|
|
"storj.io/storj/satellite/overlay"
|
2019-10-10 18:12:23 +01:00
|
|
|
"storj.io/storj/satellite/payments/stripecoinpayments"
|
2019-07-28 06:55:36 +01:00
|
|
|
"storj.io/storj/satellite/repair/irreparable"
|
|
|
|
"storj.io/storj/satellite/repair/queue"
|
2019-06-24 21:51:54 +01:00
|
|
|
"storj.io/storj/satellite/rewards"
|
2018-12-05 09:35:50 +00:00
|
|
|
dbx "storj.io/storj/satellite/satellitedb/dbx"
|
|
|
|
)
|
|
|
|
|
2018-12-07 14:46:42 +00:00
|
|
|
var (
|
|
|
|
// Error is the default satellitedb errs class
|
|
|
|
Error = errs.Class("satellitedb")
|
|
|
|
)
|
|
|
|
|
2018-12-05 09:35:50 +00:00
|
|
|
// DB contains access to different database tables
|
|
|
|
type DB struct {
|
2019-12-02 21:05:21 +00:00
|
|
|
log *zap.Logger
|
|
|
|
db *dbx.DB
|
|
|
|
driver string
|
|
|
|
implementation dbutil.Implementation
|
|
|
|
source string
|
2018-12-05 09:35:50 +00:00
|
|
|
}
|
|
|
|
|
2019-10-18 20:03:10 +01:00
|
|
|
// New creates instance of database supports postgres
|
2019-02-14 21:55:21 +00:00
|
|
|
func New(log *zap.Logger, databaseURL string) (satellite.DB, error) {
|
2019-12-02 21:05:21 +00:00
|
|
|
driver, source, implementation, err := dbutil.SplitConnStr(databaseURL)
|
2018-12-05 09:35:50 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2019-10-18 20:03:10 +01:00
|
|
|
if driver != "postgres" {
|
|
|
|
return nil, Error.New("unsupported driver %q", driver)
|
2019-03-12 13:29:13 +00:00
|
|
|
}
|
2019-10-18 20:03:10 +01:00
|
|
|
|
|
|
|
source = pgutil.CheckApplicationName(source)
|
|
|
|
|
2018-12-12 13:15:34 +00:00
|
|
|
db, err := dbx.Open(driver, source)
|
2018-12-05 09:35:50 +00:00
|
|
|
if err != nil {
|
2018-12-07 14:46:42 +00:00
|
|
|
return nil, Error.New("failed opening database %q, %q: %v",
|
2018-12-12 13:15:34 +00:00
|
|
|
driver, source, err)
|
2018-12-05 09:35:50 +00:00
|
|
|
}
|
2019-05-14 16:13:18 +01:00
|
|
|
log.Debug("Connected to:", zap.String("db source", source))
|
2018-12-27 09:56:25 +00:00
|
|
|
|
2019-06-04 22:30:21 +01:00
|
|
|
dbutil.Configure(db.DB, mon)
|
2019-05-21 15:30:06 +01:00
|
|
|
|
2019-12-02 21:05:21 +00:00
|
|
|
core := &DB{log: log, db: db, driver: driver, source: source, implementation: implementation}
|
2018-12-27 09:56:25 +00:00
|
|
|
return core, nil
|
2018-12-05 09:35:50 +00:00
|
|
|
}
|
|
|
|
|
2019-02-13 16:06:34 +00:00
|
|
|
// Close is used to close db connection
|
|
|
|
func (db *DB) Close() error {
|
|
|
|
return db.db.Close()
|
|
|
|
}
|
|
|
|
|
2019-02-14 21:55:21 +00:00
|
|
|
// TestDBAccess for raw database access,
|
|
|
|
// should not be used outside of migration tests.
|
|
|
|
func (db *DB) TestDBAccess() *dbx.DB { return db.db }
|
|
|
|
|
2019-08-26 17:49:42 +01:00
|
|
|
// PeerIdentities returns a storage for peer identities
|
|
|
|
func (db *DB) PeerIdentities() overlay.PeerIdentities {
|
|
|
|
return &peerIdentities{db: db.db}
|
|
|
|
}
|
|
|
|
|
2019-06-19 13:02:37 +01:00
|
|
|
// Attribution is a getter for value attribution repository
|
|
|
|
func (db *DB) Attribution() attribution.DB {
|
|
|
|
return &attributionDB{db: db.db}
|
2019-06-18 14:06:33 +01:00
|
|
|
}
|
|
|
|
|
2018-12-17 20:14:16 +00:00
|
|
|
// OverlayCache is a getter for overlay cache repository
|
2019-01-15 16:08:45 +00:00
|
|
|
func (db *DB) OverlayCache() overlay.DB {
|
2018-12-27 09:56:25 +00:00
|
|
|
return &overlaycache{db: db.db}
|
2018-12-17 20:14:16 +00:00
|
|
|
}
|
2018-12-05 09:35:50 +00:00
|
|
|
|
2018-12-21 15:11:19 +00:00
|
|
|
// RepairQueue is a getter for RepairQueue repository
|
|
|
|
func (db *DB) RepairQueue() queue.RepairQueue {
|
2019-12-03 05:21:46 +00:00
|
|
|
return &repairQueue{db: db.db, dbType: db.implementation}
|
2018-12-21 15:11:19 +00:00
|
|
|
}
|
2018-12-05 09:35:50 +00:00
|
|
|
|
2019-05-10 20:05:42 +01:00
|
|
|
// StoragenodeAccounting returns database for tracking storagenode usage
|
|
|
|
func (db *DB) StoragenodeAccounting() accounting.StoragenodeAccounting {
|
|
|
|
return &StoragenodeAccounting{db: db.db}
|
|
|
|
}
|
|
|
|
|
|
|
|
// ProjectAccounting returns database for tracking project data use
|
|
|
|
func (db *DB) ProjectAccounting() accounting.ProjectAccounting {
|
|
|
|
return &ProjectAccounting{db: db.db}
|
2018-12-14 14:27:21 +00:00
|
|
|
}
|
2018-12-05 09:35:50 +00:00
|
|
|
|
2018-12-10 19:08:45 +00:00
|
|
|
// Irreparable returns database for storing segments that failed repair
|
|
|
|
func (db *DB) Irreparable() irreparable.DB {
|
|
|
|
return &irreparableDB{db: db.db}
|
|
|
|
}
|
|
|
|
|
2019-01-16 20:23:28 +00:00
|
|
|
// Console returns database for storing users, projects and api keys
|
|
|
|
func (db *DB) Console() console.DB {
|
|
|
|
return &ConsoleDB{
|
|
|
|
db: db.db,
|
|
|
|
methods: db.db,
|
|
|
|
}
|
|
|
|
}
|
2019-03-27 10:24:35 +00:00
|
|
|
|
2019-06-24 21:51:54 +01:00
|
|
|
// Rewards returns database for storing offers
|
|
|
|
func (db *DB) Rewards() rewards.DB {
|
|
|
|
return &offersDB{db: db.db}
|
2019-06-04 20:17:01 +01:00
|
|
|
}
|
|
|
|
|
2019-03-27 10:24:35 +00:00
|
|
|
// Orders returns database for storing orders
|
|
|
|
func (db *DB) Orders() orders.DB {
|
|
|
|
return &ordersDB{db: db.db}
|
|
|
|
}
|
2019-05-22 15:50:22 +01:00
|
|
|
|
|
|
|
// Containment returns database for storing pending audit info
|
2019-05-23 15:37:23 +01:00
|
|
|
func (db *DB) Containment() audit.Containment {
|
2019-05-22 15:50:22 +01:00
|
|
|
return &containment{db: db.db}
|
|
|
|
}
|
2019-09-25 18:12:44 +01:00
|
|
|
|
|
|
|
// GracefulExit returns database for graceful exit
|
|
|
|
func (db *DB) GracefulExit() gracefulexit.DB {
|
|
|
|
return &gracefulexitDB{db: db.db}
|
|
|
|
}
|
2019-10-10 18:12:23 +01:00
|
|
|
|
2019-11-05 13:16:02 +00:00
|
|
|
// StripeCoinPayments returns database for stripecoinpayments.
|
|
|
|
func (db *DB) StripeCoinPayments() stripecoinpayments.DB {
|
|
|
|
return &stripeCoinPaymentsDB{db: db.db}
|
2019-10-17 15:04:50 +01:00
|
|
|
}
|