417b18ec6a
towards generic method polling and reposito;y; config settings to filterevents/methods by account address; refactoring some stuff out of repo and into converter; remove fetcher and instead call blockchain's FetchContractData directly; finishing tests
97 lines
3.1 KiB
Go
97 lines
3.1 KiB
Go
// VulcanizeDB
|
|
// Copyright © 2018 Vulcanize
|
|
|
|
// This program is free software: you can redistribute it and/or modify
|
|
// it under the terms of the GNU Affero General Public License as published by
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
// (at your option) any later version.
|
|
|
|
// This program is distributed in the hope that it will be useful,
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
// GNU Affero General Public License for more details.
|
|
|
|
// You should have received a copy of the GNU Affero General Public License
|
|
// along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
package tusd
|
|
|
|
import (
|
|
"fmt"
|
|
"log"
|
|
|
|
"github.com/vulcanize/vulcanizedb/examples/generic/event_triggered"
|
|
"github.com/vulcanize/vulcanizedb/libraries/shared"
|
|
"github.com/vulcanize/vulcanizedb/pkg/core"
|
|
"github.com/vulcanize/vulcanizedb/pkg/datastore"
|
|
"github.com/vulcanize/vulcanizedb/pkg/datastore/postgres"
|
|
"github.com/vulcanize/vulcanizedb/pkg/datastore/postgres/repositories"
|
|
"github.com/vulcanize/vulcanizedb/pkg/filters"
|
|
"github.com/vulcanize/vulcanizedb/pkg/omni/constants"
|
|
)
|
|
|
|
type GenericTransformer struct {
|
|
Converter GenericConverterInterface
|
|
WatchedEventRepository datastore.WatchedEventRepository
|
|
FilterRepository datastore.FilterRepository
|
|
Repository event_triggered.GenericEventDatastore
|
|
Filters []filters.LogFilter
|
|
}
|
|
|
|
func NewTransformer(db *postgres.DB, blockchain core.BlockChain, con shared.ContractConfig) (shared.Transformer, error) {
|
|
var transformer shared.Transformer
|
|
|
|
cnvtr, err := NewGenericConverter(con)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
wer := repositories.WatchedEventRepository{DB: db}
|
|
fr := repositories.FilterRepository{DB: db}
|
|
lkr := event_triggered.GenericEventRepository{DB: db}
|
|
|
|
transformer = GenericTransformer{
|
|
Converter: cnvtr,
|
|
WatchedEventRepository: wer,
|
|
FilterRepository: fr,
|
|
Repository: lkr,
|
|
Filters: con.Filters,
|
|
}
|
|
|
|
for _, filter := range con.Filters {
|
|
fr.CreateFilter(filter)
|
|
}
|
|
|
|
return transformer, nil
|
|
}
|
|
|
|
func (tr GenericTransformer) Execute() error {
|
|
for _, filter := range tr.Filters {
|
|
watchedEvents, err := tr.WatchedEventRepository.GetWatchedEvents(filter.Name)
|
|
if err != nil {
|
|
log.Println(fmt.Sprintf("Error fetching events for %s:", filter.Name), err)
|
|
return err
|
|
}
|
|
for _, we := range watchedEvents {
|
|
if filter.Name == constants.BurnEvent.String() {
|
|
entity, err := tr.Converter.ToBurnEntity(*we)
|
|
model := tr.Converter.ToBurnModel(entity)
|
|
if err != nil {
|
|
log.Printf("Error persisting data for TrueUSD Burns (watchedEvent.LogID %d):\n %s", we.LogID, err)
|
|
}
|
|
tr.Repository.CreateBurn(model, we.LogID)
|
|
}
|
|
if filter.Name == constants.MintEvent.String() {
|
|
entity, err := tr.Converter.ToMintEntity(*we)
|
|
model := tr.Converter.ToMintModel(entity)
|
|
if err != nil {
|
|
log.Printf("Error persisting data for TrueUSD Mints (watchedEvent.LogID %d):\n %s", we.LogID, err)
|
|
}
|
|
tr.Repository.CreateMint(model, we.LogID)
|
|
}
|
|
}
|
|
}
|
|
|
|
return nil
|
|
}
|