-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.go
More file actions
50 lines (42 loc) · 930 Bytes
/
settings.go
File metadata and controls
50 lines (42 loc) · 930 Bytes
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
package eclair
import (
"encoding/base64"
"fmt"
"net/http"
)
const (
DefaultBaseURL = "http://localhost:8080"
DefaultUser = "eclair"
DefaultPassword = "eclairpw"
)
type Settings struct {
BaseURL string
Credentials *Credentials
}
func NewDefaultSettings() *Settings {
return &Settings{
BaseURL: DefaultBaseURL,
Credentials: &Credentials{
User: DefaultUser,
Password: DefaultPassword,
},
}
}
func (s *Settings) AuthHeaders() http.Header {
return s.Credentials.HTTPAuthHeaders()
}
// Credentials
type Credentials struct {
User string
Password string
}
func (c *Credentials) BasicAuth() string {
auth := fmt.Sprintf("%s:%s", c.User, c.Password)
encodedAuth := base64.StdEncoding.EncodeToString([]byte(auth))
return encodedAuth
}
func (c *Credentials) HTTPAuthHeaders() http.Header {
headers := http.Header{}
headers.Set("Authorization", "Basic "+c.BasicAuth())
return headers
}