306 lines
9.8 KiB
Go
306 lines
9.8 KiB
Go
package db
|
|
|
|
import (
|
|
"context"
|
|
"database/sql"
|
|
"fmt"
|
|
"regexp"
|
|
"strings"
|
|
|
|
gorp "github.com/go-gorp/gorp/v3"
|
|
)
|
|
|
|
// ErrDatabaseOp wraps an underlying err with a description of the operation
|
|
// that was being performed when the error occurred (insert, select, select
|
|
// one, exec, etc) and the table that the operation was being performed on.
|
|
type ErrDatabaseOp struct {
|
|
Op string
|
|
Table string
|
|
Err error
|
|
}
|
|
|
|
// noRows returns true when the underlying error is sql.ErrNoRows and indicates
|
|
// that the error was that no results were found.
|
|
func (e ErrDatabaseOp) noRows() bool {
|
|
return e.Err == sql.ErrNoRows
|
|
}
|
|
|
|
// duplicate returns true when the underlying error has a message with a prefix
|
|
// matching "Error 1062: Duplicate entry". This is the error prefixed returned
|
|
// by MariaDB when a duplicate row is to be inserted.
|
|
func (e ErrDatabaseOp) duplicate() bool {
|
|
return strings.HasPrefix(
|
|
e.Err.Error(),
|
|
"Error 1062: Duplicate entry")
|
|
}
|
|
|
|
// Error for an ErrDatabaseOp composes a message with context about the
|
|
// operation and table as well as the underlying Err's error message.
|
|
func (e ErrDatabaseOp) Error() string {
|
|
// If there is a table, include it in the context
|
|
if e.Table != "" {
|
|
return fmt.Sprintf(
|
|
"failed to %s %s: %s",
|
|
e.Op,
|
|
e.Table,
|
|
e.Err)
|
|
}
|
|
return fmt.Sprintf(
|
|
"failed to %s: %s",
|
|
e.Op,
|
|
e.Err)
|
|
}
|
|
|
|
// IsNoRows is a utility function for casting an error to ErrDatabaseOp and
|
|
// returning true if its wrapped err is sql.ErrNoRows. If the error is not an
|
|
// ErrDatabaseOp the return value of IsNoRows will always be false.
|
|
func IsNoRows(err error) bool {
|
|
// if the err is an ErrDatabaseOp instance, return its noRows() result to see
|
|
// if the inner err is sql.ErrNoRows
|
|
if dbErr, ok := err.(ErrDatabaseOp); ok {
|
|
return dbErr.noRows()
|
|
}
|
|
return false
|
|
}
|
|
|
|
// IsDuplicate is a utility function for casting an error to ErrDatabaseOp and
|
|
// returning a boolean indicating if it is a duplicate error or not. If the
|
|
// error is not an ErrDatabaseOp the return value of IsDuplicate will always be
|
|
// false.
|
|
func IsDuplicate(err error) bool {
|
|
// if the err is an ErrDatabaseOp instance, return its duplicate() result to
|
|
// see if the inner err indicates a duplicate row error.
|
|
if dbErr, ok := err.(ErrDatabaseOp); ok {
|
|
return dbErr.duplicate()
|
|
}
|
|
return false
|
|
}
|
|
|
|
// WrappedMap wraps a *gorp.DbMap such that its major functions wrap error
|
|
// results in ErrDatabaseOp instances before returning them to the caller.
|
|
type WrappedMap struct {
|
|
*gorp.DbMap
|
|
}
|
|
|
|
func (m *WrappedMap) Get(holder interface{}, keys ...interface{}) (interface{}, error) {
|
|
return WrappedExecutor{SqlExecutor: m.DbMap}.Get(holder, keys...)
|
|
}
|
|
|
|
func (m *WrappedMap) Insert(list ...interface{}) error {
|
|
return WrappedExecutor{SqlExecutor: m.DbMap}.Insert(list...)
|
|
}
|
|
|
|
func (m *WrappedMap) Update(list ...interface{}) (int64, error) {
|
|
return WrappedExecutor{SqlExecutor: m.DbMap}.Update(list...)
|
|
}
|
|
|
|
func (m *WrappedMap) Delete(list ...interface{}) (int64, error) {
|
|
return WrappedExecutor{SqlExecutor: m.DbMap}.Delete(list...)
|
|
}
|
|
|
|
func (m *WrappedMap) Select(holder interface{}, query string, args ...interface{}) ([]interface{}, error) {
|
|
return WrappedExecutor{SqlExecutor: m.DbMap}.Select(holder, query, args...)
|
|
}
|
|
|
|
func (m *WrappedMap) SelectOne(holder interface{}, query string, args ...interface{}) error {
|
|
return WrappedExecutor{SqlExecutor: m.DbMap}.SelectOne(holder, query, args...)
|
|
}
|
|
|
|
func (m *WrappedMap) Exec(query string, args ...interface{}) (sql.Result, error) {
|
|
return WrappedExecutor{SqlExecutor: m.DbMap}.Exec(query, args...)
|
|
}
|
|
|
|
func (m *WrappedMap) WithContext(ctx context.Context) gorp.SqlExecutor {
|
|
return WrappedExecutor{SqlExecutor: m.DbMap.WithContext(ctx)}
|
|
}
|
|
|
|
func (m *WrappedMap) Begin() (Transaction, error) {
|
|
tx, err := m.DbMap.Begin()
|
|
if err != nil {
|
|
return tx, ErrDatabaseOp{
|
|
Op: "begin transaction",
|
|
Err: err,
|
|
}
|
|
}
|
|
return WrappedTransaction{
|
|
Transaction: tx,
|
|
}, err
|
|
}
|
|
|
|
// WrappedTransaction wraps a *gorp.Transaction such that its major functions
|
|
// wrap error results in ErrDatabaseOp instances before returning them to the
|
|
// caller.
|
|
type WrappedTransaction struct {
|
|
*gorp.Transaction
|
|
}
|
|
|
|
func (tx WrappedTransaction) WithContext(ctx context.Context) gorp.SqlExecutor {
|
|
return WrappedExecutor{SqlExecutor: tx.Transaction.WithContext(ctx)}
|
|
}
|
|
|
|
func (tx WrappedTransaction) Commit() error {
|
|
return tx.Transaction.Commit()
|
|
}
|
|
|
|
func (tx WrappedTransaction) Rollback() error {
|
|
return tx.Transaction.Rollback()
|
|
}
|
|
|
|
func (tx WrappedTransaction) Get(holder interface{}, keys ...interface{}) (interface{}, error) {
|
|
return (WrappedExecutor{SqlExecutor: tx.Transaction}).Get(holder, keys...)
|
|
}
|
|
|
|
func (tx WrappedTransaction) Insert(list ...interface{}) error {
|
|
return (WrappedExecutor{SqlExecutor: tx.Transaction}).Insert(list...)
|
|
}
|
|
|
|
func (tx WrappedTransaction) Update(list ...interface{}) (int64, error) {
|
|
return (WrappedExecutor{SqlExecutor: tx.Transaction}).Update(list...)
|
|
}
|
|
|
|
func (tx WrappedTransaction) Delete(list ...interface{}) (int64, error) {
|
|
return (WrappedExecutor{SqlExecutor: tx.Transaction}).Delete(list...)
|
|
}
|
|
|
|
func (tx WrappedTransaction) Select(holder interface{}, query string, args ...interface{}) ([]interface{}, error) {
|
|
return (WrappedExecutor{SqlExecutor: tx.Transaction}).Select(holder, query, args...)
|
|
}
|
|
|
|
func (tx WrappedTransaction) SelectOne(holder interface{}, query string, args ...interface{}) error {
|
|
return (WrappedExecutor{SqlExecutor: tx.Transaction}).SelectOne(holder, query, args...)
|
|
}
|
|
|
|
func (tx WrappedTransaction) Exec(query string, args ...interface{}) (sql.Result, error) {
|
|
return (WrappedExecutor{SqlExecutor: tx.Transaction}).Exec(query, args...)
|
|
}
|
|
|
|
// WrappedExecutor wraps a gorp.SqlExecutor such that its major functions
|
|
// wrap error results in ErrDatabaseOp instances before returning them to the
|
|
// caller.
|
|
type WrappedExecutor struct {
|
|
gorp.SqlExecutor
|
|
}
|
|
|
|
func errForOp(operation string, err error, list []interface{}) ErrDatabaseOp {
|
|
table := "unknown"
|
|
if len(list) > 0 {
|
|
table = fmt.Sprintf("%T", list[0])
|
|
}
|
|
return ErrDatabaseOp{
|
|
Op: operation,
|
|
Table: table,
|
|
Err: err,
|
|
}
|
|
}
|
|
|
|
func errForQuery(query, operation string, err error, list []interface{}) ErrDatabaseOp {
|
|
// Extract the table from the query
|
|
table := tableFromQuery(query)
|
|
if table == "" && len(list) > 0 {
|
|
// If there's no table from the query but there was a list of holder types,
|
|
// use the type from the first element of the list and indicate we failed to
|
|
// extract a table from the query.
|
|
table = fmt.Sprintf("%T (unknown table)", list[0])
|
|
} else if table == "" {
|
|
// If there's no table from the query and no list of holders then all we can
|
|
// say is that the table is unknown.
|
|
table = "unknown table"
|
|
}
|
|
|
|
return ErrDatabaseOp{
|
|
Op: operation,
|
|
Table: table,
|
|
Err: err,
|
|
}
|
|
}
|
|
|
|
func (we WrappedExecutor) Get(holder interface{}, keys ...interface{}) (interface{}, error) {
|
|
res, err := we.SqlExecutor.Get(holder, keys...)
|
|
if err != nil {
|
|
return res, errForOp("get", err, []interface{}{holder})
|
|
}
|
|
return res, err
|
|
}
|
|
|
|
func (we WrappedExecutor) Insert(list ...interface{}) error {
|
|
if err := we.SqlExecutor.Insert(list...); err != nil {
|
|
return errForOp("insert", err, list)
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (we WrappedExecutor) Update(list ...interface{}) (int64, error) {
|
|
updatedRows, err := we.SqlExecutor.Update(list...)
|
|
if err != nil {
|
|
return updatedRows, errForOp("update", err, list)
|
|
}
|
|
return updatedRows, err
|
|
}
|
|
|
|
func (we WrappedExecutor) Delete(list ...interface{}) (int64, error) {
|
|
deletedRows, err := we.SqlExecutor.Delete(list...)
|
|
if err != nil {
|
|
return deletedRows, errForOp("delete", err, list)
|
|
}
|
|
return deletedRows, err
|
|
}
|
|
|
|
func (we WrappedExecutor) Select(holder interface{}, query string, args ...interface{}) ([]interface{}, error) {
|
|
result, err := we.SqlExecutor.Select(holder, query, args...)
|
|
if err != nil {
|
|
return result, errForQuery(query, "select", err, []interface{}{holder})
|
|
}
|
|
return result, err
|
|
}
|
|
|
|
func (we WrappedExecutor) SelectOne(holder interface{}, query string, args ...interface{}) error {
|
|
if err := we.SqlExecutor.SelectOne(holder, query, args...); err != nil {
|
|
return errForQuery(query, "select one", err, []interface{}{holder})
|
|
}
|
|
return nil
|
|
}
|
|
|
|
var (
|
|
// selectTableRegexp matches the table name from an SQL select statement
|
|
selectTableRegexp = regexp.MustCompile(`(?i)^\s*select\s+[a-z\d\.\(\), \_\*` + "`" + `]+\s+from\s+([a-z\d\_,` + "`" + `]+)`)
|
|
// insertTableRegexp matches the table name from an SQL insert statement
|
|
insertTableRegexp = regexp.MustCompile(`(?i)^\s*insert\s+into\s+([a-z\d \_,` + "`" + `]+)\s+(?:set|\()`)
|
|
// updateTableRegexp matches the table name from an SQL update statement
|
|
updateTableRegexp = regexp.MustCompile(`(?i)^\s*update\s+([a-z\d \_,` + "`" + `]+)\s+set`)
|
|
// deleteTableRegexp matches the table name from an SQL delete statement
|
|
deleteTableRegexp = regexp.MustCompile(`(?i)^\s*delete\s+from\s+([a-z\d \_,` + "`" + `]+)\s+where`)
|
|
|
|
// tableRegexps is a list of regexps that tableFromQuery will try to use in
|
|
// succession to find the table name for an SQL query. While tableFromQuery
|
|
// isn't used by the higher level gorp Insert/Update/Select/etc functions we
|
|
// include regexps for matching inserts, updates, selects, etc because we want
|
|
// to match the correct table when these types of queries are run through
|
|
// Exec().
|
|
tableRegexps = []*regexp.Regexp{
|
|
selectTableRegexp,
|
|
insertTableRegexp,
|
|
updateTableRegexp,
|
|
deleteTableRegexp,
|
|
}
|
|
)
|
|
|
|
// tableFromQuery uses the tableRegexps on the provided query to return the
|
|
// associated table name or an empty string if it can't be determined from the
|
|
// query.
|
|
func tableFromQuery(query string) string {
|
|
for _, r := range tableRegexps {
|
|
if matches := r.FindStringSubmatch(query); len(matches) >= 2 {
|
|
return matches[1]
|
|
}
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (we WrappedExecutor) Exec(query string, args ...interface{}) (sql.Result, error) {
|
|
res, err := we.SqlExecutor.Exec(query, args...)
|
|
if err != nil {
|
|
return res, errForQuery(query, "exec", err, args)
|
|
}
|
|
return res, nil
|
|
}
|