-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathgoogle_cloud_storage.go
43 lines (35 loc) · 951 Bytes
/
google_cloud_storage.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
package main
import (
"bytes"
"context"
"fmt"
"cloud.google.com/go/storage"
)
func cloudStorageClient(ctx context.Context) (*storage.Client, error) {
client, err := storage.NewClient(ctx)
if err != nil {
return nil, err
}
return client, nil
}
// CreateObjectParams contains the required params to write an object to a Cloud Storage bucket
type CreateObjectParams struct {
BucketName string
ObjectName string
Contents *bytes.Buffer
}
// saveToCloudStorage creates an object in Google Cloud Storage
func saveToCloudStorage(ctx context.Context, client *storage.Client, createObjectParams CreateObjectParams) error {
bucket := client.Bucket(createObjectParams.BucketName)
object := bucket.Object(createObjectParams.ObjectName)
writer := object.NewWriter(ctx)
_, err := fmt.Fprint(writer, createObjectParams.Contents.String())
if err != nil {
return err
}
err = writer.Close()
if err != nil {
return err
}
return nil
}