2020-02-19 22:32:59 +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/>.
|
|
|
|
|
2020-08-31 15:58:16 +00:00
|
|
|
package serve
|
2020-02-19 22:32:59 +00:00
|
|
|
|
|
|
|
import (
|
2020-05-30 03:02:47 +00:00
|
|
|
"os"
|
|
|
|
"path/filepath"
|
2020-02-25 22:38:27 +00:00
|
|
|
|
|
|
|
"github.com/spf13/viper"
|
|
|
|
|
2020-06-30 00:16:52 +00:00
|
|
|
"github.com/vulcanize/ipfs-blockchain-watcher/pkg/node"
|
2020-06-22 18:12:32 +00:00
|
|
|
"github.com/vulcanize/ipfs-blockchain-watcher/pkg/postgres"
|
2020-08-31 15:47:06 +00:00
|
|
|
|
|
|
|
"github.com/vulcanize/ipld-eth-server/utils"
|
2020-02-19 22:32:59 +00:00
|
|
|
)
|
|
|
|
|
2020-05-30 03:02:47 +00:00
|
|
|
// Env variables
|
|
|
|
const (
|
2020-08-31 15:47:06 +00:00
|
|
|
SERVER_WS_PATH = "SERVER_WS_PATH"
|
|
|
|
SERVER_IPC_PATH = "SERVER_IPC_PATH"
|
|
|
|
SERVER_HTTP_PATH = "SERVER_HTTP_PATH"
|
2020-05-30 03:02:47 +00:00
|
|
|
|
|
|
|
SERVER_MAX_IDLE_CONNECTIONS = "SERVER_MAX_IDLE_CONNECTIONS"
|
|
|
|
SERVER_MAX_OPEN_CONNECTIONS = "SERVER_MAX_OPEN_CONNECTIONS"
|
|
|
|
SERVER_MAX_CONN_LIFETIME = "SERVER_MAX_CONN_LIFETIME"
|
|
|
|
)
|
|
|
|
|
|
|
|
// Config struct
|
2020-02-19 22:32:59 +00:00
|
|
|
type Config struct {
|
2020-08-31 15:47:06 +00:00
|
|
|
DB *postgres.DB
|
|
|
|
DBConfig postgres.Config
|
2020-05-30 03:02:47 +00:00
|
|
|
WSEndpoint string
|
|
|
|
HTTPEndpoint string
|
|
|
|
IPCEndpoint string
|
2020-02-25 22:38:27 +00:00
|
|
|
}
|
|
|
|
|
2020-06-30 00:16:52 +00:00
|
|
|
// NewConfig is used to initialize a watcher config from a .toml file
|
|
|
|
// Separate chain watcher instances need to be ran with separate ipfs path in order to avoid lock contention on the ipfs repository lockfile
|
|
|
|
func NewConfig() (*Config, error) {
|
2020-02-25 22:38:27 +00:00
|
|
|
c := new(Config)
|
2020-08-31 15:47:06 +00:00
|
|
|
|
|
|
|
viper.BindEnv("server.wsPath", SERVER_WS_PATH)
|
|
|
|
viper.BindEnv("server.ipcPath", SERVER_IPC_PATH)
|
|
|
|
viper.BindEnv("server.httpPath", SERVER_HTTP_PATH)
|
2020-05-30 03:02:47 +00:00
|
|
|
|
|
|
|
c.DBConfig.Init()
|
|
|
|
|
2020-08-31 15:47:06 +00:00
|
|
|
wsPath := viper.GetString("watcher.wsPath")
|
|
|
|
if wsPath == "" {
|
|
|
|
wsPath = "127.0.0.1:8080"
|
|
|
|
}
|
|
|
|
c.WSEndpoint = wsPath
|
|
|
|
ipcPath := viper.GetString("watcher.ipcPath")
|
|
|
|
if ipcPath == "" {
|
|
|
|
home, err := os.UserHomeDir()
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
2020-05-30 03:02:47 +00:00
|
|
|
}
|
2020-08-31 15:47:06 +00:00
|
|
|
ipcPath = filepath.Join(home, ".vulcanize/vulcanize.ipc")
|
2020-05-30 03:02:47 +00:00
|
|
|
}
|
2020-08-31 15:47:06 +00:00
|
|
|
c.IPCEndpoint = ipcPath
|
|
|
|
httpPath := viper.GetString("watcher.httpPath")
|
|
|
|
if httpPath == "" {
|
|
|
|
httpPath = "127.0.0.1:8081"
|
|
|
|
}
|
|
|
|
c.HTTPEndpoint = httpPath
|
|
|
|
overrideDBConnConfig(&c.DBConfig)
|
2020-08-31 15:59:15 +00:00
|
|
|
serveDB := utils.LoadPostgres(c.DBConfig, postgres.Info{})
|
2020-08-31 15:47:06 +00:00
|
|
|
c.DB = &serveDB
|
2020-05-30 03:02:47 +00:00
|
|
|
|
|
|
|
return c, nil
|
|
|
|
}
|
|
|
|
|
2020-08-31 15:47:06 +00:00
|
|
|
func overrideDBConnConfig(con *postgres.Config) {
|
|
|
|
viper.BindEnv("database.server.maxIdle", SERVER_MAX_IDLE_CONNECTIONS)
|
|
|
|
viper.BindEnv("database.server.maxOpen", SERVER_MAX_OPEN_CONNECTIONS)
|
|
|
|
viper.BindEnv("database.server.maxLifetime", SERVER_MAX_CONN_LIFETIME)
|
|
|
|
con.MaxIdle = viper.GetInt("database.server.maxIdle")
|
|
|
|
con.MaxOpen = viper.GetInt("database.server.maxOpen")
|
|
|
|
con.MaxLifetime = viper.GetInt("database.server.maxLifetime")
|
2020-02-19 22:32:59 +00:00
|
|
|
}
|