k3s/vendor/k8s.io/cluster-bootstrap/util/tokens/tokens.go
Darren Shepherd 661988fb38 Update vendor
2019-09-27 16:54:32 -07:00

39 lines
1.1 KiB
Go

/*
Copyright 2019 The Kubernetes Authors.
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 tokens
import (
"fmt"
"regexp"
"k8s.io/cluster-bootstrap/token/api"
)
var (
bootstrapTokenRe = regexp.MustCompile(api.BootstrapTokenPattern)
)
// ParseToken tries and parse a valid token from a string.
// A token ID and token secret are returned in case of success, an error otherwise.
func ParseToken(s string) (tokenID, tokenSecret string, err error) {
split := bootstrapTokenRe.FindStringSubmatch(s)
if len(split) != 3 {
return "", "", fmt.Errorf("token [%q] was not of form [%q]", s, api.BootstrapTokenPattern)
}
return split[1], split[2], nil
}