87 lines
1.9 KiB
Go
87 lines
1.9 KiB
Go
|
// Copyright 2019 Drone.IO Inc. All rights reserved.
|
||
|
// Use of this source code is governed by the Drone Non-Commercial License
|
||
|
// that can be found in the LICENSE file.
|
||
|
|
||
|
package auths
|
||
|
|
||
|
import (
|
||
|
"bytes"
|
||
|
"encoding/base64"
|
||
|
"encoding/json"
|
||
|
"io"
|
||
|
"os"
|
||
|
"strings"
|
||
|
|
||
|
"github.com/drone/drone/core"
|
||
|
)
|
||
|
|
||
|
// config represents the Docker client configuration,
|
||
|
// typically located at ~/.docker/config.json
|
||
|
type config struct {
|
||
|
Auths map[string]struct {
|
||
|
Auth string `json:"auth"`
|
||
|
} `json:"auths"`
|
||
|
}
|
||
|
|
||
|
// Parse parses the registry credential from the reader.
|
||
|
func Parse(r io.Reader) ([]*core.Registry, error) {
|
||
|
c := new(config)
|
||
|
err := json.NewDecoder(r).Decode(c)
|
||
|
if err != nil {
|
||
|
return nil, err
|
||
|
}
|
||
|
var auths []*core.Registry
|
||
|
for k, v := range c.Auths {
|
||
|
username, password := decode(v.Auth)
|
||
|
auths = append(auths, &core.Registry{
|
||
|
Address: k,
|
||
|
Username: username,
|
||
|
Password: password,
|
||
|
})
|
||
|
}
|
||
|
return auths, nil
|
||
|
}
|
||
|
|
||
|
// ParseFile parses the registry credential file.
|
||
|
func ParseFile(filepath string) ([]*core.Registry, error) {
|
||
|
f, err := os.Open(filepath)
|
||
|
if err != nil {
|
||
|
return nil, err
|
||
|
}
|
||
|
defer f.Close()
|
||
|
return Parse(f)
|
||
|
}
|
||
|
|
||
|
// ParseString parses the registry credential file.
|
||
|
func ParseString(s string) ([]*core.Registry, error) {
|
||
|
return Parse(strings.NewReader(s))
|
||
|
}
|
||
|
|
||
|
// ParseBytes parses the registry credential file.
|
||
|
func ParseBytes(b []byte) ([]*core.Registry, error) {
|
||
|
return Parse(bytes.NewReader(b))
|
||
|
}
|
||
|
|
||
|
// encode returns the encoded credentials.
|
||
|
func encode(username, password string) string {
|
||
|
return base64.StdEncoding.EncodeToString(
|
||
|
[]byte(username + ":" + password),
|
||
|
)
|
||
|
}
|
||
|
|
||
|
// decode returns the decoded credentials.
|
||
|
func decode(s string) (username, password string) {
|
||
|
d, err := base64.StdEncoding.DecodeString(s)
|
||
|
if err != nil {
|
||
|
return
|
||
|
}
|
||
|
parts := strings.SplitN(string(d), ":", 2)
|
||
|
if len(parts) > 0 {
|
||
|
username = parts[0]
|
||
|
}
|
||
|
if len(parts) > 1 {
|
||
|
password = parts[1]
|
||
|
}
|
||
|
return
|
||
|
}
|