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

78 lines
2.1 KiB
Go
Raw Normal View History

2019-01-24 20:41:30 +00:00
// 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/>.
2018-08-16 21:36:35 +00:00
package tend
import (
"encoding/json"
"errors"
"github.com/vulcanize/vulcanizedb/pkg/transformers/shared"
"math/big"
2018-08-16 21:36:35 +00:00
"github.com/ethereum/go-ethereum/core/types"
)
type TendConverter struct{}
func (TendConverter) ToModels(ethLogs []types.Log) (results []interface{}, err error) {
2018-09-20 21:42:31 +00:00
for _, ethLog := range ethLogs {
err := validateLog(ethLog)
if err != nil {
return nil, err
}
2018-08-16 21:36:35 +00:00
2018-09-20 21:42:31 +00:00
bidId := ethLog.Topics[2].Big()
guy := shared.GetHexWithoutPrefix(ethLog.Topics[1].Bytes())
2018-09-20 21:42:31 +00:00
lot := ethLog.Topics[3].Big().String()
2018-09-20 21:42:31 +00:00
lastDataItemStartIndex := len(ethLog.Data) - 32
lastItem := ethLog.Data[lastDataItemStartIndex:]
last := big.NewInt(0).SetBytes(lastItem)
bidValue := last.String()
transactionIndex := ethLog.TxIndex
2018-10-22 21:07:19 +00:00
logIndex := ethLog.Index
2018-08-16 21:36:35 +00:00
rawLog, err := json.Marshal(ethLog)
2018-09-20 21:42:31 +00:00
if err != nil {
return nil, err
}
2018-09-20 21:42:31 +00:00
model := TendModel{
BidId: bidId.String(),
Lot: lot,
Bid: bidValue,
Guy: guy,
2018-10-22 21:07:19 +00:00
LogIndex: logIndex,
2018-09-20 21:42:31 +00:00
TransactionIndex: transactionIndex,
Raw: rawLog,
2018-09-20 21:42:31 +00:00
}
results = append(results, model)
}
return results, err
}
func validateLog(ethLog types.Log) error {
if len(ethLog.Data) <= 0 {
return errors.New("tend log note data is empty")
}
if len(ethLog.Topics) < 4 {
return errors.New("tend log does not contain expected topics")
}
return nil
2018-08-16 21:36:35 +00:00
}