-
Notifications
You must be signed in to change notification settings - Fork 0
/
gmail_auth.go
90 lines (83 loc) · 2.72 KB
/
gmail_auth.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 main
import (
"context"
"encoding/json"
"fmt"
"io/ioutil"
"log"
"net/http"
"os"
"path"
"golang.org/x/oauth2"
"golang.org/x/oauth2/google"
"google.golang.org/api/gmail/v1"
)
func buildGmailService(ctx context.Context) (*gmail.Service, error) {
configDir := MustGetenv(envVarConfigDir)
credentialsFilename := path.Join(configDir, "credentials.json")
b, err := ioutil.ReadFile(credentialsFilename)
if err != nil {
return nil, fmt.Errorf("unable to read client credentials file (credentials.json): %w", err)
}
config, err := google.ConfigFromJSON(b, gmail.GmailModifyScope, gmail.GmailSendScope) // If modifying these scopes, delete any previously saved token.json.
if err != nil {
return nil, fmt.Errorf("unable to parse client secret file to config: %w", err)
}
client := getClient(ctx, config)
srv, err := gmail.New(client)
if err != nil {
return nil, fmt.Errorf("unable to build Gmail client: %w", err)
}
return srv, nil
}
// Retrieve a token, saves the token, then returns the generated client.
func getClient(ctx context.Context, config *oauth2.Config) *http.Client {
// The file token.json stores the user's access and refresh tokens, and is
// created automatically when the authorization flow completes for the first time.
configDir := MustGetenv(envVarConfigDir)
tokFile := path.Join(configDir, "token.json")
tok, err := tokenFromFile(tokFile)
if err != nil {
tok = getTokenFromWeb(ctx, config)
saveToken(tokFile, tok)
}
return config.Client(ctx, tok)
}
// Request a token from the web, then returns the retrieved token.
func getTokenFromWeb(ctx context.Context, config *oauth2.Config) *oauth2.Token {
authURL := config.AuthCodeURL("state-token", oauth2.AccessTypeOffline)
fmt.Printf("Go to the following URL in your browser then type the "+
"authorization code: \n%v\n", authURL)
var authCode string
if _, err := fmt.Scan(&authCode); err != nil {
log.Fatalf("Unable to read authorization code: %v", err)
}
tok, err := config.Exchange(ctx, authCode)
if err != nil {
log.Fatalf("Unable to retrieve token from web: %v", err)
}
return tok
}
// 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
}
// Saves a token to a file path.
func saveToken(path string, token *oauth2.Token) {
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 {
log.Fatalf("Unable to cache oauth token: %v", err)
}
defer f.Close()
if err := json.NewEncoder(f).Encode(token); err != nil {
log.Fatalf("Unable to encode oauth token: %v", err)
}
}