This repository has been archived by the owner on Jan 21, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
drive.go
110 lines (94 loc) · 2.57 KB
/
drive.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
package main
import (
"bytes"
"context"
"encoding/json"
"fmt"
"io/ioutil"
"log"
"net/http"
"os"
"github.com/raifpy/Go/errHandler"
"github.com/raifpy/Go/saes"
"github.com/tcnksm/go-input"
"golang.org/x/oauth2"
"golang.org/x/oauth2/google"
"google.golang.org/api/drive/v3"
)
// Retrieve a token, saves the token, then returns the generated client.
func getClient(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.
tokFile := "token.json"
tok, err := tokenFromFile(tokFile)
if err != nil {
tok = getTokenFromWeb(config)
saveToken(tokFile, tok)
}
return config.Client(context.Background(), tok)
}
// Request a token from the web, then returns the retrieved token.
func getTokenFromWeb(config *oauth2.Config) *oauth2.Token {
authURL := config.AuthCodeURL("state-token", oauth2.AccessTypeOffline)
authCode, err := inputUI.Ask("Go to the following link in your browser then type the "+
"authorization code: \n"+authURL, &input.Options{Loop: true, Required: true})
errHandler.HandlerExit(err)
tok, err := config.Exchange(context.TODO(), 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) {
fbyte, err := ioutil.ReadFile(file)
if err != nil {
return nil, err
}
tok := &oauth2.Token{}
var veri []byte
if runOnBackgroundHash != nil {
veri = runOnBackgroundHash
} else {
veri = getHashInput()
}
oye, err := saes.Decrypt(fbyte, veri)
if err != nil {
log.Fatalln(err)
}
err = json.NewDecoder(bytes.NewReader(oye)).Decode(tok)
return tok, err
}
func saveToken(path string, token *oauth2.Token) {
ulan:
data, err := json.Marshal(token)
errHandler.HandlerExit(err)
ehe, err := saes.Encrypt(data, getHashInput())
data = nil
if errHandler.HandlerBool(err) {
goto ulan
}
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()
f.Write(ehe)
ehe = nil
}
func getDrive(credentialsPath string) (*drive.Service, error) {
credentialsByte, err := ioutil.ReadFile(credentialsPath)
if err != nil {
return nil, err
}
conf, err := google.ConfigFromJSON(credentialsByte, drive.DriveReadonlyScope)
credentialsByte = nil
if err != nil {
return nil, err
}
cli := getClient(conf)
//fmt.Println()
return drive.New(cli)
}