-
Notifications
You must be signed in to change notification settings - Fork 26
/
exporter.go
39 lines (32 loc) · 968 Bytes
/
exporter.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
package cmd
import (
"fmt"
"path/filepath"
"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"
"github.com/google/uuid"
)
type ExportCmd struct {
Directory string `short:"d" required:"" help:"directory to write .json data"`
clients.Config
}
func (cmd *ExportCmd) 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
}
fmt.Fprintf(c.UI.Err(), ">>> exporting data...\n")
objectsFile := filepath.Join(cmd.Directory, "objects.json")
relationsFile := filepath.Join(cmd.Directory, "relations.json")
cmd.Config.SessionID = uuid.NewString()
dirClient, err := clients.NewDirectoryClient(c, &cmd.Config)
if err != nil {
return err
}
return dirClient.Export(c.Context, objectsFile, relationsFile)
}