don't throw error on duplicate key insert
This commit is contained in:
parent
eb9c49a3e9
commit
716cc3663f
@ -18,6 +18,7 @@ package dag_putters
|
|||||||
|
|
||||||
import (
|
import (
|
||||||
"fmt"
|
"fmt"
|
||||||
|
"strings"
|
||||||
|
|
||||||
node "github.com/ipfs/go-ipld-format"
|
node "github.com/ipfs/go-ipld-format"
|
||||||
|
|
||||||
@ -25,6 +26,10 @@ import (
|
|||||||
"github.com/vulcanize/vulcanizedb/pkg/ipfs/ipld"
|
"github.com/vulcanize/vulcanizedb/pkg/ipfs/ipld"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
var (
|
||||||
|
duplicateKeyErrorString = "pq: duplicate key value violates unique constraint"
|
||||||
|
)
|
||||||
|
|
||||||
type BtcHeaderDagPutter struct {
|
type BtcHeaderDagPutter struct {
|
||||||
adder *ipfs.IPFS
|
adder *ipfs.IPFS
|
||||||
}
|
}
|
||||||
@ -38,7 +43,7 @@ func (bhdp *BtcHeaderDagPutter) DagPut(n node.Node) (string, error) {
|
|||||||
if !ok {
|
if !ok {
|
||||||
return "", fmt.Errorf("BtcHeaderDagPutter expected input type %T got %T", &ipld.BtcHeader{}, n)
|
return "", fmt.Errorf("BtcHeaderDagPutter expected input type %T got %T", &ipld.BtcHeader{}, n)
|
||||||
}
|
}
|
||||||
if err := bhdp.adder.Add(header); err != nil {
|
if err := bhdp.adder.Add(header); err != nil && !strings.Contains(err.Error(), duplicateKeyErrorString) {
|
||||||
return "", err
|
return "", err
|
||||||
}
|
}
|
||||||
return header.Cid().String(), nil
|
return header.Cid().String(), nil
|
||||||
|
@ -18,6 +18,7 @@ package dag_putters
|
|||||||
|
|
||||||
import (
|
import (
|
||||||
"fmt"
|
"fmt"
|
||||||
|
"strings"
|
||||||
|
|
||||||
node "github.com/ipfs/go-ipld-format"
|
node "github.com/ipfs/go-ipld-format"
|
||||||
|
|
||||||
@ -38,7 +39,7 @@ func (etdp *BtcTxDagPutter) DagPut(n node.Node) (string, error) {
|
|||||||
if !ok {
|
if !ok {
|
||||||
return "", fmt.Errorf("BtcTxDagPutter expected input type %T got %T", &ipld.BtcTx{}, n)
|
return "", fmt.Errorf("BtcTxDagPutter expected input type %T got %T", &ipld.BtcTx{}, n)
|
||||||
}
|
}
|
||||||
if err := etdp.adder.Add(transaction); err != nil {
|
if err := etdp.adder.Add(transaction); err != nil && !strings.Contains(err.Error(), duplicateKeyErrorString) {
|
||||||
return "", err
|
return "", err
|
||||||
}
|
}
|
||||||
return transaction.Cid().String(), nil
|
return transaction.Cid().String(), nil
|
||||||
|
@ -18,6 +18,7 @@ package dag_putters
|
|||||||
|
|
||||||
import (
|
import (
|
||||||
"fmt"
|
"fmt"
|
||||||
|
"strings"
|
||||||
|
|
||||||
node "github.com/ipfs/go-ipld-format"
|
node "github.com/ipfs/go-ipld-format"
|
||||||
|
|
||||||
@ -38,7 +39,7 @@ func (etdp *BtcTxTrieDagPutter) DagPut(n node.Node) (string, error) {
|
|||||||
if !ok {
|
if !ok {
|
||||||
return "", fmt.Errorf("BtcTxTrieDagPutter expected input type %T got %T", &ipld.BtcTxTrie{}, n)
|
return "", fmt.Errorf("BtcTxTrieDagPutter expected input type %T got %T", &ipld.BtcTxTrie{}, n)
|
||||||
}
|
}
|
||||||
if err := etdp.adder.Add(txTrieNode); err != nil {
|
if err := etdp.adder.Add(txTrieNode); err != nil && !strings.Contains(err.Error(), duplicateKeyErrorString) {
|
||||||
return "", err
|
return "", err
|
||||||
}
|
}
|
||||||
return txTrieNode.Cid().String(), nil
|
return txTrieNode.Cid().String(), nil
|
||||||
|
@ -18,6 +18,7 @@ package dag_putters
|
|||||||
|
|
||||||
import (
|
import (
|
||||||
"fmt"
|
"fmt"
|
||||||
|
"strings"
|
||||||
|
|
||||||
node "github.com/ipfs/go-ipld-format"
|
node "github.com/ipfs/go-ipld-format"
|
||||||
|
|
||||||
@ -38,7 +39,7 @@ func (bhdp *EthHeaderDagPutter) DagPut(n node.Node) (string, error) {
|
|||||||
if !ok {
|
if !ok {
|
||||||
return "", fmt.Errorf("EthHeaderDagPutter expected input type %T got %T", &ipld.EthHeader{}, n)
|
return "", fmt.Errorf("EthHeaderDagPutter expected input type %T got %T", &ipld.EthHeader{}, n)
|
||||||
}
|
}
|
||||||
if err := bhdp.adder.Add(header); err != nil {
|
if err := bhdp.adder.Add(header); err != nil && !strings.Contains(err.Error(), duplicateKeyErrorString) {
|
||||||
return "", err
|
return "", err
|
||||||
}
|
}
|
||||||
return header.Cid().String(), nil
|
return header.Cid().String(), nil
|
||||||
|
@ -18,6 +18,7 @@ package dag_putters
|
|||||||
|
|
||||||
import (
|
import (
|
||||||
"fmt"
|
"fmt"
|
||||||
|
"strings"
|
||||||
|
|
||||||
node "github.com/ipfs/go-ipld-format"
|
node "github.com/ipfs/go-ipld-format"
|
||||||
|
|
||||||
@ -38,7 +39,7 @@ func (erdp *EthReceiptDagPutter) DagPut(n node.Node) (string, error) {
|
|||||||
if !ok {
|
if !ok {
|
||||||
return "", fmt.Errorf("EthReceiptDagPutter expected input type %T got type %T", &ipld.EthReceipt{}, n)
|
return "", fmt.Errorf("EthReceiptDagPutter expected input type %T got type %T", &ipld.EthReceipt{}, n)
|
||||||
}
|
}
|
||||||
if err := erdp.adder.Add(receipt); err != nil {
|
if err := erdp.adder.Add(receipt); err != nil && !strings.Contains(err.Error(), duplicateKeyErrorString) {
|
||||||
return "", err
|
return "", err
|
||||||
}
|
}
|
||||||
return receipt.Cid().String(), nil
|
return receipt.Cid().String(), nil
|
||||||
|
@ -18,6 +18,7 @@ package dag_putters
|
|||||||
|
|
||||||
import (
|
import (
|
||||||
"fmt"
|
"fmt"
|
||||||
|
"strings"
|
||||||
|
|
||||||
node "github.com/ipfs/go-ipld-format"
|
node "github.com/ipfs/go-ipld-format"
|
||||||
|
|
||||||
@ -38,7 +39,7 @@ func (etdp *EthRctTrieDagPutter) DagPut(n node.Node) (string, error) {
|
|||||||
if !ok {
|
if !ok {
|
||||||
return "", fmt.Errorf("EthRctTrieDagPutter expected input type %T got %T", &ipld.EthRctTrie{}, n)
|
return "", fmt.Errorf("EthRctTrieDagPutter expected input type %T got %T", &ipld.EthRctTrie{}, n)
|
||||||
}
|
}
|
||||||
if err := etdp.adder.Add(rctTrieNode); err != nil {
|
if err := etdp.adder.Add(rctTrieNode); err != nil && !strings.Contains(err.Error(), duplicateKeyErrorString) {
|
||||||
return "", err
|
return "", err
|
||||||
}
|
}
|
||||||
return rctTrieNode.Cid().String(), nil
|
return rctTrieNode.Cid().String(), nil
|
||||||
|
@ -18,6 +18,7 @@ package dag_putters
|
|||||||
|
|
||||||
import (
|
import (
|
||||||
"fmt"
|
"fmt"
|
||||||
|
"strings"
|
||||||
|
|
||||||
node "github.com/ipfs/go-ipld-format"
|
node "github.com/ipfs/go-ipld-format"
|
||||||
|
|
||||||
@ -38,7 +39,7 @@ func (erdp *EthStateDagPutter) DagPut(n node.Node) (string, error) {
|
|||||||
if !ok {
|
if !ok {
|
||||||
return "", fmt.Errorf("EthStateDagPutter expected input type %T got %T", &ipld.EthStateTrie{}, n)
|
return "", fmt.Errorf("EthStateDagPutter expected input type %T got %T", &ipld.EthStateTrie{}, n)
|
||||||
}
|
}
|
||||||
if err := erdp.adder.Add(stateNode); err != nil {
|
if err := erdp.adder.Add(stateNode); err != nil && !strings.Contains(err.Error(), duplicateKeyErrorString) {
|
||||||
return "", err
|
return "", err
|
||||||
}
|
}
|
||||||
return stateNode.Cid().String(), nil
|
return stateNode.Cid().String(), nil
|
||||||
|
@ -18,6 +18,7 @@ package dag_putters
|
|||||||
|
|
||||||
import (
|
import (
|
||||||
"fmt"
|
"fmt"
|
||||||
|
"strings"
|
||||||
|
|
||||||
node "github.com/ipfs/go-ipld-format"
|
node "github.com/ipfs/go-ipld-format"
|
||||||
|
|
||||||
@ -38,7 +39,7 @@ func (erdp *EthStorageDagPutter) DagPut(n node.Node) (string, error) {
|
|||||||
if !ok {
|
if !ok {
|
||||||
return "", fmt.Errorf("EthStorageDagPutter expected input type %T got %T", &ipld.EthStorageTrie{}, n)
|
return "", fmt.Errorf("EthStorageDagPutter expected input type %T got %T", &ipld.EthStorageTrie{}, n)
|
||||||
}
|
}
|
||||||
if err := erdp.adder.Add(storageNode); err != nil {
|
if err := erdp.adder.Add(storageNode); err != nil && !strings.Contains(err.Error(), duplicateKeyErrorString) {
|
||||||
return "", err
|
return "", err
|
||||||
}
|
}
|
||||||
return storageNode.Cid().String(), nil
|
return storageNode.Cid().String(), nil
|
||||||
|
@ -18,6 +18,7 @@ package dag_putters
|
|||||||
|
|
||||||
import (
|
import (
|
||||||
"fmt"
|
"fmt"
|
||||||
|
"strings"
|
||||||
|
|
||||||
node "github.com/ipfs/go-ipld-format"
|
node "github.com/ipfs/go-ipld-format"
|
||||||
|
|
||||||
@ -38,7 +39,7 @@ func (etdp *EthTxsDagPutter) DagPut(n node.Node) (string, error) {
|
|||||||
if !ok {
|
if !ok {
|
||||||
return "", fmt.Errorf("EthTxsDagPutter expected input type %T got %T", &ipld.EthTx{}, n)
|
return "", fmt.Errorf("EthTxsDagPutter expected input type %T got %T", &ipld.EthTx{}, n)
|
||||||
}
|
}
|
||||||
if err := etdp.adder.Add(transaction); err != nil {
|
if err := etdp.adder.Add(transaction); err != nil && !strings.Contains(err.Error(), duplicateKeyErrorString) {
|
||||||
return "", err
|
return "", err
|
||||||
}
|
}
|
||||||
return transaction.Cid().String(), nil
|
return transaction.Cid().String(), nil
|
||||||
|
@ -18,6 +18,7 @@ package dag_putters
|
|||||||
|
|
||||||
import (
|
import (
|
||||||
"fmt"
|
"fmt"
|
||||||
|
"strings"
|
||||||
|
|
||||||
node "github.com/ipfs/go-ipld-format"
|
node "github.com/ipfs/go-ipld-format"
|
||||||
|
|
||||||
@ -38,7 +39,7 @@ func (etdp *EthTxTrieDagPutter) DagPut(n node.Node) (string, error) {
|
|||||||
if !ok {
|
if !ok {
|
||||||
return "", fmt.Errorf("EthTxTrieDagPutter expected input type %T got %T", &ipld.EthTxTrie{}, n)
|
return "", fmt.Errorf("EthTxTrieDagPutter expected input type %T got %T", &ipld.EthTxTrie{}, n)
|
||||||
}
|
}
|
||||||
if err := etdp.adder.Add(txTrieNode); err != nil {
|
if err := etdp.adder.Add(txTrieNode); err != nil && !strings.Contains(err.Error(), duplicateKeyErrorString) {
|
||||||
return "", err
|
return "", err
|
||||||
}
|
}
|
||||||
return txTrieNode.Cid().String(), nil
|
return txTrieNode.Cid().String(), nil
|
||||||
|
Loading…
Reference in New Issue
Block a user