mirror

Mirror free and open-source projects you like with minimal effort
Log | Files | Refs | README

commit 097f8670eb2e5c49a36dcf399e59f4057007b5b1
parent 8ca5da1434c7ad1cc2e23e9d8a08d15b14382ebc
Author: Slack Coder <slackcoder@server.ky>
Date:   Tue, 15 Oct 2024 10:35:09 -0500

Fail immediately when commands missing

Diffstat:
Ainternal/exec.go | 21+++++++++++++++++++++
Minternal/service/service.go | 13+++++++++++++
2 files changed, 34 insertions(+), 0 deletions(-)

diff --git a/internal/exec.go b/internal/exec.go @@ -0,0 +1,21 @@ +package internal + +import ( + "fmt" + "os/exec" +) + +type CommandNotFound string + +func (e CommandNotFound) Error() string { + return fmt.Sprintf("command '%s' is missing and must be present for operation", string(e)) +} + +func RequireCommand(cmd string) error { + _, err := exec.LookPath(cmd) + if err != nil { + return CommandNotFound(cmd) + } + + return nil +} diff --git a/internal/service/service.go b/internal/service/service.go @@ -10,9 +10,16 @@ import ( "sync" "time" + "git.server.ky/slackcoder/mirror/internal" "git.server.ky/slackcoder/mirror/internal/github" ) +// These commands are required by the service to operate. +var requiredCommands = []string{ + "git", + "rsync", +} + type Service struct { cfg *Config @@ -26,6 +33,12 @@ type Service struct { func NewService(cfg *Config) (*Service, error) { cfg.Apply(DefaultConfig) + for _, cmd := range requiredCommands { + if err := internal.RequireCommand(cmd); err != nil { + return nil, err + } + } + srv := &Service{ cfg: cfg, mirrors: nil,