sigs.k8s.io/kubebuilder/v3@v3.14.0/pkg/machinery/funcmap.go (about)

     1  /*
     2  Copyright 2020 The Kubernetes Authors.
     3  
     4  Licensed under the Apache License, Version 2.0 (the "License");
     5  you may not use this file except in compliance with the License.
     6  You may obtain a copy of the License at
     7  
     8      http://www.apache.org/licenses/LICENSE-2.0
     9  
    10  Unless required by applicable law or agreed to in writing, software
    11  distributed under the License is distributed on an "AS IS" BASIS,
    12  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    13  See the License for the specific language governing permissions and
    14  limitations under the License.
    15  */
    16  
    17  package machinery
    18  
    19  import (
    20  	"fmt"
    21  	"hash/fnv"
    22  	"strings"
    23  	"text/template"
    24  
    25  	"golang.org/x/text/cases"
    26  )
    27  
    28  // DefaultFuncMap returns the default template.FuncMap for rendering the template.
    29  func DefaultFuncMap() template.FuncMap {
    30  	return template.FuncMap{
    31  		"title":      cases.Title,
    32  		"lower":      strings.ToLower,
    33  		"upper":      strings.ToUpper,
    34  		"isEmptyStr": isEmptyString,
    35  		"hashFNV":    hashFNV,
    36  	}
    37  }
    38  
    39  // isEmptyString returns whether the string is empty
    40  func isEmptyString(s string) bool {
    41  	return s == ""
    42  }
    43  
    44  // hashFNV will generate a random string useful for generating a unique string
    45  func hashFNV(s string) string {
    46  	hasher := fnv.New32a()
    47  	// Hash.Write never returns an error
    48  	_, _ = hasher.Write([]byte(s))
    49  	return fmt.Sprintf("%x", hasher.Sum(nil))
    50  }