summaryrefslogtreecommitdiff
path: root/cmd/gonf/cmd_deploy.go
blob: c541a25788cd8b2303504551c301de5c1b94ee95 (plain)
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
package main

import (
	"context"
	"flag"
	"io"
	"log/slog"
	"path/filepath"
)

func cmdDeploy(ctx context.Context,
	f *flag.FlagSet,
	args []string,
	getenv func(string) string,
	stdout, stderr io.Writer,
) error {
	f.Init(`gonf deploy [-FLAG]
where FLAG can be one or more of`, flag.ContinueOnError)
	hostFlag := addHostFlag(f)
	f.SetOutput(stderr)
	_ = f.Parse(args)
	if helpMode {
		f.SetOutput(stdout)
		f.Usage()
	}
	hostDir, err := hostFlagToHostDir(f, hostFlag)
	if err != nil {
		f.Usage()
		return err
	}
	_ = hostDir
	return runDeploy(ctx, getenv, stdout, stderr, *hostFlag, hostDir)
}

func runDeploy(ctx context.Context,
	getenv func(string) string,
	stdout, stderr io.Writer,
	hostFlag string,
	hostDir string,
) error {
	sshc, err := newSSHClient(ctx, getenv, hostFlag+":22")
	if err != nil {
		slog.Error("deploy", "action", "newSshClient", "error", err)
		return err
	}
	defer func() {
		if e := sshc.Close(); err == nil {
			err = e
		}
	}()

	if err = sshc.SendFile(ctx, stdout, stderr, filepath.Join(hostDir, hostFlag)); err != nil {
		slog.Error("deploy", "action", "SendFile", "error", err)
	}

	return err
}