2020-02-10 17:16:57 +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 (
|
|
|
|
"bytes"
|
|
|
|
"time"
|
|
|
|
|
|
|
|
"github.com/btcsuite/btcd/rpcclient"
|
|
|
|
"github.com/sirupsen/logrus"
|
|
|
|
|
2020-05-30 03:02:47 +00:00
|
|
|
"github.com/vulcanize/ipfs-chain-watcher/pkg/shared"
|
2020-02-10 17:16:57 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
// HTTPPayloadStreamer satisfies the PayloadStreamer interface for bitcoin over http endpoints (since bitcoin core doesn't support websockets)
|
|
|
|
type HTTPPayloadStreamer struct {
|
|
|
|
Config *rpcclient.ConnConfig
|
|
|
|
lastHash []byte
|
|
|
|
}
|
|
|
|
|
|
|
|
// NewHTTPPayloadStreamer creates a pointer to a new PayloadStreamer which satisfies the PayloadStreamer interface for bitcoin
|
|
|
|
func NewHTTPPayloadStreamer(clientConfig *rpcclient.ConnConfig) *HTTPPayloadStreamer {
|
|
|
|
return &HTTPPayloadStreamer{
|
|
|
|
Config: clientConfig,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Stream is the main loop for subscribing to data from the btc block notifications
|
|
|
|
// Satisfies the shared.PayloadStreamer interface
|
|
|
|
func (ps *HTTPPayloadStreamer) Stream(payloadChan chan shared.RawChainData) (shared.ClientSubscription, error) {
|
2020-04-23 20:56:37 +00:00
|
|
|
logrus.Debug("streaming block payloads from btc")
|
2020-02-10 17:16:57 +00:00
|
|
|
client, err := rpcclient.New(ps.Config, nil)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
ticker := time.NewTicker(time.Second * 5)
|
|
|
|
errChan := make(chan error)
|
|
|
|
go func() {
|
|
|
|
for {
|
|
|
|
// start at
|
|
|
|
select {
|
|
|
|
case <-ticker.C:
|
|
|
|
height, err := client.GetBlockCount()
|
|
|
|
if err != nil {
|
|
|
|
errChan <- err
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
blockHash, err := client.GetBlockHash(height)
|
|
|
|
if err != nil {
|
|
|
|
errChan <- err
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
blockHashBytes := blockHash.CloneBytes()
|
|
|
|
if bytes.Equal(blockHashBytes, ps.lastHash) {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
block, err := client.GetBlock(blockHash)
|
|
|
|
if err != nil {
|
|
|
|
errChan <- err
|
|
|
|
continue
|
|
|
|
}
|
2020-03-18 00:42:53 +00:00
|
|
|
ps.lastHash = blockHashBytes
|
2020-02-10 17:16:57 +00:00
|
|
|
payloadChan <- BlockPayload{
|
2020-02-19 22:09:33 +00:00
|
|
|
Header: &block.Header,
|
|
|
|
BlockHeight: height,
|
|
|
|
Txs: msgTxsToUtilTxs(block.Transactions),
|
2020-02-10 17:16:57 +00:00
|
|
|
}
|
|
|
|
default:
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}()
|
|
|
|
return &HTTPClientSubscription{client: client, errChan: errChan}, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// HTTPClientSubscription is a wrapper around the underlying bitcoind rpc client
|
|
|
|
// to fit the shared.ClientSubscription interface
|
|
|
|
type HTTPClientSubscription struct {
|
|
|
|
client *rpcclient.Client
|
|
|
|
errChan chan error
|
|
|
|
}
|
|
|
|
|
|
|
|
// Unsubscribe satisfies the rpc.Subscription interface
|
|
|
|
func (bcs *HTTPClientSubscription) Unsubscribe() {
|
|
|
|
bcs.client.Shutdown()
|
|
|
|
}
|
|
|
|
|
|
|
|
// Err() satisfies the rpc.Subscription interface
|
|
|
|
func (bcs *HTTPClientSubscription) Err() <-chan error {
|
|
|
|
return bcs.errChan
|
|
|
|
}
|