-
Notifications
You must be signed in to change notification settings - Fork 26
/
backup.go
44 lines (36 loc) · 944 Bytes
/
backup.go
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
package cmd
import (
"os"
"path"
"github.com/aserto-dev/topaz/pkg/cli/cc"
"github.com/aserto-dev/topaz/pkg/cli/clients"
"github.com/aserto-dev/topaz/pkg/cli/dockerx"
"github.com/fatih/color"
)
type BackupCmd struct {
File string `arg:"" default:"backup.tar.gz" help:"absolute file path to make backup to"`
clients.Config
}
const defaultFileName = "backup.tar.gz"
func (cmd *BackupCmd) Run(c *cc.CommonCtx) error {
if running, err := dockerx.IsRunning(dockerx.Topaz); !running || err != nil {
if err != nil {
return err
}
color.Yellow("!!! topaz is not running")
return nil
}
dirClient, err := clients.NewDirectoryClient(c, &cmd.Config)
if err != nil {
return err
}
if cmd.File == defaultFileName {
currentDir, err := os.Getwd()
if err != nil {
return err
}
cmd.File = path.Join(currentDir, defaultFileName)
}
color.Green(">>> starting backup...")
return dirClient.Backup(c.Context, cmd.File)
}