|
|
|
@ -77,7 +77,7 @@ func (c *Cos) CompleteMultipartUpload(ctx context.Context, uploadID string, name
|
|
|
|
|
for i, part := range parts {
|
|
|
|
|
opts.Parts[i] = cos.Object{
|
|
|
|
|
PartNumber: part.PartNumber,
|
|
|
|
|
ETag: strings.ToLower(part.ETag),
|
|
|
|
|
ETag: strings.ReplaceAll(part.ETag, `"`, ``),
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
result, _, err := c.client.Object.CompleteMultipartUpload(ctx, name, uploadID, opts)
|
|
|
|
@ -109,27 +109,6 @@ func (c *Cos) PartSize(ctx context.Context, size int64) (int64, error) {
|
|
|
|
|
return partSize, nil
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (c *Cos) ClientUploadPart(ctx context.Context, partSize int64, expire time.Duration, upload *s3.InitiateMultipartUploadResult) (*s3.MultipartUploadRequest, error) {
|
|
|
|
|
uri := c.client.BaseURL.BucketURL.String() + "/" + cos.EncodeURIComponent(upload.Key)
|
|
|
|
|
req, err := http.NewRequestWithContext(ctx, http.MethodPut, uri, nil)
|
|
|
|
|
if err != nil {
|
|
|
|
|
return nil, err
|
|
|
|
|
}
|
|
|
|
|
cos.AddAuthorizationHeader(c.credential.SecretID, c.credential.SecretKey, c.credential.SessionToken, req, cos.NewAuthTime(expire))
|
|
|
|
|
return &s3.MultipartUploadRequest{
|
|
|
|
|
UploadID: upload.UploadID,
|
|
|
|
|
Bucket: upload.Bucket,
|
|
|
|
|
Key: upload.Key,
|
|
|
|
|
Method: req.Method,
|
|
|
|
|
URL: uri,
|
|
|
|
|
Query: url.Values{"uploadId": {upload.UploadID}},
|
|
|
|
|
Header: req.Header,
|
|
|
|
|
PartKey: "partNumber",
|
|
|
|
|
PartSize: partSize,
|
|
|
|
|
FirstPart: 1,
|
|
|
|
|
}, nil
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (c *Cos) AuthSign(ctx context.Context, uploadID string, name string, expire time.Duration, partNumbers []int) (*s3.AuthSignResult, error) {
|
|
|
|
|
result := s3.AuthSignResult{
|
|
|
|
|
URL: c.client.BaseURL.BucketURL.String() + "/" + cos.EncodeURIComponent(name),
|
|
|
|
@ -200,13 +179,14 @@ func (c *Cos) StatObject(ctx context.Context, name string) (*s3.ObjectInfo, erro
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (c *Cos) CopyObject(ctx context.Context, src string, dst string) (*s3.CopyObjectInfo, error) {
|
|
|
|
|
result, _, err := c.client.Object.Copy(ctx, dst, c.copyURL+src, &cos.ObjectCopyOptions{})
|
|
|
|
|
sourceURL := c.copyURL + src
|
|
|
|
|
result, _, err := c.client.Object.Copy(ctx, dst, sourceURL, nil)
|
|
|
|
|
if err != nil {
|
|
|
|
|
return nil, err
|
|
|
|
|
}
|
|
|
|
|
return &s3.CopyObjectInfo{
|
|
|
|
|
Key: dst,
|
|
|
|
|
ETag: result.ETag,
|
|
|
|
|
ETag: strings.ReplaceAll(result.ETag, `"`, ``),
|
|
|
|
|
}, nil
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
@ -252,21 +232,21 @@ func (c *Cos) ListUploadedParts(ctx context.Context, uploadID string, name strin
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (c *Cos) AccessURL(ctx context.Context, name string, expire time.Duration, opt *s3.AccessURLOption) (string, error) {
|
|
|
|
|
reqParams := make(url.Values)
|
|
|
|
|
if opt != nil {
|
|
|
|
|
if opt.ContentType != "" {
|
|
|
|
|
reqParams.Set("Content-Type", opt.ContentType)
|
|
|
|
|
}
|
|
|
|
|
if opt.ContentDisposition != "" {
|
|
|
|
|
reqParams.Set("Content-Disposition", opt.ContentDisposition)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
//reqParams := make(url.Values)
|
|
|
|
|
//if opt != nil {
|
|
|
|
|
// if opt.ContentType != "" {
|
|
|
|
|
// reqParams.Set("Content-Type", opt.ContentType)
|
|
|
|
|
// }
|
|
|
|
|
// if opt.ContentDisposition != "" {
|
|
|
|
|
// reqParams.Set("Content-Disposition", opt.ContentDisposition)
|
|
|
|
|
// }
|
|
|
|
|
//}
|
|
|
|
|
if expire <= 0 {
|
|
|
|
|
expire = time.Hour * 24 * 365 * 99 // 99 years
|
|
|
|
|
} else if expire < time.Second {
|
|
|
|
|
expire = time.Second
|
|
|
|
|
}
|
|
|
|
|
rawURL, err := c.client.Object.GetPresignedURL(ctx, http.MethodGet, name, c.credential.SecretID, c.credential.SecretKey, expire, reqParams)
|
|
|
|
|
rawURL, err := c.client.Object.GetPresignedURL(ctx, http.MethodGet, name, c.credential.SecretID, c.credential.SecretKey, expire, nil)
|
|
|
|
|
if err != nil {
|
|
|
|
|
return "", err
|
|
|
|
|
}
|
|
|
|
|