cert-manager/pkg/api/util/names.go
Richard Wall a70298180a Run a script to update v1alpha2 usage to v1
Script is available at https://github.com/jetstack/cert-manager/pull/3201

Signed-off-by: Richard Wall <richard.wall@jetstack.io>
2020-08-20 14:26:51 +01:00

52 lines
1.4 KiB
Go

/*
Copyright 2019 The Jetstack cert-manager contributors.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package util
import (
"encoding/json"
"fmt"
"hash/fnv"
"regexp"
cmapi "github.com/jetstack/cert-manager/pkg/apis/certmanager/v1"
)
func ComputeCertificateRequestName(crt *cmapi.Certificate) (string, error) {
specBytes, err := json.Marshal(crt.Spec)
if err != nil {
return "", err
}
hashF := fnv.New32()
_, err = hashF.Write(specBytes)
if err != nil {
return "", err
}
crtName := crt.Name
if len(crtName) >= 52 {
// shorten the cert name to 52 chars to ensure the total length of the name
// also shorten the 52 char string to the last non-symbol character
// is less than or equal to 64 characters
validCharIndexes := regexp.MustCompile(`[a-zA-Z\d]`).FindAllStringIndex(fmt.Sprintf("%.52s", crtName), -1)
crtName = crtName[:validCharIndexes[len(validCharIndexes)-1][1]]
}
return fmt.Sprintf("%s-%d", crtName, hashF.Sum32()), nil
}