forked from dfuse-io/dfuse-eosio
-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.go
138 lines (115 loc) · 5.25 KB
/
index.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
// Copyright 2019 dfuse Platform Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package dgraphql
import (
"fmt"
"github.com/streamingfast/derr"
eosResolver "github.com/dfuse-io/dfuse-eosio/dgraphql/resolvers"
pbabicodec "github.com/dfuse-io/dfuse-eosio/pb/dfuse/eosio/abicodec/v1"
pbaccounthist "github.com/dfuse-io/dfuse-eosio/pb/dfuse/eosio/accounthist/v1"
pbtokenmeta "github.com/dfuse-io/dfuse-eosio/pb/dfuse/eosio/tokenmeta/v1"
"github.com/dfuse-io/dfuse-eosio/trxdb"
"github.com/streamingfast/dgrpc"
pbblockmeta "github.com/streamingfast/pbgo/dfuse/blockmeta/v1"
pbsearch "github.com/streamingfast/pbgo/dfuse/search/v1"
drateLimiter "github.com/streamingfast/dauth/ratelimiter"
"github.com/streamingfast/dgraphql"
dgraphqlApp "github.com/streamingfast/dgraphql/app/dgraphql"
"go.uber.org/zap"
)
type Config struct {
dgraphqlApp.Config
RatelimiterPlugin string
SearchAddr string
ABICodecAddr string
BlockMetaAddr string
TokenmetaAddr string
AccountHistAccountAddr string
AccountHistAccountContractAddr string
KVDBDSN string
}
func NewApp(config *Config) (*dgraphqlApp.App, error) {
zlog.Info("new dgraphql eosio app", zap.Reflect("config", config))
dgraphqlBaseConfig := config.Config
return dgraphqlApp.New(&dgraphqlBaseConfig, &dgraphqlApp.Modules{
PredefinedGraphqlExamples: GraphqlExamples(config),
SchemaFactory: &SchemaFactory{config: config},
}), nil
}
type SchemaFactory struct {
config *Config
}
func (f *SchemaFactory) Schemas() (*dgraphql.Schemas, error) {
zlog.Info("creating db reader")
dbReader, err := trxdb.New(f.config.KVDBDSN, trxdb.WithLogger(zlog))
if err != nil {
return nil, fmt.Errorf("invalid trxdb connection info provided: %w", err)
}
zlog.Info("creating abicodec grpc client", zap.String("abicodec_addr", f.config.ABICodecAddr))
abiConn, err := dgrpc.NewInternalClient(f.config.ABICodecAddr)
if err != nil {
return nil, fmt.Errorf("failed getting abi grpc client: %w", err)
}
abiClient := pbabicodec.NewDecoderClient(abiConn)
zlog.Info("creating blockmeta grpc client", zap.String("blockmeta_addr", f.config.BlockMetaAddr))
blockMetaClient, err := pbblockmeta.NewClient(f.config.BlockMetaAddr)
if err != nil {
return nil, fmt.Errorf("failed creating blockmeta client: %w", err)
}
zlog.Info("creating search grpc client", zap.String("search_addr", f.config.SearchAddr))
searchConn, err := dgrpc.NewInternalClient(f.config.SearchAddr)
if err != nil {
return nil, fmt.Errorf("failed getting search grpc client: %w", err)
}
searchRouterClient := pbsearch.NewRouterClient(searchConn)
zlog.Info("creating tokenmeta grpc client", zap.String("tokenmeta_addr", f.config.TokenmetaAddr))
tokenmetaConn, err := dgrpc.NewInternalClient(f.config.TokenmetaAddr)
if err != nil {
return nil, fmt.Errorf("unable to create tokenmeta client connection: %w", err)
}
tokenmetaClient := pbtokenmeta.NewTokenMetaClient(tokenmetaConn)
rateLimiter, err := drateLimiter.New(f.config.RatelimiterPlugin)
derr.Check("unable to initialize rate limiter", err)
zlog.Info("creating accounthist grpc clients",
zap.String("accounthist_account_addr", f.config.AccountHistAccountAddr),
zap.String("accounthist_account_contract_addr", f.config.AccountHistAccountContractAddr),
)
accounthistClient := &eosResolver.AccounthistClient{}
if f.config.AccountHistAccountAddr != "" {
zlog.Info("setting up accounthist <account> client", zap.String("accounthist_account_addr", f.config.AccountHistAccountAddr))
accountHistAccConn, err := dgrpc.NewInternalClient(f.config.AccountHistAccountAddr)
if err != nil {
return nil, fmt.Errorf("unable to create tokenmeta client connection: %w", err)
}
accounthistClient.Account = pbaccounthist.NewAccountHistoryClient(accountHistAccConn)
}
if f.config.AccountHistAccountContractAddr != "" {
zlog.Info("setting up accounthist <account-contract> client", zap.String("accounthist_account_contract_addr", f.config.AccountHistAccountContractAddr))
accountHistAccCtrConn, err := dgrpc.NewInternalClient(f.config.AccountHistAccountContractAddr)
if err != nil {
return nil, fmt.Errorf("unable to create tokenmeta client connection: %w", err)
}
accounthistClient.AccountContract = pbaccounthist.NewAccountContractHistoryClient(accountHistAccCtrConn)
}
zlog.Info("configuring resolver and parsing schemas")
resolver, err := eosResolver.NewRoot(searchRouterClient, dbReader, blockMetaClient, abiClient, rateLimiter, tokenmetaClient, accounthistClient)
if err != nil {
return nil, fmt.Errorf("unable to create root resolver: %w", err)
}
schemas, err := dgraphql.NewSchemas(resolver)
if err != nil {
return nil, fmt.Errorf("unable to parse schema: %w", err)
}
return schemas, nil
}