Documentation ¶
Overview ¶
Package datastore is the database service abstraction layer
Index ¶
- Constants
- Variables
- func BuxWhere(tx buxWhereInterface, conditions map[string]interface{}, engine Engine) interface{}
- func IsSQLEngine(e Engine) bool
- func MarshalQueryParams(m QueryParams) graphql.Marshaler
- type Client
- func (c *Client) AutoMigrateDatabase(ctx context.Context, models ...interface{}) error
- func (c *Client) Close(ctx context.Context) error
- func (c *Client) CreateInBatches(ctx context.Context, models interface{}, batchSize int) error
- func (c *Client) CreateInBatchesMongo(ctx context.Context, models interface{}, batchSize int) error
- func (c *Client) Debug(on bool)
- func (c *Client) DebugLog(text string)
- func (c *Client) Engine() Engine
- func (c *Client) Execute(query string) *gorm.DB
- func (c *Client) GetDatabaseName() string
- func (c *Client) GetModel(ctx context.Context, model interface{}, conditions map[string]interface{}, ...) error
- func (c *Client) GetModelCount(ctx context.Context, model interface{}, conditions map[string]interface{}, ...) (int64, error)
- func (c *Client) GetModels(ctx context.Context, models interface{}, conditions map[string]interface{}, ...) error
- func (c *Client) GetModelsAggregate(ctx context.Context, models interface{}, conditions map[string]interface{}, ...) (map[string]interface{}, error)
- func (c *Client) GetMongoCollection(collectionName string) *mongo.Collection
- func (c *Client) GetMongoCollectionByTableName(tableName string) *mongo.Collection
- func (c *Client) GetTableName(modelName string) string
- func (c *Client) HasMigratedModel(modelType string) bool
- func (c *Client) IncrementModel(ctx context.Context, model interface{}, fieldName string, increment int64) (newValue int64, err error)
- func (c *Client) IndexExists(tableName, indexName string) (bool, error)
- func (c *Client) IndexMetadata(tableName, field string) error
- func (c *Client) IsAutoMigrate() bool
- func (c *Client) IsDebug() bool
- func (c *Client) IsNewRelicEnabled() bool
- func (c *Client) NewTx(ctx context.Context, fn func(*Transaction) error) error
- func (c *Client) Raw(query string) *gorm.DB
- func (c *Client) SaveModel(ctx context.Context, model interface{}, tx *Transaction, ...) error
- type ClientInterface
- type ClientOps
- func WithAutoMigrate(migrateModels ...interface{}) ClientOps
- func WithDebugging() ClientOps
- func WithLogger(customLogger logger.Interface) ClientOps
- func WithMongo(config *MongoDBConfig) ClientOps
- func WithMongoConnection(database *mongo.Database, tablePrefix string) ClientOps
- func WithNewRelic() ClientOps
- func WithSQL(engine Engine, configs []*SQLConfig) ClientOps
- func WithSQLConnection(engine Engine, sqlDB *sql.DB, tablePrefix string) ClientOps
- func WithSQLite(config *SQLiteConfig) ClientOps
- type CommonConfig
- type DatabaseLogWrapper
- type Engine
- type MongoDBConfig
- type QueryParams
- type SQLConfig
- type SQLiteConfig
- type StorageService
- type Transaction
Constants ¶
const ( // SortDesc will sort descending SortDesc = "desc" // SortAsc will sort ascending SortAsc = "asc" )
Defaults for library functionality
const ( Postgres = "postgres" JSON = "JSON" JSONB = "JSONB" )
index creation constants
Variables ¶
var ErrDuplicateKey = errors.New("duplicate key")
ErrDuplicateKey error when a record is inserted and conflicts with an existing record
var ErrNoResults = errors.New("no results found")
ErrNoResults error when no results are found
var ErrNoSourceFound = errors.New("no source database found in all given configurations")
ErrNoSourceFound is when no source database is found in all given configurations
var ErrUnknownCollection = errors.New("could not determine collection name from model")
ErrUnknownCollection is thrown when the collection can not be found using the model/name
var ErrUnknownSQL = errors.New("unknown sql implementation")
ErrUnknownSQL is an error when using a SQL engine that is not known for indexes and migrations
var ErrUnsupportedDriver = errors.New("sql driver unsupported")
ErrUnsupportedDriver is when the given SQL driver is not determined to be known or supported
var ErrUnsupportedEngine = errors.New("unsupported datastore engine")
ErrUnsupportedEngine is used when the engine given is not a known datastore engine
var SQLDatabases = []Engine{ MySQL, PostgreSQL, SQLite, }
SQLDatabases is the list of supported SQL databases (via GORM)
Functions ¶
func IsSQLEngine ¶
IsSQLEngine check whether the string already is in the slice
func MarshalQueryParams ¶ added in v0.2.14
func MarshalQueryParams(m QueryParams) graphql.Marshaler
MarshalQueryParams will marshal the custom type
Types ¶
type Client ¶
type Client struct {
// contains filtered or unexported fields
}
Client is the datastore client (configuration)
func (*Client) AutoMigrateDatabase ¶
AutoMigrateDatabase will detect the engine and migrate as needed
func (*Client) CreateInBatches ¶ added in v0.2.14
CreateInBatches create all the models given in batches
func (*Client) CreateInBatchesMongo ¶ added in v0.2.14
func (c *Client) CreateInBatchesMongo( ctx context.Context, models interface{}, batchSize int, ) error
CreateInBatchesMongo insert multiple models vai bulk.Write
func (*Client) GetDatabaseName ¶
GetDatabaseName will return the full database name for the given model name
func (*Client) GetModel ¶
func (c *Client) GetModel( ctx context.Context, model interface{}, conditions map[string]interface{}, timeout time.Duration, forceWriteDB bool, ) error
GetModel will get a model from the datastore
func (*Client) GetModelCount ¶ added in v0.2.18
func (c *Client) GetModelCount( ctx context.Context, model interface{}, conditions map[string]interface{}, timeout time.Duration, ) (int64, error)
GetModelCount will return a count of the model matching conditions
func (*Client) GetModels ¶
func (c *Client) GetModels( ctx context.Context, models interface{}, conditions map[string]interface{}, queryParams *QueryParams, fieldResults interface{}, timeout time.Duration, ) error
GetModels will return a slice of models based on the given conditions
func (*Client) GetModelsAggregate ¶ added in v0.2.19
func (c *Client) GetModelsAggregate(ctx context.Context, models interface{}, conditions map[string]interface{}, aggregateColumn string, timeout time.Duration) (map[string]interface{}, error)
GetModelsAggregate will return an aggregate count of the model matching conditions
func (*Client) GetMongoCollection ¶ added in v0.2.14
func (c *Client) GetMongoCollection( collectionName string, ) *mongo.Collection
GetMongoCollection will get the mongo collection for the given tableName
func (*Client) GetMongoCollectionByTableName ¶ added in v0.2.14
func (c *Client) GetMongoCollectionByTableName( tableName string, ) *mongo.Collection
GetMongoCollectionByTableName will get the mongo collection for the given tableName
func (*Client) GetTableName ¶
GetTableName will return the full table name for the given model name
func (*Client) HasMigratedModel ¶
HasMigratedModel will return if the model type has been migrated
func (*Client) IncrementModel ¶
func (c *Client) IncrementModel( ctx context.Context, model interface{}, fieldName string, increment int64, ) (newValue int64, err error)
IncrementModel will increment the given field atomically in the database and return the new value
func (*Client) IndexExists ¶
IndexExists check whether the given index exists in the datastore
func (*Client) IndexMetadata ¶
IndexMetadata check and creates the metadata json index
func (*Client) IsAutoMigrate ¶
IsAutoMigrate returns whether auto migration is on
func (*Client) IsNewRelicEnabled ¶
IsNewRelicEnabled will return if new relic is enabled
func (*Client) SaveModel ¶
func (c *Client) SaveModel( ctx context.Context, model interface{}, tx *Transaction, newRecord, commitTx bool, ) error
SaveModel will take care of creating or updating a model (primary key based) (abstracting the database)
value is a pointer to the model, IE: &Transaction{}
type ClientInterface ¶
type ClientInterface interface { StorageService Close(ctx context.Context) error Debug(on bool) DebugLog(text string) Engine() Engine GetDatabaseName() string GetTableName(modelName string) string GetMongoCollection(collectionName string) *mongo.Collection GetMongoCollectionByTableName(tableName string) *mongo.Collection IsAutoMigrate() bool IsDebug() bool IsNewRelicEnabled() bool }
ClientInterface is the Datastore client interface
type ClientOps ¶
type ClientOps func(c *clientOptions)
ClientOps allow functional options to be supplied that overwrite default client options.
func WithAutoMigrate ¶
func WithAutoMigrate(migrateModels ...interface{}) ClientOps
WithAutoMigrate will enable auto migrate database mode (given models)
Pointers of structs (IE: &models.Xpub{})
func WithLogger ¶
WithLogger will set the custom logger interface
func WithMongo ¶
func WithMongo(config *MongoDBConfig) ClientOps
WithMongo will set the datastore to use MongoDB
func WithMongoConnection ¶
WithMongoConnection will set the datastore to use an existing Mongo database connection
func WithSQL ¶
WithSQL will load a datastore using either an SQL database config or existing connection
func WithSQLConnection ¶
WithSQLConnection will set the datastore to an existing connection for MySQL or PostgreSQL
func WithSQLite ¶
func WithSQLite(config *SQLiteConfig) ClientOps
WithSQLite will set the datastore to use SQLite
type CommonConfig ¶
type CommonConfig struct { Debug bool `json:"debug" mapstructure:"debug"` // flag for debugging sql queries in logs MaxConnectionIdleTime time.Duration `json:"max_connection_idle_time" mapstructure:"max_connection_idle_time"` // 360 MaxConnectionTime time.Duration `json:"max_connection_time" mapstructure:"max_connection_time"` // 60 MaxIdleConnections int `json:"max_idle_connections" mapstructure:"max_idle_connections"` // 5 MaxOpenConnections int `json:"max_open_connections" mapstructure:"max_open_connections"` // 5 TablePrefix string `json:"table_prefix" mapstructure:"table_prefix"` // pre_users (pre) }
CommonConfig is the common configuration fields between engines
type DatabaseLogWrapper ¶ added in v0.2.14
DatabaseLogWrapper is a special wrapper for the GORM logger
type Engine ¶
type Engine string
Engine is the different engines that are supported (database)
const ( Empty Engine = "empty" MongoDB Engine = "mongodb" MySQL Engine = "mysql" PostgreSQL Engine = "postgresql" SQLite Engine = "sqlite" )
Supported engines (databases)
type MongoDBConfig ¶
type MongoDBConfig struct { CommonConfig `json:",inline" mapstructure:",squash"` // Common configuration DatabaseName string `json:"database_name" mapstructure:"database_name"` // The database name ExistingConnection *mongo.Database `json:"-" mapstructure:"-"` // Used for existing database connection Transactions bool `json:"transactions" mapstructure:"transactions"` // If it has transactions URI string `json:"uri" mapstructure:"uri"` // The connection string URI }
MongoDBConfig is the configuration for each MongoDB connection
type QueryParams ¶ added in v0.2.14
type QueryParams struct { Page int `json:"page,omitempty"` PageSize int `json:"page_size,omitempty"` OrderByField string `json:"order_by_field,omitempty"` SortDirection string `json:"sort_direction,omitempty"` }
QueryParams object to use when limiting and sorting database query results
func UnmarshalQueryParams ¶ added in v0.2.14
func UnmarshalQueryParams(v interface{}) (QueryParams, error)
UnmarshalQueryParams will unmarshal the custom type
type SQLConfig ¶
type SQLConfig struct { CommonConfig `json:",inline" mapstructure:",squash"` // Common configuration Driver string `json:"driver" mapstructure:"driver"` // mysql or postgresql ExistingConnection *sql.DB `json:"-" mapstructure:"-"` // Used for existing database connection Host string `json:"host" mapstructure:"host"` // database host IE: localhost Name string `json:"name" mapstructure:"name"` // database-name Password string `json:"password" mapstructure:"password" encrypted:"true"` // user-password Port string `json:"port" mapstructure:"port"` // 3306 Replica bool `json:"replica" mapstructure:"replica"` // True if it's a replica (Read-Only) SkipInitializeWithVersion bool `json:"skip_initialize_with_version" mapstructure:"skip_initialize_with_version"` // Skip using MySQL in test mode TimeZone string `json:"time_zone" mapstructure:"time_zone"` // timezone (IE: Asia/Shanghai) TxTimeout time.Duration `json:"tx_timeout" mapstructure:"tx_timeout"` // 5*time.Second User string `json:"user" mapstructure:"user"` // database username }
SQLConfig is the configuration for each SQL connection (mysql or postgresql)
type SQLiteConfig ¶
type SQLiteConfig struct { CommonConfig `json:",inline" mapstructure:",squash"` // Common configuration DatabasePath string `json:"database_path" mapstructure:"database_path"` // Location of a permanent database file (if NOT set, uses temporary memory) ExistingConnection gorm.ConnPool `json:"-" mapstructure:"-"` // Used for existing database connection }
SQLiteConfig is the configuration for each SQLite connection
type StorageService ¶
type StorageService interface { AutoMigrateDatabase(ctx context.Context, models ...interface{}) error CreateInBatches(ctx context.Context, models interface{}, batchSize int) error Execute(query string) *gorm.DB GetModel(ctx context.Context, model interface{}, conditions map[string]interface{}, timeout time.Duration, forceWriteDB bool) error GetModels(ctx context.Context, models interface{}, conditions map[string]interface{}, queryParams *QueryParams, fieldResults interface{}, timeout time.Duration) error GetModelCount(ctx context.Context, model interface{}, conditions map[string]interface{}, timeout time.Duration) (int64, error) GetModelsAggregate(ctx context.Context, models interface{}, conditions map[string]interface{}, aggregateColumn string, timeout time.Duration) (map[string]interface{}, error) HasMigratedModel(modelType string) bool IncrementModel(ctx context.Context, model interface{}, fieldName string, increment int64) (newValue int64, err error) IndexExists(tableName, indexName string) (bool, error) IndexMetadata(tableName, field string) error NewTx(ctx context.Context, fn func(*Transaction) error) error Raw(query string) *gorm.DB SaveModel(ctx context.Context, model interface{}, tx *Transaction, newRecord, commitTx bool) error }
StorageService is the storage related methods
type Transaction ¶
type Transaction struct {
// contains filtered or unexported fields
}
Transaction is the internal datastore transaction
func (*Transaction) CanCommit ¶
func (tx *Transaction) CanCommit() bool
CanCommit will return true if it can commit
func (*Transaction) Commit ¶
func (tx *Transaction) Commit() error
Commit will commit the transaction