2020-08-18 09:53:45 +05:30
|
|
|
// Copyright 2020 The Gitea Authors. All rights reserved.
|
2022-11-27 23:50:29 +05:30
|
|
|
// SPDX-License-Identifier: MIT
|
2020-08-18 09:53:45 +05:30
|
|
|
|
|
|
|
package storage
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
2023-02-27 21:56:13 +05:30
|
|
|
"crypto/tls"
|
2023-03-28 20:40:24 +05:30
|
|
|
"fmt"
|
2020-08-18 09:53:45 +05:30
|
|
|
"io"
|
2023-02-27 21:56:13 +05:30
|
|
|
"net/http"
|
2020-08-18 09:53:45 +05:30
|
|
|
"net/url"
|
2020-09-08 21:15:10 +05:30
|
|
|
"os"
|
2020-08-18 09:53:45 +05:30
|
|
|
"path"
|
|
|
|
"strings"
|
|
|
|
"time"
|
|
|
|
|
2020-10-16 09:21:06 +05:30
|
|
|
"code.gitea.io/gitea/modules/log"
|
2023-03-08 17:47:39 +05:30
|
|
|
"code.gitea.io/gitea/modules/util"
|
2020-10-16 09:21:06 +05:30
|
|
|
|
2020-08-18 09:53:45 +05:30
|
|
|
"github.com/minio/minio-go/v7"
|
|
|
|
"github.com/minio/minio-go/v7/pkg/credentials"
|
|
|
|
)
|
|
|
|
|
|
|
|
var (
|
2020-10-13 09:28:34 +05:30
|
|
|
_ ObjectStorage = &MinioStorage{}
|
|
|
|
|
|
|
|
quoteEscaper = strings.NewReplacer("\\", "\\\\", `"`, "\\\"")
|
2020-08-18 09:53:45 +05:30
|
|
|
)
|
|
|
|
|
2020-09-29 14:35:13 +05:30
|
|
|
type minioObject struct {
|
|
|
|
*minio.Object
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *minioObject) Stat() (os.FileInfo, error) {
|
|
|
|
oi, err := m.Object.Stat()
|
|
|
|
if err != nil {
|
2020-10-18 06:59:06 +05:30
|
|
|
return nil, convertMinioErr(err)
|
2020-09-29 14:35:13 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
return &minioFileInfo{oi}, nil
|
|
|
|
}
|
|
|
|
|
2020-10-13 09:28:34 +05:30
|
|
|
// MinioStorageType is the type descriptor for minio storage
|
|
|
|
const MinioStorageType Type = "minio"
|
|
|
|
|
|
|
|
// MinioStorageConfig represents the configuration for a minio storage
|
|
|
|
type MinioStorageConfig struct {
|
2023-02-27 21:56:13 +05:30
|
|
|
Endpoint string `ini:"MINIO_ENDPOINT"`
|
|
|
|
AccessKeyID string `ini:"MINIO_ACCESS_KEY_ID"`
|
|
|
|
SecretAccessKey string `ini:"MINIO_SECRET_ACCESS_KEY"`
|
|
|
|
Bucket string `ini:"MINIO_BUCKET"`
|
|
|
|
Location string `ini:"MINIO_LOCATION"`
|
|
|
|
BasePath string `ini:"MINIO_BASE_PATH"`
|
|
|
|
UseSSL bool `ini:"MINIO_USE_SSL"`
|
|
|
|
InsecureSkipVerify bool `ini:"MINIO_INSECURE_SKIP_VERIFY"`
|
2023-03-28 20:40:24 +05:30
|
|
|
ChecksumAlgorithm string `ini:"MINIO_CHECKSUM_ALGORITHM"`
|
2020-10-13 09:28:34 +05:30
|
|
|
}
|
|
|
|
|
2020-08-18 09:53:45 +05:30
|
|
|
// MinioStorage returns a minio bucket storage
|
|
|
|
type MinioStorage struct {
|
2023-03-28 20:40:24 +05:30
|
|
|
cfg *MinioStorageConfig
|
2020-08-18 09:53:45 +05:30
|
|
|
ctx context.Context
|
|
|
|
client *minio.Client
|
|
|
|
bucket string
|
|
|
|
basePath string
|
|
|
|
}
|
|
|
|
|
2020-10-16 09:21:06 +05:30
|
|
|
func convertMinioErr(err error) error {
|
|
|
|
if err == nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
errResp, ok := err.(minio.ErrorResponse)
|
|
|
|
if !ok {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
// Convert two responses to standard analogues
|
|
|
|
switch errResp.Code {
|
|
|
|
case "NoSuchKey":
|
|
|
|
return os.ErrNotExist
|
|
|
|
case "AccessDenied":
|
|
|
|
return os.ErrPermission
|
|
|
|
}
|
|
|
|
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2020-08-18 09:53:45 +05:30
|
|
|
// NewMinioStorage returns a minio storage
|
2020-10-13 09:28:34 +05:30
|
|
|
func NewMinioStorage(ctx context.Context, cfg interface{}) (ObjectStorage, error) {
|
|
|
|
configInterface, err := toConfig(MinioStorageConfig{}, cfg)
|
|
|
|
if err != nil {
|
2020-10-16 09:21:06 +05:30
|
|
|
return nil, convertMinioErr(err)
|
2020-10-13 09:28:34 +05:30
|
|
|
}
|
|
|
|
config := configInterface.(MinioStorageConfig)
|
|
|
|
|
2023-03-28 20:40:24 +05:30
|
|
|
if config.ChecksumAlgorithm != "" && config.ChecksumAlgorithm != "default" && config.ChecksumAlgorithm != "md5" {
|
|
|
|
return nil, fmt.Errorf("invalid minio checksum algorithm: %s", config.ChecksumAlgorithm)
|
|
|
|
}
|
|
|
|
|
2020-10-16 09:21:06 +05:30
|
|
|
log.Info("Creating Minio storage at %s:%s with base path %s", config.Endpoint, config.Bucket, config.BasePath)
|
|
|
|
|
2020-10-13 09:28:34 +05:30
|
|
|
minioClient, err := minio.New(config.Endpoint, &minio.Options{
|
2023-02-27 21:56:13 +05:30
|
|
|
Creds: credentials.NewStaticV4(config.AccessKeyID, config.SecretAccessKey, ""),
|
|
|
|
Secure: config.UseSSL,
|
|
|
|
Transport: &http.Transport{TLSClientConfig: &tls.Config{InsecureSkipVerify: config.InsecureSkipVerify}},
|
2020-08-18 09:53:45 +05:30
|
|
|
})
|
|
|
|
if err != nil {
|
2020-10-16 09:21:06 +05:30
|
|
|
return nil, convertMinioErr(err)
|
2020-08-18 09:53:45 +05:30
|
|
|
}
|
|
|
|
|
2020-10-13 09:28:34 +05:30
|
|
|
if err := minioClient.MakeBucket(ctx, config.Bucket, minio.MakeBucketOptions{
|
|
|
|
Region: config.Location,
|
2020-08-18 09:53:45 +05:30
|
|
|
}); err != nil {
|
|
|
|
// Check to see if we already own this bucket (which happens if you run this twice)
|
2020-10-13 09:28:34 +05:30
|
|
|
exists, errBucketExists := minioClient.BucketExists(ctx, config.Bucket)
|
2020-08-18 09:53:45 +05:30
|
|
|
if !exists || errBucketExists != nil {
|
2020-10-16 09:21:06 +05:30
|
|
|
return nil, convertMinioErr(err)
|
2020-08-18 09:53:45 +05:30
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return &MinioStorage{
|
2023-03-28 20:40:24 +05:30
|
|
|
cfg: &config,
|
2020-08-18 09:53:45 +05:30
|
|
|
ctx: ctx,
|
|
|
|
client: minioClient,
|
2020-10-13 09:28:34 +05:30
|
|
|
bucket: config.Bucket,
|
|
|
|
basePath: config.BasePath,
|
2020-08-18 09:53:45 +05:30
|
|
|
}, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *MinioStorage) buildMinioPath(p string) string {
|
2023-03-22 01:32:49 +05:30
|
|
|
return util.PathJoinRelX(m.basePath, p)
|
2020-08-18 09:53:45 +05:30
|
|
|
}
|
|
|
|
|
2023-03-28 20:40:24 +05:30
|
|
|
// Open opens a file
|
2020-09-08 21:15:10 +05:30
|
|
|
func (m *MinioStorage) Open(path string) (Object, error) {
|
2022-01-20 23:16:10 +05:30
|
|
|
opts := minio.GetObjectOptions{}
|
2020-08-18 09:53:45 +05:30
|
|
|
object, err := m.client.GetObject(m.ctx, m.bucket, m.buildMinioPath(path), opts)
|
|
|
|
if err != nil {
|
2020-10-16 09:21:06 +05:30
|
|
|
return nil, convertMinioErr(err)
|
2020-08-18 09:53:45 +05:30
|
|
|
}
|
2020-09-29 14:35:13 +05:30
|
|
|
return &minioObject{object}, nil
|
2020-08-18 09:53:45 +05:30
|
|
|
}
|
|
|
|
|
2023-03-28 20:40:24 +05:30
|
|
|
// Save saves a file to minio
|
2021-04-03 21:49:59 +05:30
|
|
|
func (m *MinioStorage) Save(path string, r io.Reader, size int64) (int64, error) {
|
2020-08-18 09:53:45 +05:30
|
|
|
uploadInfo, err := m.client.PutObject(
|
|
|
|
m.ctx,
|
|
|
|
m.bucket,
|
|
|
|
m.buildMinioPath(path),
|
|
|
|
r,
|
2021-04-03 21:49:59 +05:30
|
|
|
size,
|
2023-03-28 20:40:24 +05:30
|
|
|
minio.PutObjectOptions{
|
|
|
|
ContentType: "application/octet-stream",
|
|
|
|
// some storages like:
|
|
|
|
// * https://developers.cloudflare.com/r2/api/s3/api/
|
|
|
|
// * https://www.backblaze.com/b2/docs/s3_compatible_api.html
|
|
|
|
// do not support "x-amz-checksum-algorithm" header, so use legacy MD5 checksum
|
|
|
|
SendContentMd5: m.cfg.ChecksumAlgorithm == "md5",
|
|
|
|
},
|
2020-08-18 09:53:45 +05:30
|
|
|
)
|
|
|
|
if err != nil {
|
2020-10-16 09:21:06 +05:30
|
|
|
return 0, convertMinioErr(err)
|
2020-08-18 09:53:45 +05:30
|
|
|
}
|
|
|
|
return uploadInfo.Size, nil
|
|
|
|
}
|
|
|
|
|
2020-09-08 21:15:10 +05:30
|
|
|
type minioFileInfo struct {
|
|
|
|
minio.ObjectInfo
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m minioFileInfo) Name() string {
|
2021-09-06 20:16:20 +05:30
|
|
|
return path.Base(m.ObjectInfo.Key)
|
2020-09-08 21:15:10 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
func (m minioFileInfo) Size() int64 {
|
|
|
|
return m.ObjectInfo.Size
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m minioFileInfo) ModTime() time.Time {
|
|
|
|
return m.LastModified
|
|
|
|
}
|
|
|
|
|
2020-09-29 14:35:13 +05:30
|
|
|
func (m minioFileInfo) IsDir() bool {
|
|
|
|
return strings.HasSuffix(m.ObjectInfo.Key, "/")
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m minioFileInfo) Mode() os.FileMode {
|
|
|
|
return os.ModePerm
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m minioFileInfo) Sys() interface{} {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2020-09-08 21:15:10 +05:30
|
|
|
// Stat returns the stat information of the object
|
2020-09-29 14:35:13 +05:30
|
|
|
func (m *MinioStorage) Stat(path string) (os.FileInfo, error) {
|
2020-09-08 21:15:10 +05:30
|
|
|
info, err := m.client.StatObject(
|
|
|
|
m.ctx,
|
|
|
|
m.bucket,
|
|
|
|
m.buildMinioPath(path),
|
|
|
|
minio.StatObjectOptions{},
|
|
|
|
)
|
|
|
|
if err != nil {
|
2020-10-16 09:21:06 +05:30
|
|
|
return nil, convertMinioErr(err)
|
2020-09-08 21:15:10 +05:30
|
|
|
}
|
|
|
|
return &minioFileInfo{info}, nil
|
|
|
|
}
|
|
|
|
|
2020-08-18 09:53:45 +05:30
|
|
|
// Delete delete a file
|
|
|
|
func (m *MinioStorage) Delete(path string) error {
|
2020-10-16 09:21:06 +05:30
|
|
|
err := m.client.RemoveObject(m.ctx, m.bucket, m.buildMinioPath(path), minio.RemoveObjectOptions{})
|
|
|
|
|
|
|
|
return convertMinioErr(err)
|
2020-08-18 09:53:45 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
// URL gets the redirect URL to a file. The presigned link is valid for 5 minutes.
|
|
|
|
func (m *MinioStorage) URL(path, name string) (*url.URL, error) {
|
|
|
|
reqParams := make(url.Values)
|
|
|
|
// TODO it may be good to embed images with 'inline' like ServeData does, but we don't want to have to read the file, do we?
|
|
|
|
reqParams.Set("response-content-disposition", "attachment; filename=\""+quoteEscaper.Replace(name)+"\"")
|
2020-10-16 09:21:06 +05:30
|
|
|
u, err := m.client.PresignedGetObject(m.ctx, m.bucket, m.buildMinioPath(path), 5*time.Minute, reqParams)
|
|
|
|
return u, convertMinioErr(err)
|
2020-08-18 09:53:45 +05:30
|
|
|
}
|
2020-09-29 14:35:13 +05:30
|
|
|
|
|
|
|
// IterateObjects iterates across the objects in the miniostorage
|
2023-03-13 15:53:51 +05:30
|
|
|
func (m *MinioStorage) IterateObjects(prefix string, fn func(path string, obj Object) error) error {
|
2022-01-20 23:16:10 +05:30
|
|
|
opts := minio.GetObjectOptions{}
|
2020-09-29 14:35:13 +05:30
|
|
|
lobjectCtx, cancel := context.WithCancel(m.ctx)
|
|
|
|
defer cancel()
|
2023-03-13 15:53:51 +05:30
|
|
|
|
|
|
|
basePath := m.basePath
|
|
|
|
if prefix != "" {
|
|
|
|
basePath = m.buildMinioPath(prefix)
|
|
|
|
}
|
|
|
|
|
2020-09-29 14:35:13 +05:30
|
|
|
for mObjInfo := range m.client.ListObjects(lobjectCtx, m.bucket, minio.ListObjectsOptions{
|
2023-03-13 15:53:51 +05:30
|
|
|
Prefix: basePath,
|
2020-09-29 14:35:13 +05:30
|
|
|
Recursive: true,
|
|
|
|
}) {
|
|
|
|
object, err := m.client.GetObject(lobjectCtx, m.bucket, mObjInfo.Key, opts)
|
|
|
|
if err != nil {
|
2020-10-16 09:21:06 +05:30
|
|
|
return convertMinioErr(err)
|
2020-09-29 14:35:13 +05:30
|
|
|
}
|
|
|
|
if err := func(object *minio.Object, fn func(path string, obj Object) error) error {
|
|
|
|
defer object.Close()
|
2023-03-13 15:53:51 +05:30
|
|
|
return fn(strings.TrimPrefix(mObjInfo.Key, basePath), &minioObject{object})
|
2020-09-29 14:35:13 +05:30
|
|
|
}(object, fn); err != nil {
|
2020-10-16 09:21:06 +05:30
|
|
|
return convertMinioErr(err)
|
2020-09-29 14:35:13 +05:30
|
|
|
}
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
2020-10-13 09:28:34 +05:30
|
|
|
|
|
|
|
func init() {
|
|
|
|
RegisterStorageType(MinioStorageType, NewMinioStorage)
|
|
|
|
}
|