ipld-eth-server/pkg/transformers/vat_tune/repository.go

62 lines
1.8 KiB
Go
Raw Normal View History

2018-10-04 21:49:09 +00:00
package vat_tune
import (
2018-10-24 15:55:55 +00:00
"fmt"
log "github.com/sirupsen/logrus"
2018-10-04 21:49:09 +00:00
"github.com/vulcanize/vulcanizedb/pkg/datastore/postgres"
"github.com/vulcanize/vulcanizedb/pkg/transformers/shared"
"github.com/vulcanize/vulcanizedb/pkg/transformers/shared/constants"
2018-10-04 21:49:09 +00:00
)
type VatTuneRepository struct {
db *postgres.DB
}
2018-10-24 15:55:55 +00:00
func (repository VatTuneRepository) Create(headerID int64, models []interface{}) error {
tx, dBaseErr := repository.db.Begin()
if dBaseErr != nil {
return dBaseErr
2018-10-04 21:49:09 +00:00
}
for _, model := range models {
2018-10-24 15:55:55 +00:00
vatTune, ok := model.(VatTuneModel)
if !ok {
rollbackErr := tx.Rollback()
if rollbackErr != nil {
log.Error("failed to rollback ", rollbackErr)
}
2018-10-24 15:55:55 +00:00
return fmt.Errorf("model of type %T, not %T", model, VatTuneModel{})
}
_, execErr := tx.Exec(
`INSERT into maker.vat_tune (header_id, ilk, urn, v, w, dink, dart, tx_idx, log_idx, raw_log)
VALUES($1, $2, $3, $4, $5, $6::NUMERIC, $7::NUMERIC, $8, $9, $10)`,
2018-10-24 15:55:55 +00:00
headerID, vatTune.Ilk, vatTune.Urn, vatTune.V, vatTune.W, vatTune.Dink, vatTune.Dart, vatTune.TransactionIndex, vatTune.LogIndex, vatTune.Raw,
2018-10-04 21:49:09 +00:00
)
if execErr != nil {
rollbackErr := tx.Rollback()
if rollbackErr != nil {
log.Error("failed to rollback ", rollbackErr)
}
return execErr
2018-10-04 21:49:09 +00:00
}
}
checkHeaderErr := shared.MarkHeaderCheckedInTransaction(headerID, tx, constants.VatTuneChecked)
if checkHeaderErr != nil {
rollbackErr := tx.Rollback()
if rollbackErr != nil {
log.Error("failed to rollback ", rollbackErr)
}
return checkHeaderErr
2018-10-04 21:49:09 +00:00
}
return tx.Commit()
}
func (repository VatTuneRepository) MarkHeaderChecked(headerID int64) error {
return shared.MarkHeaderChecked(headerID, repository.db, constants.VatTuneChecked)
2018-10-04 21:49:09 +00:00
}
2018-10-24 15:55:55 +00:00
func (repository *VatTuneRepository) SetDB(db *postgres.DB) {
repository.db = db
}