2018-08-14 21:59:41 +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 price_feeds
|
|
|
|
|
|
|
|
import (
|
2018-10-25 18:25:36 +00:00
|
|
|
"fmt"
|
2018-08-14 21:59:41 +00:00
|
|
|
"github.com/vulcanize/vulcanizedb/pkg/datastore/postgres"
|
2018-11-08 17:07:54 +00:00
|
|
|
"github.com/vulcanize/vulcanizedb/pkg/transformers/shared"
|
|
|
|
"github.com/vulcanize/vulcanizedb/pkg/transformers/shared/constants"
|
2018-08-14 21:59:41 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
type PriceFeedRepository struct {
|
|
|
|
db *postgres.DB
|
|
|
|
}
|
|
|
|
|
2018-10-25 18:25:36 +00:00
|
|
|
func (repository PriceFeedRepository) Create(headerID int64, models []interface{}) error {
|
2018-09-13 15:05:16 +00:00
|
|
|
tx, err := repository.db.Begin()
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2018-09-20 22:04:53 +00:00
|
|
|
for _, model := range models {
|
2018-10-25 18:25:36 +00:00
|
|
|
priceUpdate, ok := model.(PriceFeedModel)
|
|
|
|
if !ok {
|
|
|
|
tx.Rollback()
|
|
|
|
return fmt.Errorf("model of type %T, not %T", model, PriceFeedModel{})
|
|
|
|
}
|
|
|
|
|
2018-10-22 19:54:09 +00:00
|
|
|
_, err = tx.Exec(`INSERT INTO maker.price_feeds (block_number, header_id, medianizer_address, usd_value, log_idx, tx_idx, raw_log)
|
2018-10-25 18:25:36 +00:00
|
|
|
VALUES ($1, $2, $3, $4::NUMERIC, $5, $6, $7)`, priceUpdate.BlockNumber, headerID, priceUpdate.MedianizerAddress, priceUpdate.UsdValue, priceUpdate.LogIndex, priceUpdate.TransactionIndex, priceUpdate.Raw)
|
2018-09-20 22:04:53 +00:00
|
|
|
if err != nil {
|
|
|
|
tx.Rollback()
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
2018-11-08 17:07:54 +00:00
|
|
|
|
2019-01-07 14:19:31 +00:00
|
|
|
err = shared.MarkHeaderCheckedInTransaction(headerID, tx, constants.PriceFeedsChecked)
|
2018-09-13 15:05:16 +00:00
|
|
|
if err != nil {
|
|
|
|
tx.Rollback()
|
|
|
|
return err
|
|
|
|
}
|
2018-09-20 22:04:53 +00:00
|
|
|
return tx.Commit()
|
2018-09-13 15:05:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (repository PriceFeedRepository) MarkHeaderChecked(headerID int64) error {
|
2019-01-07 14:19:31 +00:00
|
|
|
return shared.MarkHeaderChecked(headerID, repository.db, constants.PriceFeedsChecked)
|
2018-08-14 21:59:41 +00:00
|
|
|
}
|
|
|
|
|
2018-10-25 18:25:36 +00:00
|
|
|
func (repository *PriceFeedRepository) SetDB(db *postgres.DB) {
|
|
|
|
repository.db = db
|
|
|
|
}
|