-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathfile-cloud-drive.go
219 lines (182 loc) · 6.1 KB
/
file-cloud-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
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
package storage
import (
"context"
"encoding/json"
"fmt"
"io"
"io/ioutil"
"log"
"net/http"
"os"
"sync"
"github.com/gammazero/workerpool"
multierror "github.com/hashicorp/go-multierror"
"golang.org/x/oauth2"
"golang.org/x/oauth2/google"
"google.golang.org/api/drive/v3"
"google.golang.org/api/googleapi"
"github.com/golang-common-packages/hash"
)
// DriveServices manage all drive action
type DriveServices struct {
driveService *drive.Service
config *GoogleDrive
}
var (
// driveClientSessionMapping singleton pattern
driveClientSessionMapping = make(map[string]*DriveServices)
)
// newDrive init new instance
func newDrive(config *GoogleDrive) IFILE {
hasher := &hash.Client{}
configAsJSON, err := json.Marshal(config)
if err != nil {
log.Fatalln("Unable to marshal Drive configuration: ", err)
}
configAsString := hasher.SHA1(string(configAsJSON))
currentDriveSession := driveClientSessionMapping[configAsString]
if currentDriveSession == nil {
currentDriveSession = &DriveServices{nil, nil}
if config.ByHTTPClient {
b, err := ioutil.ReadFile(config.Credential)
if err != nil {
log.Fatalln("Unable to read client secret file: ", err)
}
// If modifying these scopes, delete your previously saved token.json.
oauth2Config, err := google.ConfigFromJSON(b, drive.DriveMetadataReadonlyScope)
if err != nil {
log.Fatalln("Unable to parse client secret file to config: ", err)
}
client := getClient(oauth2Config, config.Token)
srv, err := drive.New(client)
if err != nil {
log.Fatalln("Unable to retrieve Drive client: ", err)
}
currentDriveSession.driveService = srv
currentDriveSession.config = config
driveClientSessionMapping[configAsString] = currentDriveSession
} else {
os.Setenv("GOOGLE_APPLICATION_CREDENTIALS", config.Credential)
srv, err := drive.NewService(ctx)
if err != nil {
log.Fatalln("Unable to retrieve Drive client: ", err)
}
currentDriveSession.driveService = srv
currentDriveSession.config = config
driveClientSessionMapping[configAsString] = currentDriveSession
}
log.Println("Connected to Google Drive")
}
return currentDriveSession
}
// Retrieve a token, saves the token, then returns the generated client.
func getClient(config *oauth2.Config, tokFile string) *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.
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)
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 {
log.Fatalln("Unable to read authorization code: ", err)
}
token, err := config.Exchange(context.TODO(), authCode)
if err != nil {
log.Fatalln("Unable to retrieve token from web: ", err)
}
return token
}
// 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.Fatalln("Unable to cache oauth token: ", err)
}
defer f.Close()
json.NewEncoder(f).Encode(token)
}
// List all files based on pageSize
func (dr *DriveServices) List(pageSize int64, pageToken ...string) (interface{}, error) {
var fields googleapi.Field = "nextPageToken, files(id, name, fileExtension, mimeType, parents)"
if len(pageToken) == 0 {
return dr.driveService.Files.List().PageSize(pageSize).Fields(fields).Do()
}
return dr.driveService.Files.List().PageToken(pageToken[0]).PageSize(pageSize).Fields(fields).Do()
}
// GetMetaData from file based on fileID
func (dr *DriveServices) GetMetaData(fileID string) (interface{}, error) {
return dr.driveService.Files.Get(fileID).Do()
}
// CreateFolder on drive
func (dr *DriveServices) CreateFolder(name string, parents ...string) (interface{}, error) {
f := &drive.File{
Name: name, //should specify a file extension in the name, like Name: "cat.jpg"
MimeType: "application/vnd.google-apps.folder",
Parents: parents,
}
return dr.driveService.Files.Create(f).Do()
}
// Upload file to drive
func (dr *DriveServices) Upload(name string, fileContent io.Reader, parents ...string) (interface{}, error) {
f := &drive.File{
Name: name, //should specify a file extension in the name, like Name: "cat.jpg"
Parents: parents,
}
return dr.driveService.Files.Create(f).Media(fileContent).Do()
}
// Download file based on fileID
func (dr *DriveServices) Download(fileID string) (interface{}, error) {
return dr.driveService.Files.Get(fileID).Download()
}
// Move file to new location based on fileID, oldParentID, newParentID
func (dr *DriveServices) Move(fileID, oldParentID, newParentID string) (interface{}, error) {
if _, err := dr.driveService.Files.Update(fileID, nil).RemoveParents(oldParentID).Do(); err != nil {
log.Println("Unable to move file: ", err)
return nil, err
}
return dr.driveService.Files.Update(fileID, nil).AddParents(newParentID).Do()
}
// Delete file/folder based on IDs
func (dr *DriveServices) Delete(fileIDs []string) error {
var mu sync.Mutex
var errs *multierror.Error
dwp := workerpool.New(dr.config.PoolSize)
for _, fileID := range fileIDs {
fileID := fileID
dwp.Submit(func() {
if err := dr.driveService.Files.Delete(fileID).Do(); err != nil {
mu.Lock()
errs = multierror.Append(errs, err)
mu.Unlock()
}
})
}
dwp.StopWait()
// Return an error if any failed
if err := errs.ErrorOrNil(); err != nil {
return err
}
return nil
}