move handlers to root folder
This commit is contained in:
300
dbHandler.go
Normal file
300
dbHandler.go
Normal file
@@ -0,0 +1,300 @@
|
||||
package AccessHandler
|
||||
|
||||
import (
|
||||
"errors"
|
||||
"fmt"
|
||||
"reflect"
|
||||
"strings"
|
||||
|
||||
"gitea.tecamino.com/paadi/tecamino-logger/logging"
|
||||
"github.com/glebarez/sqlite"
|
||||
"gorm.io/gorm"
|
||||
)
|
||||
|
||||
// DBHandler
|
||||
//
|
||||
// Description:
|
||||
//
|
||||
// Wraps the GORM database connection and provides helper methods for
|
||||
// common CRUD operations, as well as integrated logging for traceability.
|
||||
//
|
||||
// Fields:
|
||||
// - db: Active GORM database connection.
|
||||
// - logger: Pointer to a custom logger instance for structured logging.
|
||||
type DBHandler struct {
|
||||
db *gorm.DB
|
||||
logger *logging.Logger
|
||||
}
|
||||
|
||||
// NewDBHandler
|
||||
//
|
||||
// Description:
|
||||
//
|
||||
// Creates a new database handler using the specified SQLite database file.
|
||||
//
|
||||
// Behavior:
|
||||
// 1. Opens a GORM connection to the database file at `dbPath`.
|
||||
// 2. Wraps it in a `DBHandler` struct with logging support.
|
||||
//
|
||||
// Parameters:
|
||||
// - dbPath: Path to the SQLite database file.
|
||||
// - logger: Logging instance to record DB operations.
|
||||
//
|
||||
// Returns:
|
||||
// - dH: A pointer to the initialized `DBHandler`.
|
||||
// - err: Any error encountered during database connection.
|
||||
func NewDBHandler(dbPath string, logger *logging.Logger) (dH *DBHandler, err error) {
|
||||
dH = &DBHandler{logger: logger}
|
||||
logger.Debug("NewDBHandler", "open database "+dbPath)
|
||||
dH.db, err = gorm.Open(sqlite.Open(dbPath), &gorm.Config{})
|
||||
return
|
||||
}
|
||||
|
||||
// addNewTable
|
||||
//
|
||||
// Description:
|
||||
//
|
||||
// Uses GORM’s `AutoMigrate` to create or update the database schema
|
||||
// for the provided model type.
|
||||
//
|
||||
// Parameters:
|
||||
// - model: Struct type representing the database table schema.
|
||||
//
|
||||
// Returns:
|
||||
// - error: Any migration error encountered.
|
||||
func (dH *DBHandler) addNewTable(model any) error {
|
||||
return dH.db.AutoMigrate(&model)
|
||||
}
|
||||
|
||||
// addNewColum
|
||||
//
|
||||
// Description:
|
||||
//
|
||||
// Inserts a new record into the database table corresponding to `model`.
|
||||
//
|
||||
// Parameters:
|
||||
// - model: Struct instance containing values to be inserted.
|
||||
//
|
||||
// Returns:
|
||||
// - error: Any error encountered during record creation.
|
||||
func (dH *DBHandler) addNewColum(model any) error {
|
||||
return dH.db.Create(model).Error
|
||||
}
|
||||
|
||||
// getById
|
||||
//
|
||||
// Description:
|
||||
//
|
||||
// Retrieves a record (or all records) from a table by numeric ID.
|
||||
//
|
||||
// Behavior:
|
||||
// - If `id == 0`, returns all records in the table.
|
||||
// - Otherwise, fetches the record matching the given ID.
|
||||
//
|
||||
// Parameters:
|
||||
// - model: Pointer to a slice or struct to store the result.
|
||||
// - id: Numeric ID to query by.
|
||||
//
|
||||
// Returns:
|
||||
// - error: Any query error or “not found” message.
|
||||
func (dH *DBHandler) getById(model any, id uint) error {
|
||||
dH.logger.Debug("getById", "find id "+fmt.Sprint(id))
|
||||
|
||||
if id == 0 {
|
||||
return dH.db.Find(model).Error
|
||||
}
|
||||
|
||||
err := dH.db.First(model, id).Error
|
||||
if errors.Is(err, gorm.ErrRecordNotFound) {
|
||||
return fmt.Errorf("no record found for id: %v", id)
|
||||
} else if err != nil {
|
||||
return fmt.Errorf("query failed: %w", err)
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
// getByKey
|
||||
//
|
||||
// Description:
|
||||
//
|
||||
// Retrieves one or more records matching a key/value pair.
|
||||
//
|
||||
// Behavior:
|
||||
// - If `LikeSearch` is true, performs a SQL LIKE query.
|
||||
// - Otherwise, performs an exact match query.
|
||||
//
|
||||
// Parameters:
|
||||
// - model: Pointer to a slice or struct to store results.
|
||||
// - key: Column name (e.g., "email").
|
||||
// - value: Value to match or partially match.
|
||||
// - LikeSearch: If true, replaces '*' with '%' for wildcard matching.
|
||||
//
|
||||
// Returns:
|
||||
// - error: Any database query error.
|
||||
func (dH *DBHandler) getByKey(model any, key string, value any, LikeSearch bool) error {
|
||||
if LikeSearch {
|
||||
value = strings.ReplaceAll(fmt.Sprint(value), "*", "%")
|
||||
dH.logger.Debug("getByKey", "find like key "+key+" value "+fmt.Sprint(value))
|
||||
return dH.db.Where(key+" LIKE ?", value).Find(model).Error
|
||||
}
|
||||
|
||||
dH.logger.Debug("getByKey", "find equal key "+key+" value "+fmt.Sprint(value))
|
||||
return dH.db.Find(model, key+" = ?", value).Error
|
||||
}
|
||||
|
||||
// updateValuesById
|
||||
//
|
||||
// Description:
|
||||
//
|
||||
// Updates record fields based on their unique ID.
|
||||
//
|
||||
// Behavior:
|
||||
// 1. Confirms that `model` is a pointer to a struct.
|
||||
// 2. Fetches the record by ID.
|
||||
// 3. Updates all non-zero fields using `gorm.Model.Updates`.
|
||||
//
|
||||
// Parameters:
|
||||
// - model: Pointer to struct containing new values.
|
||||
// - id: Numeric ID of the record to update.
|
||||
//
|
||||
// Returns:
|
||||
// - error: If the model is invalid or query/update fails.
|
||||
func (dH *DBHandler) updateValuesById(model any, id uint) error {
|
||||
dH.logger.Debug("updateValuesById", "model"+fmt.Sprint(model))
|
||||
modelType := reflect.TypeOf(model)
|
||||
if modelType.Kind() != reflect.Ptr {
|
||||
return errors.New("model must be a pointer to struct")
|
||||
}
|
||||
|
||||
lookUpModel := reflect.New(modelType.Elem()).Interface()
|
||||
if err := dH.getById(lookUpModel, id); err != nil {
|
||||
return err
|
||||
}
|
||||
return dH.db.Model(lookUpModel).Updates(model).Error
|
||||
}
|
||||
|
||||
// updateValuesByKey
|
||||
//
|
||||
// Description:
|
||||
//
|
||||
// Updates records based on a key/value match.
|
||||
//
|
||||
// Behavior:
|
||||
// 1. Confirms model type.
|
||||
// 2. Fetches the matching record(s) using `getByKey`.
|
||||
// 3. Updates all non-zero fields.
|
||||
//
|
||||
// Parameters:
|
||||
// - model: Pointer to struct containing updated values.
|
||||
// - key: Column name to filter by.
|
||||
// - value: Value to match.
|
||||
//
|
||||
// Returns:
|
||||
// - error: Any query or update error.
|
||||
func (dH *DBHandler) updateValuesByKey(model any, key string, value any) error {
|
||||
dH.logger.Debug("updateValuesByKey", "model"+fmt.Sprint(model))
|
||||
modelType := reflect.TypeOf(model)
|
||||
if modelType.Kind() != reflect.Ptr {
|
||||
return errors.New("model must be a pointer to struct")
|
||||
}
|
||||
|
||||
lookUpModel := reflect.New(modelType.Elem()).Interface()
|
||||
if err := dH.getByKey(lookUpModel, key, value, false); err != nil {
|
||||
return err
|
||||
}
|
||||
return dH.db.Model(lookUpModel).Updates(model).Error
|
||||
}
|
||||
|
||||
// deleteById
|
||||
//
|
||||
// Description:
|
||||
//
|
||||
// Deletes records by their ID(s).
|
||||
//
|
||||
// Behavior:
|
||||
// - If the first ID == 0, all records in the table are deleted.
|
||||
// - Otherwise, deletes the provided IDs.
|
||||
//
|
||||
// Parameters:
|
||||
// - model: Model struct type representing the table.
|
||||
// - id: Variadic list of IDs to delete.
|
||||
//
|
||||
// Returns:
|
||||
// - error: Any deletion error.
|
||||
func (dH *DBHandler) deleteById(model any, id ...uint) error {
|
||||
if id[0] == 0 {
|
||||
dH.logger.Debug("deleteById", "delete all")
|
||||
return dH.db.Where("1 = 1").Delete(model).Error
|
||||
}
|
||||
|
||||
dH.logger.Debug("deleteById", "delete ids"+fmt.Sprint(id))
|
||||
if err := dH.exists(model, "id", id, false); err != nil {
|
||||
return err
|
||||
}
|
||||
return dH.db.Delete(model, id).Error
|
||||
}
|
||||
|
||||
// deleteByKey
|
||||
//
|
||||
// Description:
|
||||
//
|
||||
// Deletes records that match a key/value pair.
|
||||
//
|
||||
// Behavior:
|
||||
// - Supports LIKE queries if `LikeSearch` is true.
|
||||
//
|
||||
// Parameters:
|
||||
// - model: Model struct type representing the table.
|
||||
// - key: Column name to filter by.
|
||||
// - value: Value to match.
|
||||
// - LikeSearch: Whether to use wildcard search.
|
||||
//
|
||||
// Returns:
|
||||
// - error: Any deletion error.
|
||||
func (dH *DBHandler) deleteByKey(model any, key string, value any, LikeSearch bool) error {
|
||||
if LikeSearch {
|
||||
value = strings.ReplaceAll(fmt.Sprint(value), "*", "%")
|
||||
dH.logger.Debug("deleteByKey", "delete like key "+key+" value "+fmt.Sprint(value))
|
||||
return dH.db.Where(key+" LIKE ?", value).Delete(model).Error
|
||||
}
|
||||
|
||||
dH.logger.Debug("deleteByKey", "delete equal key "+key+" value "+fmt.Sprint(value))
|
||||
return dH.db.Where(key+" = ?", value).Delete(model).Error
|
||||
}
|
||||
|
||||
// exists
|
||||
//
|
||||
// Description:
|
||||
//
|
||||
// Checks whether a record exists matching the specified key/value filter.
|
||||
//
|
||||
// Behavior:
|
||||
// - Performs a `First` query on the database.
|
||||
// - If `LikeSearch` is true, performs a LIKE query.
|
||||
// - Returns an error if the record does not exist or query fails.
|
||||
//
|
||||
// Parameters:
|
||||
// - model: Model struct type to search.
|
||||
// - key: Column name to filter by.
|
||||
// - value: Value to match.
|
||||
// - LikeSearch: Whether to use wildcard search.
|
||||
//
|
||||
// Returns:
|
||||
// - error: “no record found” or DB error.
|
||||
func (dH *DBHandler) exists(model any, key string, value any, LikeSearch bool) (err error) {
|
||||
if LikeSearch {
|
||||
value = strings.ReplaceAll(fmt.Sprint(value), "*", "%")
|
||||
key = key + " LIKE ?"
|
||||
} else {
|
||||
key = key + " = ?"
|
||||
}
|
||||
|
||||
dH.logger.Debug("exists", "check if exists key "+key+" value "+fmt.Sprint(value))
|
||||
err = dH.db.Where(key, value).First(model).Error
|
||||
if errors.Is(err, gorm.ErrRecordNotFound) {
|
||||
return fmt.Errorf("no record found for %s %v", key[:len(key)-1], value)
|
||||
} else if err != nil {
|
||||
return fmt.Errorf("query failed: %w", err)
|
||||
}
|
||||
return
|
||||
}
|
||||
Reference in New Issue
Block a user