refactor: rename package errors to zerrors (#7039)

* chore: rename package errors to zerrors

* rename package errors to gerrors

* fix error related linting issues

* fix zitadel error assertion

* fix gosimple linting issues

* fix deprecated linting issues

* resolve gci linting issues

* fix import structure

---------

Co-authored-by: Elio Bischof <elio@zitadel.com>
This commit is contained in:
Tim Möhlmann
2023-12-08 16:30:55 +02:00
committed by GitHub
parent ddbea119f1
commit f680dd934d
798 changed files with 5809 additions and 5813 deletions

View File

@@ -14,7 +14,7 @@ import (
"sigs.k8s.io/yaml"
"github.com/zitadel/zitadel/internal/domain"
zitadel_errors "github.com/zitadel/zitadel/internal/errors"
"github.com/zitadel/zitadel/internal/zerrors"
)
const i18nPath = "/i18n"
@@ -26,12 +26,12 @@ func newBundle(dir http.FileSystem, defaultLanguage language.Tag, allowedLanguag
bundle.RegisterUnmarshalFunc("toml", toml.Unmarshal)
i18nDir, err := dir.Open(i18nPath)
if err != nil {
return nil, zitadel_errors.ThrowNotFound(err, "I18N-MnXRie", "path not found")
return nil, zerrors.ThrowNotFound(err, "I18N-MnXRie", "path not found")
}
defer i18nDir.Close()
files, err := i18nDir.Readdir(0)
if err != nil {
return nil, zitadel_errors.ThrowNotFound(err, "I18N-Gew23", "cannot read dir")
return nil, zerrors.ThrowNotFound(err, "I18N-Gew23", "cannot read dir")
}
for _, file := range files {
fileLang, _ := strings.CutSuffix(file.Name(), filepath.Ext(file.Name()))
@@ -39,7 +39,7 @@ func newBundle(dir http.FileSystem, defaultLanguage language.Tag, allowedLanguag
continue
}
if err := addFileFromFileSystemToBundle(dir, bundle, file); err != nil {
return nil, zitadel_errors.ThrowNotFoundf(err, "I18N-ZS2AW", "cannot append file %s to Bundle", file.Name())
return nil, zerrors.ThrowNotFoundf(err, "I18N-ZS2AW", "cannot append file %s to Bundle", file.Name())
}
}
return bundle, nil