mirror of https://github.com/go-gitea/gitea.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
638 B
25 lines
638 B
// 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 |
|
}
|
|
|