From 93e7eb35c5f808b631376f9de34258f743531b90 Mon Sep 17 00:00:00 2001 From: Ian Norden Date: Tue, 17 Mar 2020 07:51:39 -0500 Subject: [PATCH] resync command --- cmd/resync.go | 52 +++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 52 insertions(+) create mode 100644 cmd/resync.go diff --git a/cmd/resync.go b/cmd/resync.go new file mode 100644 index 00000000..dd4bb9aa --- /dev/null +++ b/cmd/resync.go @@ -0,0 +1,52 @@ +// Copyright © 2020 Vulcanize, Inc +// +// 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 . + +package cmd + +import ( + "fmt" + + "github.com/spf13/cobra" + "github.com/vulcanize/vulcanizedb/pkg/super_node/resync" +) + +// resyncCmd represents the resync command +var resyncCmd = &cobra.Command{ + Use: "resync", + Short: "Resync historical data", + Long: `Use this command to fill in sections of missing data in the super node`, + Run: func(cmd *cobra.Command, args []string) { + rsyncCmdCommand() + }, +} + +func rsyncCmdCommand() { + rConfig, err := resync.NewReSyncConfig() + if err != nil { + logWithCommand.Fatal(err) + } + rService, err := resync.NewResyncService(rConfig) + if err != nil { + logWithCommand.Fatal(err) + } + if err := rService.Resync(); err != nil { + logWithCommand.Fatal(err) + } + fmt.Printf("%s %s resync finished", rConfig.Chain.String(), rConfig.ResyncType.String()) +} + +func init() { + rootCmd.AddCommand(resyncCmd) +}