harness-drone/drone/registry/registry_add.go

75 lines
1.4 KiB
Go
Raw Normal View History

2017-04-29 17:03:45 +00:00
package registry
2017-04-06 12:51:01 +00:00
import (
2017-04-20 21:00:55 +00:00
"io/ioutil"
"strings"
2017-04-29 17:03:45 +00:00
"github.com/drone/drone/drone/internal"
2017-04-06 12:51:01 +00:00
"github.com/drone/drone/model"
2017-04-29 17:03:45 +00:00
2017-04-06 12:51:01 +00:00
"github.com/urfave/cli"
)
var registryCreateCmd = cli.Command{
Name: "add",
Usage: "adds a registry",
Action: registryCreate,
Flags: []cli.Flag{
cli.StringFlag{
Name: "repository",
Usage: "repository name (e.g. octocat/hello-world)",
},
cli.StringFlag{
Name: "hostname",
Usage: "registry hostname",
2017-04-06 16:04:25 +00:00
Value: "docker.io",
2017-04-06 12:51:01 +00:00
},
cli.StringFlag{
Name: "username",
Usage: "registry username",
},
cli.StringFlag{
Name: "password",
Usage: "registry password",
},
},
}
func registryCreate(c *cli.Context) error {
var (
hostname = c.String("hostname")
username = c.String("username")
password = c.String("password")
reponame = c.String("repository")
)
if reponame == "" {
reponame = c.Args().First()
}
2017-04-29 17:03:45 +00:00
owner, name, err := internal.ParseRepo(reponame)
2017-04-06 12:51:01 +00:00
if err != nil {
return err
}
2017-04-29 17:03:45 +00:00
client, err := internal.NewClient(c)
2017-04-06 12:51:01 +00:00
if err != nil {
return err
}
registry := &model.Registry{
Address: hostname,
Username: username,
Password: password,
}
2017-04-20 21:00:55 +00:00
if strings.HasPrefix(registry.Password, "@") {
path := strings.TrimPrefix(registry.Password, "@")
2017-04-29 17:03:45 +00:00
out, ferr := ioutil.ReadFile(path)
if ferr != nil {
return ferr
2017-04-20 21:00:55 +00:00
}
registry.Password = string(out)
}
2017-04-06 12:51:01 +00:00
_, err = client.RegistryCreate(owner, name, registry)
if err != nil {
return err
}
return nil
}