Files
kubevela/pkg/addon/error.go
Siege Lion cdafc03e7d Feat: search useful addon version automatically (#4232)
* Feat: search useful addon version automatically

Verify whether the current addon version meets the system version requirements according to the obtained specified version. There are two system version requirements: Vela core version, K8s version.

If meet the requirements and continue to perform the next task.

If the requirements are not met, obtain the highest version that meets the requirements

Refs #4181

Signed-off-by: HanMengnan <1448189829@qq.com>

* Fix: Optimize function implementation and code order, and modify test cases

add more comments of function

optimize package import sequence

optimize user interaction logic and error information extraction logic

Signed-off-by: HanMengnan <1448189829@qq.com>

* Fix: change template string of regular expression to const type string

Signed-off-by: HanMengnan <1448189829@qq.com>
2022-06-29 17:46:56 +08:00

79 lines
2.5 KiB
Go

/*
Copyright 2021 The KubeVela 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 addon
import (
"fmt"
"github.com/google/go-github/v32/github"
"github.com/pkg/errors"
)
// NewAddonError will return an
func NewAddonError(msg string) error {
return errors.New(msg)
}
var (
// ErrRenderCueTmpl is error when render addon's cue file
ErrRenderCueTmpl = NewAddonError("fail to render cue tmpl")
// ErrRateLimit means exceed GitHub access rate limit
ErrRateLimit = NewAddonError("exceed github access rate limit")
// ErrNotExist means addon not exists
ErrNotExist = NewAddonError("addon not exist")
// ErrRegistryNotExist means registry not exists
ErrRegistryNotExist = NewAddonError("registry does not exist")
)
// WrapErrRateLimit return ErrRateLimit if is the situation, or return error directly
func WrapErrRateLimit(err error) error {
errRate := &github.RateLimitError{}
if errors.As(err, &errRate) {
return ErrRateLimit
}
return err
}
// VersionUnMatchError means addon system requirement cannot meet requirement
type VersionUnMatchError struct {
err error
addonName string
// userSelectedAddonVersion is the version of the addon which is selected to install by user
userSelectedAddonVersion string
// availableVersion is the latest available addon's version which suits system requirements
availableVersion string
}
// GetAvailableVersion load addon's available version from the err
func (v VersionUnMatchError) GetAvailableVersion() (string, error) {
if v.availableVersion == "" {
return "", fmt.Errorf("%s don't exist available version meet system requirement", v.addonName)
}
return v.availableVersion, nil
}
func (v VersionUnMatchError) Error() string {
if v.availableVersion != "" {
return fmt.Sprintf("fail to install %s version of %s, because %s.\nInstall %s(v%s) which is the latest version that suits current version requirements", v.userSelectedAddonVersion, v.addonName, v.err, v.addonName, v.availableVersion)
}
return fmt.Sprintf("fail to install %s version of %s, because %s", v.userSelectedAddonVersion, v.addonName, v.err)
}