2020-01-30 22:46:08 +00:00
|
|
|
// VulcanizeDB
|
|
|
|
// Copyright © 2019 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 btc
|
|
|
|
|
|
|
|
import (
|
|
|
|
"errors"
|
|
|
|
"fmt"
|
|
|
|
"strconv"
|
|
|
|
|
|
|
|
"github.com/btcsuite/btcd/wire"
|
|
|
|
"github.com/btcsuite/btcutil"
|
|
|
|
|
|
|
|
"github.com/vulcanize/vulcanizedb/pkg/ipfs"
|
|
|
|
"github.com/vulcanize/vulcanizedb/pkg/ipfs/dag_putters"
|
|
|
|
"github.com/vulcanize/vulcanizedb/pkg/super_node/shared"
|
|
|
|
)
|
|
|
|
|
|
|
|
// IPLDPublisher satisfies the IPLDPublisher for ethereum
|
|
|
|
type IPLDPublisher struct {
|
|
|
|
HeaderPutter shared.DagPutter
|
|
|
|
TransactionPutter shared.DagPutter
|
|
|
|
}
|
|
|
|
|
|
|
|
// NewIPLDPublisher creates a pointer to a new Publisher which satisfies the IPLDPublisher interface
|
|
|
|
func NewIPLDPublisher(ipfsPath string) (*IPLDPublisher, error) {
|
|
|
|
node, err := ipfs.InitIPFSNode(ipfsPath)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return &IPLDPublisher{
|
|
|
|
HeaderPutter: dag_putters.NewBtcHeaderDagPutter(node),
|
|
|
|
TransactionPutter: dag_putters.NewBtcTxDagPutter(node),
|
|
|
|
}, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Publish publishes an IPLDPayload to IPFS and returns the corresponding CIDPayload
|
2020-01-31 18:03:37 +00:00
|
|
|
func (pub *IPLDPublisher) Publish(payload shared.StreamedIPLDs) (shared.CIDsForIndexing, error) {
|
|
|
|
ipldPayload, ok := payload.(IPLDPayload)
|
2020-01-30 22:46:08 +00:00
|
|
|
if !ok {
|
|
|
|
return nil, fmt.Errorf("eth publisher expected payload type %T got %T", &IPLDPayload{}, payload)
|
|
|
|
}
|
|
|
|
// Process and publish headers
|
|
|
|
headerCid, err := pub.publishHeader(ipldPayload.Header)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
header := HeaderModel{
|
|
|
|
CID: headerCid,
|
|
|
|
ParentHash: ipldPayload.Header.PrevBlock.String(),
|
2020-02-19 22:09:33 +00:00
|
|
|
BlockNumber: strconv.Itoa(int(ipldPayload.BlockPayload.BlockHeight)),
|
2020-01-30 22:46:08 +00:00
|
|
|
BlockHash: ipldPayload.Header.BlockHash().String(),
|
2020-02-02 21:58:07 +00:00
|
|
|
Timestamp: ipldPayload.Header.Timestamp.UnixNano(),
|
|
|
|
Bits: ipldPayload.Header.Bits,
|
2020-01-30 22:46:08 +00:00
|
|
|
}
|
|
|
|
// Process and publish transactions
|
|
|
|
transactionCids, err := pub.publishTransactions(ipldPayload.Txs, ipldPayload.TxMetaData)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
// Package CIDs and their metadata into a single struct
|
|
|
|
return &CIDPayload{
|
|
|
|
HeaderCID: header,
|
|
|
|
TransactionCIDs: transactionCids,
|
|
|
|
}, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (pub *IPLDPublisher) publishHeader(header *wire.BlockHeader) (string, error) {
|
|
|
|
cids, err := pub.HeaderPutter.DagPut(header)
|
|
|
|
if err != nil {
|
|
|
|
return "", err
|
|
|
|
}
|
|
|
|
return cids[0], nil
|
|
|
|
}
|
|
|
|
|
2020-02-02 21:58:07 +00:00
|
|
|
func (pub *IPLDPublisher) publishTransactions(transactions []*btcutil.Tx, trxMeta []TxModelWithInsAndOuts) ([]TxModelWithInsAndOuts, error) {
|
2020-01-30 22:46:08 +00:00
|
|
|
transactionCids, err := pub.TransactionPutter.DagPut(transactions)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
if len(transactionCids) != len(trxMeta) {
|
|
|
|
return nil, errors.New("expected one CID for each transaction")
|
|
|
|
}
|
2020-02-02 21:58:07 +00:00
|
|
|
mappedTrxCids := make([]TxModelWithInsAndOuts, len(transactionCids))
|
2020-01-30 22:46:08 +00:00
|
|
|
for i, cid := range transactionCids {
|
2020-02-02 21:58:07 +00:00
|
|
|
mappedTrxCids[i] = TxModelWithInsAndOuts{
|
2020-01-30 22:46:08 +00:00
|
|
|
CID: cid,
|
|
|
|
Index: trxMeta[i].Index,
|
|
|
|
TxHash: trxMeta[i].TxHash,
|
2020-02-04 21:20:49 +00:00
|
|
|
SegWit: trxMeta[i].SegWit,
|
2020-01-30 22:46:08 +00:00
|
|
|
WitnessHash: trxMeta[i].WitnessHash,
|
2020-02-02 21:58:07 +00:00
|
|
|
TxInputs: trxMeta[i].TxInputs,
|
|
|
|
TxOutputs: trxMeta[i].TxOutputs,
|
2020-01-30 22:46:08 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return mappedTrxCids, nil
|
|
|
|
}
|