mirror of
https://github.com/Luzifer/twitch-bot.git
synced 2024-11-08 16:20:02 +00:00
Knut Ahlers
f684abc29f
which might be a false-negative and re-added later Signed-off-by: Knut Ahlers <knut@ahlers.me>
60 lines
1.4 KiB
Go
60 lines
1.4 KiB
Go
package variables
|
|
|
|
import (
|
|
"github.com/pkg/errors"
|
|
"gorm.io/gorm"
|
|
"gorm.io/gorm/clause"
|
|
|
|
"github.com/Luzifer/go_helpers/v2/backoff"
|
|
"github.com/Luzifer/twitch-bot/v3/internal/helpers"
|
|
"github.com/Luzifer/twitch-bot/v3/pkg/database"
|
|
)
|
|
|
|
type (
|
|
variable struct {
|
|
Name string `gorm:"primaryKey"`
|
|
Value string
|
|
}
|
|
)
|
|
|
|
func getVariable(db database.Connector, key string) (string, error) {
|
|
var v variable
|
|
err := helpers.Retry(func() error {
|
|
err := db.DB().First(&v, "name = ?", key).Error
|
|
if errors.Is(err, gorm.ErrRecordNotFound) {
|
|
return backoff.NewErrCannotRetry(err)
|
|
}
|
|
return err
|
|
})
|
|
switch {
|
|
case err == nil:
|
|
return v.Value, nil
|
|
|
|
case errors.Is(err, gorm.ErrRecordNotFound):
|
|
return "", nil // Compatibility to old behavior
|
|
|
|
default:
|
|
return "", errors.Wrap(err, "getting value from database")
|
|
}
|
|
}
|
|
|
|
func setVariable(db database.Connector, key, value string) error {
|
|
return errors.Wrap(
|
|
helpers.RetryTransaction(db.DB(), func(tx *gorm.DB) error {
|
|
return tx.Clauses(clause.OnConflict{
|
|
Columns: []clause.Column{{Name: "name"}},
|
|
DoUpdates: clause.AssignmentColumns([]string{"value"}),
|
|
}).Create(variable{Name: key, Value: value}).Error
|
|
}),
|
|
"updating value in database",
|
|
)
|
|
}
|
|
|
|
func removeVariable(db database.Connector, key string) error {
|
|
return errors.Wrap(
|
|
helpers.RetryTransaction(db.DB(), func(tx *gorm.DB) error {
|
|
return tx.Delete(&variable{}, "name = ?", key).Error
|
|
}),
|
|
"deleting value in database",
|
|
)
|
|
}
|