forked from helmfile/vals
-
Notifications
You must be signed in to change notification settings - Fork 0
/
googlesheets.go
176 lines (147 loc) · 4.69 KB
/
googlesheets.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
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
package googlesheets
import (
"context"
"encoding/json"
"fmt"
"net/http"
"os"
"strings"
"github.com/kroonprins/vals/pkg/api"
"golang.org/x/oauth2"
"golang.org/x/oauth2/google"
"google.golang.org/api/option"
"google.golang.org/api/sheets/v4"
)
type provider struct {
credentialsFile string
}
func New(cfg api.StaticConfig) *provider {
p := &provider{}
p.credentialsFile = cfg.String("credentials_file")
return p
}
func (p *provider) GetString(key string) (string, error) {
splits := strings.Split(key, "/")
kvs, err := p.GetStringMap(splits[0])
if err != nil {
return "", err
}
return fmt.Sprintf("%v", kvs[splits[1]]), nil
}
func (p *provider) GetStringMap(key string) (map[string]interface{}, error) {
return FetchKVsWithCredentials(context.Background(), p.credentialsFile, key)
}
// getClient returns the authenticated HTTP client by retrieving a token, saving the token,
// then returning the generated client.
// The saved token file stores the user's access and refresh tokens to make it possible
// to skip repeating the auth flow.
func getClient(config *oauth2.Config, tokenFile string) (*http.Client, error) {
tok, err := tokenFromFile(tokenFile)
if err != nil {
tok, err = getTokenFromWeb(config)
if err != nil {
return nil, err
}
err = saveToken(tokenFile, tok)
if err != nil {
return nil, err
}
}
return config.Client(context.Background(), tok), nil
}
// Request a token from the web, then returns the retrieved token.
func getTokenFromWeb(config *oauth2.Config) (*oauth2.Token, error) {
authURL := config.AuthCodeURL("state-token", oauth2.AccessTypeOffline)
fmt.Printf("Go to the following link in your browser then type the "+
"authorization code: \n%v\n", authURL)
var authCode string
if _, err := fmt.Scan(&authCode); err != nil {
return nil, fmt.Errorf("unable to read authorization code: %v", err)
}
tok, err := config.Exchange(context.TODO(), authCode)
if err != nil {
return nil, fmt.Errorf("unable to retrieve token from web: %v", err)
}
return tok, nil
}
// Retrieves a token from a local file.
func tokenFromFile(file string) (*oauth2.Token, error) {
f, err := os.Open(file)
if err != nil {
return nil, err
}
defer f.Close()
tok := &oauth2.Token{}
err = json.NewDecoder(f).Decode(tok)
return tok, err
}
// saveToken saves a token to a file path.
func saveToken(path string, token *oauth2.Token) error {
fmt.Printf("Saving credential file to: %s\n", path)
f, err := os.OpenFile(path, os.O_RDWR|os.O_CREATE|os.O_TRUNC, 0600)
if err != nil {
return fmt.Errorf("unable to cache oauth token: %w", err)
}
defer f.Close()
json.NewEncoder(f).Encode(token)
return nil
}
func newServiceAccountClient(serviceAccountJSONKey []byte, scope ...string) (*http.Client, error) {
config, err := google.JWTConfigFromJSON(serviceAccountJSONKey, scope...)
if err != nil {
return nil, err
}
return config.Client(context.Background()), nil
}
func newClient(clientCredentials []byte, tokenFile string, scope ...string) (*http.Client, error) {
config, err := google.ConfigFromJSON(clientCredentials, scope...)
if err != nil {
return nil, fmt.Errorf("unable to parse client credentials file: %v", err)
}
return getClient(config, tokenFile)
}
func ClientFromConfig(file string) (*http.Client, error) {
b, err := os.ReadFile(file)
if err != nil {
return nil, fmt.Errorf("unable to read service account credentials file: %v", err)
}
type CredentialsOrKey struct {
Type string `json:"type"`
}
var credentialsOrKey CredentialsOrKey
if err := json.Unmarshal(b, &credentialsOrKey); err != nil {
return nil, fmt.Errorf("unable to parse %s: %w", file, err)
}
scope := []string{
"https://www.googleapis.com/auth/spreadsheets.readonly",
}
switch credentialsOrKey.Type {
case "service_account":
return newServiceAccountClient(b, scope...)
default:
return newClient(b, "token.json", scope...)
}
}
func FetchKVs(ctx context.Context, client *http.Client, spreadsheetId string) (map[string]interface{}, error) {
srv, err := sheets.NewService(ctx, option.WithHTTPClient(client))
if err != nil {
return nil, fmt.Errorf("unable to initialize Sheets client: %v", err)
}
readRange := "A1:B"
resp, err := srv.Spreadsheets.Values.Get(spreadsheetId, readRange).Do()
if err != nil {
return nil, fmt.Errorf("unable to get values from sheet: %v", err)
}
kvs := map[string]interface{}{}
for _, row := range resp.Values {
kvs[fmt.Sprintf("%v", row[0])] = row[1]
}
return kvs, nil
}
func FetchKVsWithCredentials(ctx context.Context, credsFile, spreadsheetId string) (map[string]interface{}, error) {
client, err := ClientFromConfig(credsFile)
if err != nil {
return nil, fmt.Errorf("unable to initialize client: %w", err)
}
return FetchKVs(ctx, client, spreadsheetId)
}