mirror of
https://github.com/kubescape/kubescape.git
synced 2026-04-15 06:58:11 +00:00
78 lines
1.8 KiB
Go
78 lines
1.8 KiB
Go
package getter
|
|
|
|
import (
|
|
"net/url"
|
|
"strings"
|
|
)
|
|
|
|
var NativeFrameworks = []string{"nsa", "mitre", "armobest", "devopsbest"}
|
|
|
|
func (armoAPI *ArmoAPI) getFrameworkURL(frameworkName string) string {
|
|
u := url.URL{}
|
|
u.Scheme = "https"
|
|
u.Host = armoAPI.apiURL
|
|
u.Path = "api/v1/armoFrameworks"
|
|
q := u.Query()
|
|
q.Add("customerGUID", armoAPI.customerGUID)
|
|
if isNativeFramework(frameworkName) {
|
|
q.Add("frameworkName", strings.ToUpper(frameworkName))
|
|
} else {
|
|
// For customer framework has to be the way it was added
|
|
q.Add("frameworkName", frameworkName)
|
|
}
|
|
u.RawQuery = q.Encode()
|
|
|
|
return u.String()
|
|
}
|
|
|
|
func (armoAPI *ArmoAPI) getListFrameworkURL() string {
|
|
u := url.URL{}
|
|
u.Scheme = "https"
|
|
u.Host = armoAPI.apiURL
|
|
u.Path = "api/v1/armoFrameworks"
|
|
q := u.Query()
|
|
q.Add("customerGUID", armoAPI.customerGUID)
|
|
u.RawQuery = q.Encode()
|
|
|
|
return u.String()
|
|
}
|
|
func (armoAPI *ArmoAPI) getExceptionsURL(clusterName string) string {
|
|
u := url.URL{}
|
|
u.Scheme = "https"
|
|
u.Host = armoAPI.apiURL
|
|
u.Path = "api/v1/armoPostureExceptions"
|
|
|
|
q := u.Query()
|
|
q.Add("customerGUID", armoAPI.customerGUID)
|
|
// if clusterName != "" { // TODO - fix customer name support in Armo BE
|
|
// q.Add("clusterName", clusterName)
|
|
// }
|
|
u.RawQuery = q.Encode()
|
|
|
|
return u.String()
|
|
}
|
|
|
|
func (armoAPI *ArmoAPI) getAccountConfig(clusterName string) string {
|
|
u := url.URL{}
|
|
u.Scheme = "https"
|
|
u.Host = armoAPI.apiURL
|
|
u.Path = "api/v1/armoCustomerConfiguration"
|
|
|
|
q := u.Query()
|
|
q.Add("customerGUID", armoAPI.customerGUID)
|
|
if clusterName != "" { // TODO - fix customer name support in Armo BE
|
|
q.Add("clusterName", clusterName)
|
|
}
|
|
u.RawQuery = q.Encode()
|
|
|
|
return u.String()
|
|
}
|
|
|
|
func (armoAPI *ArmoAPI) getCustomerURL() string {
|
|
u := url.URL{}
|
|
u.Scheme = "https"
|
|
u.Host = armoAPI.apiURL
|
|
u.Path = "api/v1/createTenant"
|
|
return u.String()
|
|
}
|