mirror of
https://github.com/QuilibriumNetwork/ceremonyclient.git
synced 2026-02-23 03:17:25 +08:00
116 lines
3.1 KiB
Go
116 lines
3.1 KiB
Go
package node
|
|
|
|
import (
|
|
"fmt"
|
|
"os"
|
|
"path/filepath"
|
|
|
|
"github.com/spf13/cobra"
|
|
"source.quilibrium.com/quilibrium/monorepo/client/utils"
|
|
)
|
|
|
|
// installCmd represents the command to install the Quilibrium node
|
|
var installCmd = &cobra.Command{
|
|
Use: "install [version]",
|
|
Short: "Install Quilibrium node",
|
|
Long: `Install Quilibrium node binary.
|
|
If no version is specified, the latest version will be installed.
|
|
|
|
|
|
Examples:
|
|
# Install the latest version
|
|
qclient node install
|
|
|
|
# Install a specific version
|
|
qclient node install 2.1.0
|
|
|
|
# Install without creating a dedicated user
|
|
qclient node install --no-create-user`,
|
|
Args: cobra.RangeArgs(0, 1),
|
|
Run: func(cmd *cobra.Command, args []string) {
|
|
// Get system information and validate
|
|
osType, arch, err := utils.GetSystemInfo()
|
|
if err != nil {
|
|
fmt.Fprintf(os.Stderr, "Error: %v\n", err)
|
|
return
|
|
}
|
|
|
|
// Determine version to install
|
|
version := determineVersion(args)
|
|
|
|
fmt.Fprintf(os.Stdout, "Installing Quilibrium node for %s-%s, version: %s\n", osType, arch, version)
|
|
|
|
// Check if we need to create a dedicated user (opt-out)
|
|
|
|
if err := createNodeUser(); err != nil {
|
|
fmt.Fprintf(os.Stderr, "Error creating user: %v\n", err)
|
|
fmt.Fprintf(os.Stdout, "Continuing with installation as current user...\n")
|
|
}
|
|
|
|
// Install the node
|
|
installNode(version)
|
|
},
|
|
}
|
|
|
|
func init() {
|
|
// Add the install command to the node command
|
|
NodeCmd.AddCommand(installCmd)
|
|
}
|
|
|
|
// installNode installs the Quilibrium node
|
|
func installNode(version string) {
|
|
// Create installation directory
|
|
if err := utils.ValidateAndCreateDir(installPath); err != nil {
|
|
fmt.Fprintf(os.Stderr, "Error creating installation directory: %v\n", err)
|
|
return
|
|
}
|
|
|
|
// Create data directory
|
|
if err := utils.ValidateAndCreateDir(dataPath); err != nil {
|
|
fmt.Fprintf(os.Stderr, "Error creating data directory: %v\n", err)
|
|
return
|
|
}
|
|
|
|
// Download and install the node
|
|
if version == "latest" {
|
|
latestVersion, err := utils.GetLatestVersion(utils.ReleaseTypeNode)
|
|
if err != nil {
|
|
fmt.Fprintf(os.Stderr, "Error getting latest version: %v\n", err)
|
|
return
|
|
}
|
|
|
|
version = latestVersion
|
|
fmt.Fprintf(os.Stdout, "Installing latest version: %s\n", version)
|
|
}
|
|
|
|
if err := installByVersion(version); err != nil {
|
|
fmt.Fprintf(os.Stderr, "Error installing specific version: %v\n", err)
|
|
os.Exit(1)
|
|
}
|
|
|
|
// Finish installation
|
|
nodeBinaryPath := filepath.Join(installPath, string(utils.ReleaseTypeNode), version)
|
|
finishInstallation(nodeBinaryPath, version)
|
|
}
|
|
|
|
// installByVersion installs a specific version of the Quilibrium node
|
|
func installByVersion(version string) error {
|
|
// Create version-specific directory
|
|
versionDir := filepath.Join(installPath, version)
|
|
if err := utils.ValidateAndCreateDir(versionDir); err != nil {
|
|
return fmt.Errorf("failed to create version directory: %w", err)
|
|
}
|
|
|
|
// Download the release
|
|
if err := utils.DownloadRelease(utils.ReleaseTypeNode, version); err != nil {
|
|
return fmt.Errorf("failed to download release: %w", err)
|
|
}
|
|
|
|
// Download signature files
|
|
if err := utils.DownloadReleaseSignatures(utils.ReleaseTypeNode, version); err != nil {
|
|
return fmt.Errorf("failed to download signature files: %w", err)
|
|
}
|
|
|
|
return nil
|
|
}
|