1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72
|
// Copyright 2015 Google Inc. All Rights Reserved.
//
// 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 contains utility functions for use throughout the Cloud SQL Auth proxy.
package util
import (
_ "embed"
"strings"
)
// SplitName splits a fully qualified instance into its project, region, and
// instance name components. While we make the transition to regionalized
// metadata, the region is optional.
//
// Examples:
//
// "proj:region:my-db" -> ("proj", "region", "my-db")
// "google.com:project:region:instance" -> ("google.com:project", "region", "instance")
// "google.com:missing:part" -> ("google.com:missing", "", "part")
func SplitName(instance string) (project, region, name string) {
spl := strings.Split(instance, ":")
if len(spl) < 2 {
return "", "", instance
}
if dot := strings.Index(spl[0], "."); dot != -1 {
spl[1] = spl[0] + ":" + spl[1]
spl = spl[1:]
}
switch {
case len(spl) < 2:
return "", "", instance
case len(spl) == 2:
return spl[0], "", spl[1]
default:
return spl[0], spl[1], spl[2]
}
}
// versionString indicates the version of the proxy currently in use.
//
//go:embed version.txt
var versionString string
// metadataString indicates additional build or distribution metadata.
var metadataString = ""
// SemanticVersion returns the version of the proxy in a semver format.
func SemanticVersion() string {
v := strings.TrimSpace(versionString)
if metadataString != "" {
v += "+" + metadataString
}
return v
}
// UserAgentFromVersionString returns an appropriate user agent string
// for identifying this proxy process.
func UserAgentFromVersionString() string {
return "cloud_sql_proxy/" + SemanticVersion()
}
|