-
Notifications
You must be signed in to change notification settings - Fork 26
/
importer.go
40 lines (32 loc) · 953 Bytes
/
importer.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
package cmd
import (
"path/filepath"
"github.com/aserto-dev/topaz/pkg/cli/cc"
"github.com/aserto-dev/topaz/pkg/cli/clients"
"github.com/fatih/color"
"github.com/google/uuid"
)
type ImportCmd struct {
Directory string `short:"d" required:"" help:"directory containing .json data"`
Format FormatVersion `flag:"" short:"f" enum:"3,2" name:"format" default:"3" help:"format of json data"`
clients.Config
}
func (cmd *ImportCmd) Run(c *cc.CommonCtx) error {
if err := CheckRunning(c); err != nil {
return err
}
color.Green(">>> importing data from %s", cmd.Directory)
files, err := filepath.Glob(filepath.Join(cmd.Directory, "*.json"))
if err != nil {
return err
}
cmd.Config.SessionID = uuid.NewString()
dirClient, err := clients.NewDirectoryClient(c, &cmd.Config)
if err != nil {
return err
}
if cmd.Format == V2 {
return dirClient.V2.Import(c.Context, files)
}
return dirClient.V3.Import(c.Context, files)
}