mirror of
https://github.com/go-gitea/gitea
synced 2024-11-01 07:44:25 +00:00
a99b96cbcd
- Share code between web and api - Add some tests
26 lines
638 B
Go
26 lines
638 B
Go
// Copyright 2023 The Gitea Authors. All rights reserved.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
package secrets
|
|
|
|
import (
|
|
"regexp"
|
|
|
|
"code.gitea.io/gitea/modules/util"
|
|
)
|
|
|
|
// https://docs.github.com/en/actions/security-guides/encrypted-secrets#naming-your-secrets
|
|
var (
|
|
namePattern = regexp.MustCompile("(?i)^[A-Z_][A-Z0-9_]*$")
|
|
forbiddenPrefixPattern = regexp.MustCompile("(?i)^GIT(EA|HUB)_")
|
|
|
|
ErrInvalidName = util.NewInvalidArgumentErrorf("invalid secret name")
|
|
)
|
|
|
|
func ValidateName(name string) error {
|
|
if !namePattern.MatchString(name) || forbiddenPrefixPattern.MatchString(name) {
|
|
return ErrInvalidName
|
|
}
|
|
return nil
|
|
}
|