aboutsummaryrefslogtreecommitdiffstats
path: root/modules/packages/pub
diff options
context:
space:
mode:
authorKN4CK3R <admin@oldschoolhack.me>2022-12-31 12:49:37 +0100
committerGitHub <noreply@github.com>2022-12-31 12:49:37 +0100
commit3fef47b41c98392865d13fd21bbcec34236daf4f (patch)
tree16808c6ea9ffd2cc0438d11831fd3a7503d15056 /modules/packages/pub
parentdce8887494268c99ba5da8d5152b5d1cc03cfb83 (diff)
downloadgitea-3fef47b41c98392865d13fd21bbcec34236daf4f.tar.gz
gitea-3fef47b41c98392865d13fd21bbcec34236daf4f.zip
Use ErrInvalidArgument in packages (#22268)
Related to https://github.com/go-gitea/gitea/pull/22262#discussion_r1059010774 Signed-off-by: Andrew Thornton <art27@cantab.net> Co-authored-by: Lunny Xiao <xiaolunwen@gmail.com> Co-authored-by: zeripath <art27@cantab.net> Co-authored-by: Lauris BH <lauris@nix.lv>
Diffstat (limited to 'modules/packages/pub')
-rw-r--r--modules/packages/pub/metadata.go10
1 files changed, 5 insertions, 5 deletions
diff --git a/modules/packages/pub/metadata.go b/modules/packages/pub/metadata.go
index 36fe665707..13a066afac 100644
--- a/modules/packages/pub/metadata.go
+++ b/modules/packages/pub/metadata.go
@@ -6,11 +6,11 @@ package pub
import (
"archive/tar"
"compress/gzip"
- "errors"
"io"
"regexp"
"strings"
+ "code.gitea.io/gitea/modules/util"
"code.gitea.io/gitea/modules/validation"
"github.com/hashicorp/go-version"
@@ -18,10 +18,10 @@ import (
)
var (
- ErrMissingPubspecFile = errors.New("Pubspec file is missing")
- ErrPubspecFileTooLarge = errors.New("Pubspec file is too large")
- ErrInvalidName = errors.New("Package name is invalid")
- ErrInvalidVersion = errors.New("Package version is invalid")
+ ErrMissingPubspecFile = util.NewInvalidArgumentErrorf("Pubspec file is missing")
+ ErrPubspecFileTooLarge = util.NewInvalidArgumentErrorf("Pubspec file is too large")
+ ErrInvalidName = util.NewInvalidArgumentErrorf("package name is invalid")
+ ErrInvalidVersion = util.NewInvalidArgumentErrorf("package version is invalid")
)
var namePattern = regexp.MustCompile(`\A[a-zA-Z_][a-zA-Z0-9_]*\z`)