Skip to content
Snippets Groups Projects
db.go 3.11 KiB
Newer Older
Gabriel Zachmann's avatar
Gabriel Zachmann committed
package db

import (
	"database/sql"
	"database/sql/driver"
	"encoding/json"
Gabriel Zachmann's avatar
Gabriel Zachmann committed
	"fmt"

	"github.com/jmoiron/sqlx"
	log "github.com/sirupsen/logrus"

	"github.com/oidc-mytoken/server/internal/config"
	"github.com/oidc-mytoken/server/internal/db/cluster"
Gabriel Zachmann's avatar
Gabriel Zachmann committed
)

Gabriel Zachmann's avatar
Gabriel Zachmann committed

// Connect connects to the database using the mytoken config
func Connect() {
	if db != nil {
		log.Debug("Closing existing db connections")
		db.Close()
		log.Debug("Done")
	db = cluster.NewFromConfig(config.Get().DB)
Gabriel Zachmann's avatar
Gabriel Zachmann committed
}

// DB returns the database connection
// func DB() *sqlx.DB {
// 	return dbCon
// }
Gabriel Zachmann's avatar
Gabriel Zachmann committed

// NullString extends the sql.NullString
type NullString struct {
	sql.NullString
}

// MarshalJSON implements the json.Marshaler interface
func (s NullString) MarshalJSON() ([]byte, error) {
	return json.Marshal(s.String)
}

// UnmarshalJSON implements the json.Unmarshaler interface
func (s *NullString) UnmarshalJSON(data []byte) error {
	var str string
	if err := json.Unmarshal(data, &str); err != nil {
		return err
	}
	*s = NewNullString(str)
	return nil
}

// NewNullString creates a new NullString from the given string
func NewNullString(s string) NullString {
	if s == "" {
		return NullString{}
Gabriel Zachmann's avatar
Gabriel Zachmann committed
	}
	return NullString{
		sql.NullString{
			String: s,
			Valid:  true,
		},
Gabriel Zachmann's avatar
Gabriel Zachmann committed
	}
}
// BitBool is an implementation of a bool for the MySQL type BIT(1).
// This type allows you to avoid wasting an entire byte for MySQL's boolean type TINYINT.
type BitBool bool

// Value implements the driver.Valuer interface,
// and turns the BitBool into a bitfield (BIT(1)) for MySQL storage.
func (b BitBool) Value() (driver.Value, error) {
	if b {
		return []byte{1}, nil
	} else {
		return []byte{0}, nil
	}
}

// Scan implements the sql.Scanner interface,
// and turns the bitfield incoming from MySQL into a BitBool
func (b *BitBool) Scan(src interface{}) error {
	if src == nil {
		*b = false
		return nil
	}
	v, ok := src.([]byte)
	if !ok {
		return fmt.Errorf("bad []byte type assertion")
	}
	*b = v[0] == 1
	return nil
}

// Transact does a database transaction for the passed function
// func Transact(fn func(*sqlx.Tx) error) error {
// 	tx, err := DB().Beginx()
// 	if err != nil {
// 		return err
// 	}
// 	err = fn(tx)
// 	if err != nil {
// 		if e := tx.Rollback(); e != nil {
// 			log.WithError(err).Error()
// 		}
// 		return err
// 	}
// 	return tx.Commit()
// }

// Transact does a database transaction for the passed function
func Transact(fn func(*sqlx.Tx) error) error {

// RunWithinTransaction runs the passed function using the passed transaction; if nil is passed as tx a new transaction is created. This is basically a wrapper function, that works with a possible nil-tx
func RunWithinTransaction(tx *sqlx.Tx, fn func(*sqlx.Tx) error) error {
	return db.RunWithinTransaction(tx, fn)

// RunWithinTransaction runs the passed function using the passed transaction; if nil is passed as tx a new transaction is created. This is basically a wrapper function, that works with a possible nil-tx
// func RunWithinTransaction(tx *sqlx.Tx, fn func(*sqlx.Tx) error) error {
// 	if tx == nil {
// 		return Transact(fn)
// 	} else {
// 		return fn(tx)
// 	}
// }