fix: s3 browser preview (#580)

This commit is contained in:
withchao 2023-07-17 17:23:39 +08:00 committed by GitHub
parent cb59f05734
commit b95420ef8e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
6 changed files with 39 additions and 35 deletions

View File

@ -74,7 +74,7 @@ api:
object: object:
enable: "minio" #使用minio enable: "minio" #使用minio
apiURL: "http://127.0.0.1:10002/object/" apiURL: "http://127.0.0.1:10002/object/" #地址需要app能访问到
minio: minio:
bucket: "openim" #不建议修改 bucket: "openim" #不建议修改
endpoint: "http://127.0.0.1:10005" #minio对外服务的ip和端口app要能访问此ip和端口 endpoint: "http://127.0.0.1:10005" #minio对外服务的ip和端口app要能访问此ip和端口

View File

@ -77,9 +77,7 @@ func (s *s3Database) AccessURL(ctx context.Context, name string, expire time.Dur
} }
opt := &s3.AccessURLOption{ opt := &s3.AccessURLOption{
ContentType: obj.ContentType, ContentType: obj.ContentType,
} Filename: filepath.Base(obj.Name),
if filename := filepath.Base(obj.Name); filename != "" {
opt.ContentDisposition = `attachment; filename=` + filename
} }
expireTime := time.Now().Add(expire) expireTime := time.Now().Add(expire)
rawURL, err := s.s3.AccessURL(ctx, obj.Key, expire, opt) rawURL, err := s.s3.AccessURL(ctx, obj.Key, expire, opt)

View File

@ -248,21 +248,27 @@ 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) { func (c *Cos) AccessURL(ctx context.Context, name string, expire time.Duration, opt *s3.AccessURLOption) (string, error) {
//reqParams := make(url.Values) var option *cos.PresignedURLOptions
//if opt != nil { if opt != nil {
// if opt.ContentType != "" { query := make(url.Values)
// reqParams.Set("Content-Type", opt.ContentType) if opt.ContentType != "" {
// } query.Set("response-content-type", opt.ContentType)
// if opt.ContentDisposition != "" { }
// reqParams.Set("Content-Disposition", opt.ContentDisposition) if opt.Filename != "" {
// } query.Set("response-content-disposition", `attachment; filename="`+opt.Filename+`"`)
//} }
if len(query) > 0 {
option = &cos.PresignedURLOptions{
Query: &query,
}
}
}
if expire <= 0 { if expire <= 0 {
expire = time.Hour * 24 * 365 * 99 // 99 years expire = time.Hour * 24 * 365 * 99 // 99 years
} else if expire < time.Second { } else if expire < time.Second {
expire = time.Second expire = time.Second
} }
rawURL, err := c.client.Object.GetPresignedURL(ctx, http.MethodGet, name, c.credential.SecretID, c.credential.SecretKey, expire, nil) rawURL, err := c.client.Object.GetPresignedURL(ctx, http.MethodGet, name, c.credential.SecretID, c.credential.SecretKey, expire, option)
if err != nil { if err != nil {
return "", err return "", err
} }

View File

@ -253,21 +253,21 @@ func (m *Minio) ListUploadedParts(ctx context.Context, uploadID string, name str
} }
func (m *Minio) AccessURL(ctx context.Context, name string, expire time.Duration, opt *s3.AccessURLOption) (string, error) { func (m *Minio) AccessURL(ctx context.Context, name string, expire time.Duration, opt *s3.AccessURLOption) (string, error) {
//reqParams := make(url.Values) reqParams := make(url.Values)
//if opt != nil { if opt != nil {
// if opt.ContentType != "" { if opt.ContentType != "" {
// reqParams.Set("Content-Type", opt.ContentType) reqParams.Set("response-content-type", opt.ContentType)
// } }
// if opt.ContentDisposition != "" { if opt.Filename != "" {
// reqParams.Set("Content-Disposition", opt.ContentDisposition) reqParams.Set("response-content-disposition", `attachment; filename="`+opt.Filename+`"`)
// } }
//} }
if expire <= 0 { if expire <= 0 {
expire = time.Hour * 24 * 365 * 99 // 99 years expire = time.Hour * 24 * 365 * 99 // 99 years
} else if expire < time.Second { } else if expire < time.Second {
expire = time.Second expire = time.Second
} }
u, err := m.core.Client.PresignedGetObject(ctx, m.bucket, name, expire, nil) u, err := m.core.Client.PresignedGetObject(ctx, m.bucket, name, expire, reqParams)
if err != nil { if err != nil {
return "", err return "", err
} }

View File

@ -261,15 +261,15 @@ func (o *OSS) ListUploadedParts(ctx context.Context, uploadID string, name strin
} }
func (o *OSS) AccessURL(ctx context.Context, name string, expire time.Duration, opt *s3.AccessURLOption) (string, error) { func (o *OSS) AccessURL(ctx context.Context, name string, expire time.Duration, opt *s3.AccessURLOption) (string, error) {
//var opts []oss.Option var opts []oss.Option
//if opt != nil { if opt != nil {
// if opt.ContentType != "" { if opt.ContentType != "" {
// opts = append(opts, oss.ContentType(opt.ContentType)) opts = append(opts, oss.ResponseContentType(opt.ContentType))
// } }
// if opt.ContentDisposition != "" { if opt.Filename != "" {
// opts = append(opts, oss.ContentDisposition(opt.ContentDisposition)) opts = append(opts, oss.ResponseContentDisposition(`attachment; filename="`+opt.Filename+`"`))
// } }
//} }
if expire <= 0 { if expire <= 0 {
expire = time.Hour * 24 * 365 * 99 // 99 years expire = time.Hour * 24 * 365 * 99 // 99 years
} else if expire < time.Second { } else if expire < time.Second {

View File

@ -117,8 +117,8 @@ type ListUploadedPartsResult struct {
} }
type AccessURLOption struct { type AccessURLOption struct {
ContentType string `json:"contentType"` ContentType string `json:"contentType"`
ContentDisposition string `json:"contentDisposition"` Filename string `json:"filename"`
} }
type Interface interface { type Interface interface {