/* Copyright 2023 The K8sGPT Authors. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. */ package integration import ( "errors" "fmt" "github.com/k8sgpt-ai/k8sgpt/pkg/common" "github.com/k8sgpt-ai/k8sgpt/pkg/integration/prometheus" "github.com/k8sgpt-ai/k8sgpt/pkg/integration/trivy" "github.com/k8sgpt-ai/k8sgpt/pkg/util" "github.com/spf13/viper" ) type IIntegration interface { // Add adds an integration to the cluster Deploy(namespace string) error // Remove removes an integration from the cluster UnDeploy(namespace string) error // AddAnalyzer(*map[string]common.IAnalyzer) GetAnalyzerName() []string // An integration must keep record of its deployed namespace (if not using --no-install) GetNamespace() (string, error) OwnsAnalyzer(string) bool IsActivate() bool } type Integration struct { } var integrations = map[string]IIntegration{ "trivy": trivy.NewTrivy(), "prometheus": prometheus.NewPrometheus(), } func NewIntegration() *Integration { return &Integration{} } func (*Integration) List() []string { keys := make([]string, 0, len(integrations)) for k := range integrations { keys = append(keys, k) } return keys } func (*Integration) Get(name string) (IIntegration, error) { if _, ok := integrations[name]; !ok { return nil, errors.New("integration not found") } return integrations[name], nil } func (i *Integration) AnalyzerByIntegration(input string) (string, error) { for _, name := range i.List() { if integ, err := i.Get(name); err == nil { if integ.OwnsAnalyzer(input) { return name, nil } } } return "", errors.New("analyzerbyintegration: no matches found") } func (*Integration) Activate(name string, namespace string, activeFilters []string, skipInstall bool) error { if _, ok := integrations[name]; !ok { return errors.New("integration not found") } if !skipInstall { if err := integrations[name].Deploy(namespace); err != nil { return err } } mergedFilters := activeFilters mergedFilters = append(mergedFilters, integrations[name].GetAnalyzerName()...) uniqueFilters, _ := util.RemoveDuplicates(mergedFilters) viper.Set("active_filters", uniqueFilters) if err := viper.WriteConfig(); err != nil { return fmt.Errorf("error writing config file: %s", err.Error()) } return nil } func (*Integration) Deactivate(name string, namespace string) error { if _, ok := integrations[name]; !ok { return errors.New("integration not found") } activeFilters := viper.GetStringSlice("active_filters") // Update filters and remove the specific filters for the integration for _, filter := range integrations[name].GetAnalyzerName() { for x, af := range activeFilters { if af == filter { activeFilters = append(activeFilters[:x], activeFilters[x+1:]...) } } } if err := integrations[name].UnDeploy(namespace); err != nil { return err } viper.Set("active_filters", activeFilters) if err := viper.WriteConfig(); err != nil { return fmt.Errorf("error writing config file: %s", err.Error()) } return nil } func (*Integration) IsActivate(name string) (bool, error) { if _, ok := integrations[name]; !ok { return false, errors.New("integration not found") } return integrations[name].IsActivate(), nil }