read itzaname code and simplify wacky string stuff

This commit is contained in:
Quaternions 2024-11-27 22:47:30 -08:00
parent 712ff32552
commit f3b41c6b25

View File

@ -3,8 +3,6 @@ package gormstore
import (
"context"
"errors"
"fmt"
"strings"
"git.itzana.me/strafesnet/maps-service/pkg/datastore"
"git.itzana.me/strafesnet/maps-service/pkg/model"
@ -55,13 +53,7 @@ func (env *Submissions) Update(ctx context.Context, id int64, values datastore.O
// the update can only occur if the status matches one of the provided values.
func (env *Submissions) IfStatusThenUpdate(ctx context.Context, id int64, statuses []model.Status, values datastore.OptionalMap) error {
tx := env.db.Model(&model.Submission{}).Where("id = ?", id)
expr := make([]string, 0,len(statuses))
for i, status := range statuses{
expr[i] = fmt.Sprintf("status = %d", int32(status))
}
tx = tx.Where(strings.Join(expr, " OR "))
if err := tx.Updates(values.Map()).Error; err != nil {
if err := env.db.Model(&model.Submission{}).Where("id = ?", id).Where("status IN ?",statuses).Updates(values.Map()).Error; err != nil {
if err == gorm.ErrRecordNotFound {
return datastore.ErrNotExist
}