forked from chartmuseum/storage
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tencent.go
183 lines (146 loc) · 4.35 KB
/
tencent.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
/*
Copyright The Helm Authors.
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 storage
import (
"bytes"
"context"
"fmt"
"io/ioutil"
"net/http"
"net/url"
"os"
pathutil "path"
"time"
"github.com/tencentyun/cos-go-sdk-v5"
)
// TencentCloudCOSBackend is a storage backend for Tencent Cloud COS
type TencentCloudCOSBackend struct {
Bucket *cos.BucketService
Object *cos.ObjectService
Client *cos.Client
Prefix string
}
const (
HTTPHeaderLastModified = "Last-Modified"
)
// NewTencentCloudCOSBackend creates a new instance of TencentCloudCOSBackend
func NewTencentCloudCOSBackend(bucket string, prefix string, endpoint string) *TencentCloudCOSBackend {
secretID := os.Getenv("TENCENT_CLOUD_COS_SECRET_ID")
secretKey := os.Getenv("TENCENT_CLOUD_COS_SECRET_KEY")
if len(secretID) == 0 {
panic("TENCENT_CLOUD_COS_SECRET_ID environment variable is not set")
}
if len(secretKey) == 0 {
panic("TENCENT_CLOUD_COS_SECRET_KEY environment variable is not set")
}
if len(endpoint) == 0 {
// Set default endpoint
endpoint = "cos.ap-guangzhou.myqcloud.com"
}
bucketURL, err := url.Parse("http://" + bucket + "." + endpoint)
if err != nil {
panic("Access domain is error: http://" + bucket + "." + endpoint)
}
baseURL := &cos.BaseURL{BucketURL: bucketURL}
client := cos.NewClient(baseURL, &http.Client{
Transport: &cos.AuthorizationTransport{
SecretID: secretID,
SecretKey: secretKey,
},
})
tencentCloudCOSBackend := &TencentCloudCOSBackend{
Bucket: client.Bucket,
Object: client.Object,
Client: client,
Prefix: cleanPrefix(prefix),
}
return tencentCloudCOSBackend
}
// ListObjects lists all objects in Tencent Cloud COS bucket, at prefix
func (t TencentCloudCOSBackend) ListObjects(prefix string) ([]Object, error) {
var objects []Object
prefix = pathutil.Join(t.Prefix, prefix)
cosPrefix := prefix
cosMarker := ""
if cosPrefix != "" {
cosPrefix = fmt.Sprintf("%s/", cosPrefix)
}
for {
opt := &cos.BucketGetOptions{
Prefix: cosPrefix,
MaxKeys: 100,
Marker: cosMarker,
}
bucketGetResult, _, err := t.Bucket.Get(context.Background(), opt)
if err != nil {
return objects, err
}
for _, obj := range bucketGetResult.Contents {
path := removePrefixFromObjectPath(prefix, obj.Key)
if objectPathIsInvalid(path) {
continue
}
lastModified, _ := time.Parse(time.RFC3339, obj.LastModified)
object := Object{
Path: path,
Content: []byte{},
LastModified: lastModified,
}
objects = append(objects, object)
}
if !bucketGetResult.IsTruncated {
break
}
cosPrefix = bucketGetResult.Prefix
cosMarker = bucketGetResult.NextMarker
}
return objects, nil
}
// GetObject retrieves an object from Tencent Cloud COS bucket, at prefix
func (t TencentCloudCOSBackend) GetObject(path string) (Object, error) {
var object Object
object.Path = path
var content []byte
key := pathutil.Join(t.Prefix, path)
opt := &cos.ObjectGetOptions{}
resp, err := t.Object.Get(context.Background(), key, opt)
if err != nil {
return object, err
}
content, err = ioutil.ReadAll(resp.Body)
resp.Body.Close()
if err != nil {
return object, err
}
object.Content = content
lastModified, err := http.ParseTime(resp.Header.Get(HTTPHeaderLastModified))
if err != nil {
return object, err
}
object.LastModified = lastModified
return object, nil
}
// PutObject uploads an object to Tencent Cloud COS bucket, at prefix
func (t TencentCloudCOSBackend) PutObject(path string, content []byte) error {
key := pathutil.Join(t.Prefix, path)
var err error
opt := &cos.ObjectPutOptions{}
_, err = t.Object.Put(context.Background(), key, bytes.NewReader(content), opt)
return err
}
// DeleteObject removes an object from Tencent Cloud COS bucket, at prefix
func (t TencentCloudCOSBackend) DeleteObject(path string) error {
key := pathutil.Join(t.Prefix, path)
_, err := t.Object.Delete(context.Background(), key)
return err
}