64 lines
1.6 KiB
Go
64 lines
1.6 KiB
Go
package customtemplates
|
|
|
|
import (
|
|
"errors"
|
|
"regexp"
|
|
|
|
portainer "github.com/portainer/portainer/api"
|
|
"github.com/portainer/portainer/api/dataservices"
|
|
"github.com/portainer/portainer/api/dataservices/source"
|
|
gittypes "github.com/portainer/portainer/api/git/types"
|
|
)
|
|
|
|
func populateGitConfig(tx dataservices.DataStoreTx, userContext source.UserContext, template *portainer.CustomTemplate) {
|
|
if template.Artifact == nil || len(template.Artifact.Files) == 0 {
|
|
return
|
|
}
|
|
|
|
file := template.Artifact.Files[0]
|
|
|
|
src, err := tx.Source().Read(userContext, file.SourceID)
|
|
if err != nil || src.Git == nil {
|
|
return
|
|
}
|
|
|
|
cfg := &gittypes.RepoConfig{
|
|
URL: src.Git.URL,
|
|
Authentication: src.Git.Authentication,
|
|
TLSSkipVerify: src.Git.TLSSkipVerify,
|
|
ReferenceName: file.Ref,
|
|
ConfigFilePath: file.Path,
|
|
ConfigHash: file.Hash,
|
|
}
|
|
|
|
if cfg.Authentication != nil {
|
|
sanitized := *cfg.Authentication
|
|
sanitized.Password = ""
|
|
cfg.Authentication = &sanitized
|
|
}
|
|
|
|
template.GitConfig = cfg
|
|
}
|
|
|
|
// IsValidNote reports whether note is safe to display. Notes containing <img> tags are rejected.
|
|
func IsValidNote(note string) bool {
|
|
if len(note) == 0 {
|
|
return true
|
|
}
|
|
match, _ := regexp.MatchString("<img", note)
|
|
return !match
|
|
}
|
|
|
|
// ValidateVariablesDefinitions returns an error if any variable definition is missing a required field.
|
|
func ValidateVariablesDefinitions(variables []portainer.CustomTemplateVariableDefinition) error {
|
|
for _, variable := range variables {
|
|
if variable.Name == "" {
|
|
return errors.New("variable name is required")
|
|
}
|
|
if variable.Label == "" {
|
|
return errors.New("variable label is required")
|
|
}
|
|
}
|
|
return nil
|
|
}
|