-
Notifications
You must be signed in to change notification settings - Fork 1.8k
/
basic.go
151 lines (129 loc) · 3.83 KB
/
basic.go
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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
/*
Copyright 2019 The Tekton 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 gitcreds
import (
"fmt"
"io/ioutil"
"net/url"
"path/filepath"
"strings"
corev1 "k8s.io/api/core/v1"
"github.com/tektoncd/pipeline/pkg/credentials"
)
// As the flag is read, this status is populated.
// basicGitConfig implements flag.Value
type basicGitConfig struct {
entries map[string]basicEntry
// The order we see things, for iterating over the above.
order []string
}
func (dc *basicGitConfig) String() string {
if dc == nil {
// According to flag.Value this can happen.
return ""
}
var urls []string
for _, k := range dc.order {
v := dc.entries[k]
urls = append(urls, fmt.Sprintf("%s=%s", v.secret, k))
}
return strings.Join(urls, ",")
}
// Set sets a secret for a given URL from a "secret=url" value.
func (dc *basicGitConfig) Set(value string) error {
parts := strings.Split(value, "=")
if len(parts) != 2 {
return fmt.Errorf("expect entries of the form secret=url, got: %v", value)
}
secret := parts[0]
url := parts[1]
if _, ok := dc.entries[url]; ok {
return fmt.Errorf("multiple entries for url: %v", url)
}
e, err := newBasicEntry(url, secret)
if err != nil {
return err
}
dc.entries[url] = *e
dc.order = append(dc.order, url)
return nil
}
// Write builds a .gitconfig file from dc.entries and writes it to disk
// in the directory provided. If dc.entries is empty then nothing is
// written.
func (dc *basicGitConfig) Write(directory string) error {
if len(dc.entries) == 0 {
return nil
}
gitConfigPath := filepath.Join(directory, ".gitconfig")
gitConfigs := []string{
"[credential]\n helper = store\n",
}
for _, k := range dc.order {
v := dc.entries[k]
gitConfigs = append(gitConfigs, v.configBlurb(k))
}
gitConfigContent := strings.Join(gitConfigs, "")
if err := ioutil.WriteFile(gitConfigPath, []byte(gitConfigContent), 0600); err != nil {
return err
}
gitCredentialsPath := filepath.Join(directory, ".git-credentials")
var gitCredentials []string
for _, k := range dc.order {
v := dc.entries[k]
gitCredentials = append(gitCredentials, v.authURL.String())
}
gitCredentials = append(gitCredentials, "") // Get a trailing newline
gitCredentialsContent := strings.Join(gitCredentials, "\n")
return ioutil.WriteFile(gitCredentialsPath, []byte(gitCredentialsContent), 0600)
}
type basicEntry struct {
secret string
username string
password string
// Has the form: https://user:pass@url.com
authURL *url.URL
}
func (be *basicEntry) configBlurb(u string) string {
return fmt.Sprintf("[credential %q]\n username = %s\n", u, be.escapedUsername())
}
func (be *basicEntry) escapedUsername() string {
if strings.Contains(be.username, "\\") {
return strings.ReplaceAll(be.username, "\\", "\\\\")
}
return be.username
}
func newBasicEntry(u, secret string) (*basicEntry, error) {
secretPath := credentials.VolumeName(secret)
ub, err := ioutil.ReadFile(filepath.Join(secretPath, corev1.BasicAuthUsernameKey))
if err != nil {
return nil, err
}
username := string(ub)
pb, err := ioutil.ReadFile(filepath.Join(secretPath, corev1.BasicAuthPasswordKey))
if err != nil {
return nil, err
}
password := string(pb)
pu, err := url.Parse(u)
if err != nil {
return nil, err
}
pu.User = url.UserPassword(username, password)
return &basicEntry{
secret: secret,
username: username,
password: password,
authURL: pu,
}, nil
}