2017-08-27 19:27:28 +00:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"encoding/base64"
|
|
|
|
"os"
|
|
|
|
"os/exec"
|
|
|
|
"path"
|
|
|
|
"strings"
|
|
|
|
)
|
|
|
|
|
2017-08-27 19:57:23 +00:00
|
|
|
// gcr default username
|
|
|
|
const username = "_json_key"
|
|
|
|
|
2017-08-27 19:27:28 +00:00
|
|
|
func main() {
|
|
|
|
var (
|
2017-08-27 19:57:23 +00:00
|
|
|
repo = getenv("PLUGIN_REPO")
|
|
|
|
registry = getenv("PLUGIN_REGISTRY")
|
|
|
|
password = getenv(
|
|
|
|
"PLUGIN_JSON_KEY",
|
|
|
|
"GCR_JSON_KEY",
|
|
|
|
"GOOGLE_CREDENTIALS",
|
2017-08-29 20:52:33 +00:00
|
|
|
"TOKEN",
|
2017-08-27 19:57:23 +00:00
|
|
|
)
|
2017-08-27 19:27:28 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
// decode the token if base64 encoded
|
|
|
|
decoded, err := base64.StdEncoding.DecodeString(password)
|
|
|
|
if err == nil {
|
|
|
|
password = string(decoded)
|
|
|
|
}
|
|
|
|
|
|
|
|
// default registry value
|
|
|
|
if registry == "" {
|
|
|
|
registry = "gcr.io"
|
|
|
|
}
|
|
|
|
|
|
|
|
// must use the fully qualified repo name. If the
|
|
|
|
// repo name does not have the registry prefix we
|
|
|
|
// should prepend.
|
|
|
|
if !strings.HasPrefix(repo, registry) {
|
|
|
|
repo = path.Join(registry, repo)
|
|
|
|
}
|
|
|
|
|
2017-08-27 19:57:23 +00:00
|
|
|
os.Setenv("PLUGIN_REPO", repo)
|
2017-08-27 19:27:28 +00:00
|
|
|
os.Setenv("PLUGIN_REGISTRY", registry)
|
|
|
|
os.Setenv("DOCKER_USERNAME", username)
|
|
|
|
os.Setenv("DOCKER_PASSWORD", password)
|
|
|
|
|
|
|
|
// invoke the base docker plugin binary
|
|
|
|
cmd := exec.Command("drone-docker")
|
|
|
|
cmd.Stdout = os.Stdout
|
|
|
|
cmd.Stderr = os.Stderr
|
|
|
|
err = cmd.Run()
|
|
|
|
if err != nil {
|
|
|
|
os.Exit(1)
|
|
|
|
}
|
|
|
|
}
|
2017-08-27 19:57:23 +00:00
|
|
|
|
|
|
|
func getenv(key ...string) (s string) {
|
|
|
|
for _, k := range key {
|
|
|
|
s = os.Getenv(k)
|
|
|
|
if s != "" {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|