forked from openshift/origin
-
Notifications
You must be signed in to change notification settings - Fork 1
/
credentials.go
90 lines (72 loc) · 2.02 KB
/
credentials.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
package registryclient
import (
"net/url"
"sync"
"github.com/docker/distribution/registry/client/auth"
)
var (
NoCredentials auth.CredentialStore = &noopCredentialStore{}
)
type RefreshTokenStore interface {
RefreshToken(url *url.URL, service string) string
SetRefreshToken(url *url.URL, service string, token string)
}
func NewRefreshTokenStore() RefreshTokenStore {
return &refreshTokenStore{}
}
type refreshTokenKey struct {
url string
service string
}
type refreshTokenStore struct {
lock sync.Mutex
store map[refreshTokenKey]string
}
func (s *refreshTokenStore) RefreshToken(url *url.URL, service string) string {
s.lock.Lock()
defer s.lock.Unlock()
return s.store[refreshTokenKey{url: url.String(), service: service}]
}
func (s *refreshTokenStore) SetRefreshToken(url *url.URL, service string, token string) {
s.lock.Lock()
defer s.lock.Unlock()
if s.store == nil {
s.store = make(map[refreshTokenKey]string)
}
s.store[refreshTokenKey{url: url.String(), service: service}] = token
}
type noopCredentialStore struct{}
func (s *noopCredentialStore) Basic(url *url.URL) (string, string) {
return "", ""
}
func (s *noopCredentialStore) RefreshToken(url *url.URL, service string) string {
return ""
}
func (s *noopCredentialStore) SetRefreshToken(url *url.URL, service string, token string) {
}
func NewBasicCredentials() *BasicCredentials {
return &BasicCredentials{refreshTokenStore: &refreshTokenStore{}}
}
type basicForURL struct {
url url.URL
username, password string
}
type BasicCredentials struct {
creds []basicForURL
*refreshTokenStore
}
func (c *BasicCredentials) Add(url *url.URL, username, password string) {
c.creds = append(c.creds, basicForURL{*url, username, password})
}
func (c *BasicCredentials) Basic(url *url.URL) (string, string) {
for _, cred := range c.creds {
if len(cred.url.Host) != 0 && cred.url.Host != url.Host {
continue
}
if len(cred.url.Path) != 0 && cred.url.Path != url.Path {
continue
}
return cred.username, cred.password
}
return "", ""
}