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

79 lines
2.3 KiB
Go
Raw Normal View History

2018-08-16 21:36:35 +00:00
// Copyright 2018 Vulcanize
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package tend
import (
"fmt"
2018-08-16 21:36:35 +00:00
"github.com/vulcanize/vulcanizedb/pkg/core"
"github.com/vulcanize/vulcanizedb/pkg/datastore/postgres"
"github.com/vulcanize/vulcanizedb/pkg/transformers/shared"
"github.com/vulcanize/vulcanizedb/pkg/transformers/shared/constants"
2018-08-16 21:36:35 +00:00
)
type TendRepository struct {
db *postgres.DB
2018-08-16 21:36:35 +00:00
}
func (repository TendRepository) Create(headerID int64, models []interface{}) error {
tx, err := repository.db.Begin()
2018-09-20 21:42:31 +00:00
if err != nil {
return err
}
for _, model := range models {
tend, ok := model.(TendModel)
if !ok {
tx.Rollback()
return fmt.Errorf("model of type %T, not %T", model, TendModel{})
}
err = shared.ValidateHeaderConsistency(headerID, tend.Raw, repository.db)
if err != nil {
tx.Rollback()
return err
}
2018-09-20 21:42:31 +00:00
_, err = tx.Exec(
2018-10-22 21:07:19 +00:00
`INSERT into maker.tend (header_id, bid_id, lot, bid, guy, tic, log_idx, tx_idx, raw_log)
VALUES($1, $2, $3::NUMERIC, $4::NUMERIC, $5, $6::NUMERIC, $7, $8, $9)`,
headerID, tend.BidId, tend.Lot, tend.Bid, tend.Guy, tend.Tic, tend.LogIndex, tend.TransactionIndex, tend.Raw,
2018-09-20 21:42:31 +00:00
)
2018-09-20 21:42:31 +00:00
if err != nil {
tx.Rollback()
return err
}
}
err = shared.MarkHeaderCheckedInTransaction(headerID, tx, constants.TendChecked)
2018-09-20 21:42:31 +00:00
if err != nil {
tx.Rollback()
return err
}
return tx.Commit()
}
2018-08-16 21:36:35 +00:00
func (repository TendRepository) MarkHeaderChecked(headerId int64) error {
return shared.MarkHeaderChecked(headerId, repository.db, constants.TendChecked)
2018-08-16 21:36:35 +00:00
}
func (repository TendRepository) MissingHeaders(startingBlockNumber, endingBlockNumber int64) ([]core.Header, error) {
return shared.MissingHeaders(startingBlockNumber, endingBlockNumber, repository.db, constants.TendChecked)
2018-08-16 21:36:35 +00:00
}
func (repository *TendRepository) SetDB(db *postgres.DB) {
repository.db = db
}