forked from porjo/youtubeuploader
-
Notifications
You must be signed in to change notification settings - Fork 1
/
oauth.go
268 lines (230 loc) · 7.65 KB
/
oauth.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
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
/*
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 main
import (
"context"
"encoding/json"
"errors"
"flag"
"fmt"
"io/ioutil"
"net"
"net/http"
"os"
"path/filepath"
"strconv"
"time"
"github.com/pkg/browser"
"golang.org/x/oauth2"
)
const missingClientSecretsMessage = `
Please configure OAuth 2.0
To make this sample run, you need to populate the client_secrets.json file
found at:
%v
with information from the {{ Google Cloud Console }}
{{ https://cloud.google.com/console }}
For more information about the client_secrets.json file format, please visit:
https://developers.google.com/api-client-library/python/guide/aaa_client_secrets
`
var (
clientSecretsFile = flag.String("secrets", "client_secrets.json", "Client Secrets configuration")
cache = flag.String("cache", "request.token", "token cache file")
)
// CallbackStatus is returned from the oauth2 callback
type CallbackStatus struct {
code string
state string
}
// Cache specifies the methods that implement a Token cache.
type Cache interface {
Token() (*oauth2.Token, error)
PutToken(*oauth2.Token) error
}
// CacheFile implements Cache. Its value is the name of the file in which
// the Token is stored in JSON format.
type CacheFile string
// ClientConfig is a data structure definition for the client_secrets.json file.
// The code unmarshals the JSON configuration file into this structure.
type ClientConfig struct {
ClientID string `json:"client_id"`
ClientSecret string `json:"client_secret"`
RedirectURIs []string `json:"redirect_uris"`
AuthURI string `json:"auth_uri"`
TokenURI string `json:"token_uri"`
}
// Config is a root-level configuration object.
type Config struct {
Installed ClientConfig `json:"installed"`
Web ClientConfig `json:"web"`
}
// readConfig reads the configuration from clientSecretsFile.
// It returns an oauth configuration object for use with the Google API client.
func readConfig(scopes []string) (*oauth2.Config, error) {
// Read the secrets file
data, err := ioutil.ReadFile(*clientSecretsFile)
if err != nil {
pwd, _ := os.Getwd()
fullPath := filepath.Join(pwd, *clientSecretsFile)
return nil, fmt.Errorf(missingClientSecretsMessage, fullPath)
}
cfg1 := new(Config)
err = json.Unmarshal(data, &cfg1)
if err != nil {
return nil, err
}
var oCfg *oauth2.Config
var cfg2 ClientConfig
if cfg1.Web.ClientID != "" {
cfg2 = cfg1.Web
} else if cfg1.Installed.ClientID != "" {
cfg2 = cfg1.Installed
} else {
return nil, errors.New("Client secrets file format not recognised")
}
redirURL := ""
if len(cfg2.RedirectURIs) > 0 {
redirURL = cfg2.RedirectURIs[0]
} else {
fmt.Printf("Redirect URL could not be found. Using default: http://localhost:8080/oauth2callback\n")
redirURL = "http://localhost:8080/oauth2callback"
}
oCfg = &oauth2.Config{
ClientID: cfg2.ClientID,
ClientSecret: cfg2.ClientSecret,
Scopes: scopes,
Endpoint: oauth2.Endpoint{
AuthURL: cfg2.AuthURI,
TokenURL: cfg2.TokenURI,
},
RedirectURL: redirURL,
}
return oCfg, nil
}
// startWebServer starts a web server that listens on http://localhost:8080.
// The webserver waits for an oauth code in the three-legged auth flow.
func startWebServer() (callbackCh chan CallbackStatus, err error) {
listener, err := net.Listen("tcp", ":"+strconv.Itoa(*oAuthPort))
if err != nil {
return nil, err
}
callbackCh = make(chan CallbackStatus)
go http.Serve(listener, http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
code := r.FormValue("code")
state := r.FormValue("state")
if code != "" && state != "" {
cbs := CallbackStatus{}
cbs.state = r.FormValue("state")
cbs.code = r.FormValue("code")
callbackCh <- cbs // send code to OAuth flow
listener.Close()
w.Header().Set("Content-Type", "text/plain")
fmt.Fprintf(w, "Received code: %v\r\nYou can now safely close this browser window.", cbs.code)
}
}))
return callbackCh, nil
}
// buildOAuthHTTPClient takes the user through the three-legged OAuth flow.
// It opens a browser in the native OS or outputs a URL, then blocks until
// the redirect completes to the /oauth2callback URI.
// It returns an instance of an HTTP client that can be passed to the
// constructor of the YouTube client.
func buildOAuthHTTPClient(ctx context.Context, scopes []string) (*http.Client, error) {
config, err := readConfig(scopes)
if err != nil {
msg := fmt.Sprintf("Cannot read configuration file: %v", err)
return nil, errors.New(msg)
}
// Try to read the token from the cache file.
// If an error occurs, do the three-legged OAuth flow because
// the token is invalid or doesn't exist.
tokenCache := CacheFile(*cache)
token, err := tokenCache.Token()
if err != nil {
// You must always provide a non-zero string and validate that it matches
// the state query parameter on your redirect callback
randState := fmt.Sprintf("st%d", time.Now().UnixNano())
callbackCh := make(chan CallbackStatus)
if !*headlessAuth {
// Start web server.
// This is how this program receives the authorization code
// when the browser redirects.
callbackCh, err = startWebServer()
if err != nil {
return nil, err
}
}
url := config.AuthCodeURL(randState, oauth2.AccessTypeOffline, oauth2.ApprovalForce)
var cbs CallbackStatus
if *headlessAuth {
fmt.Printf("Visit the URL for the auth dialog: %s\n", url)
fmt.Printf("Enter authorisation code here: ")
// FIXME: how to check state?
cbs.state = randState
if _, err := fmt.Scanln(&cbs.code); err != nil {
return nil, err
}
} else {
err = browser.OpenURL(url)
if err != nil {
fmt.Printf("Error opening URL: %s\n\n", err)
fmt.Printf("Visit the URL below to get a code.",
" This program will pause until the site is visited.\n\n%s\n", url)
} else {
fmt.Println("Your browser has been opened to an authorization URL.",
" This program will resume once authorization has been provided.")
}
// Wait for the web server to get the code.
cbs = <-callbackCh
}
if cbs.state != randState {
return nil, fmt.Errorf("expecting state '%s', received state '%s'", randState, cbs.state)
}
token, err = config.Exchange(oauth2.NoContext, cbs.code)
if err != nil {
return nil, err
}
err = tokenCache.PutToken(token)
if err != nil {
return nil, err
}
}
return config.Client(ctx, token), nil
}
// Token retreives the token from the token cache
func (f CacheFile) Token() (*oauth2.Token, error) {
file, err := os.Open(string(f))
if err != nil {
return nil, fmt.Errorf("CacheFile.Token: %s", err.Error())
}
defer file.Close()
tok := &oauth2.Token{}
if err := json.NewDecoder(file).Decode(tok); err != nil {
return nil, fmt.Errorf("CacheFile.Token: %s", err.Error())
}
return tok, nil
}
// PutToken stores the token in the token cache
func (f CacheFile) PutToken(tok *oauth2.Token) error {
file, err := os.OpenFile(string(f), os.O_RDWR|os.O_CREATE|os.O_TRUNC, 0600)
if err != nil {
return fmt.Errorf("CacheFile.PutToken: %s", err.Error())
}
if err := json.NewEncoder(file).Encode(tok); err != nil {
file.Close()
return fmt.Errorf("CacheFile.PutToken: %s", err.Error())
}
if err := file.Close(); err != nil {
return fmt.Errorf("CacheFile.PutToken: %s", err.Error())
}
return nil
}