-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcmd_config.go
115 lines (103 loc) · 2.71 KB
/
cmd_config.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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
package omp
import (
"encoding/xml"
"errors"
)
// Config .
type Config struct {
Text string `xml:",chardata"`
ID string `xml:"id,attr,omitempty"`
Name string `xml:"name,omitempty"`
}
// CreateConfig .
type CreateConfig struct {
requestBase
XMLName xml.Name `xml:"create_config"`
Text string `xml:",chardata"`
Copy string `xml:"copy,omitempty"`
Name string `xml:"name,omitempty"`
// GetConfigsResponse GetConfigsResponse `xml:"get_configs_response"`
}
// CreateConfigResponse .
type CreateConfigResponse struct {
responseBase
XMLName xml.Name `xml:"create_config_response"`
Text string `xml:",chardata"`
ID string `xml:"id,attr,omitempty"`
}
// GetConfigs .
type GetConfigs struct {
requestBase
XMLName xml.Name `xml:"get_configs"`
}
// GetConfigsResponse .
type GetConfigsResponse struct {
responseBase
XMLName xml.Name `xml:"get_configs_response"`
Text string `xml:",chardata"`
Config []struct {
Text string `xml:",chardata"`
ID string `xml:"id,attr,omitempty"`
Name string `xml:"name,omitempty"`
Comment string `xml:"comment,omitempty"`
CreationTime string `xml:"creation_time,omitempty"`
ModificationTime string `xml:"modification_time,omitempty"`
FamilyCount *struct {
Text string `xml:",chardata"`
Growing string `xml:"growing,omitempty"`
} `xml:"family_count,omitempty"`
NvtCount *struct {
Text string `xml:",chardata"`
Growing string `xml:"growing,omitempty"`
} `xml:"nvt_count,omitempty"`
InUse string `xml:"in_use,omitempty"`
Writable string `xml:"writable,omitempty"`
UserTags *UserTags `xml:"user_tags,omitempty"`
} `xml:"config,omitempty"`
}
// CreateConfig .
func (conn *Connector) CreateConfig(id string, name string) (string, error) {
req := CreateConfig{
Copy: id,
Name: name,
}
resp := &CreateConfigResponse{}
err := conn.doRequest(req, resp)
if err != nil {
return "", err
}
return resp.ID, nil
}
// GetConfigs .
func (conn *Connector) GetConfigs() ([]Config, error) {
req := GetConfigs{}
res := []Config{}
resp := &GetConfigsResponse{}
err := conn.doRequest(req, resp)
if err != nil {
return res, err
}
configs := resp.Config
for i := range configs {
config := Config{
ID: configs[i].ID,
Name: configs[i].Name,
}
res = append(res, config)
}
return res, nil
}
// GetConfigByName get the config struct
// corresponding to the name you passed in
func (conn *Connector) GetConfigByName(name string) (Config, error) {
configs, err := conn.GetConfigs()
if err != nil {
return Config{}, err
}
for i := range configs {
if configs[i].Name == name {
return configs[i], nil
}
}
return Config{}, errors.New("no config with such name")
}