mirror of https://github.com/rocboss/paopao-ce
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
56 lines
1.3 KiB
56 lines
1.3 KiB
package dao
|
|
|
|
import (
|
|
"github.com/aliyun/aliyun-oss-go-sdk/oss"
|
|
"github.com/minio/minio-go/v7"
|
|
"github.com/rocboss/paopao-ce/internal/conf"
|
|
"github.com/rocboss/paopao-ce/internal/core"
|
|
"github.com/sirupsen/logrus"
|
|
)
|
|
|
|
var (
|
|
_ core.ObjectStorageService = (*aliossServant)(nil)
|
|
_ core.ObjectStorageService = (*minioServant)(nil)
|
|
_ core.ObjectStorageService = (*s3Servant)(nil)
|
|
_ core.ObjectStorageService = (*localossServant)(nil)
|
|
)
|
|
|
|
type localossServant struct {
|
|
savePath string
|
|
domain string
|
|
}
|
|
|
|
type aliossServant struct {
|
|
bucket *oss.Bucket
|
|
domain string
|
|
}
|
|
|
|
type minioServant struct {
|
|
client *minio.Client
|
|
bucket string
|
|
domain string
|
|
}
|
|
|
|
type s3Servant = minioServant
|
|
|
|
func NewObjectStorageService() (oss core.ObjectStorageService) {
|
|
if conf.CfgIf("AliOSS") {
|
|
oss = newAliossServent()
|
|
} else if conf.CfgIf("MinIO") {
|
|
oss = newMinioServeant()
|
|
} else if conf.CfgIf("S3") {
|
|
oss = newS3Servent()
|
|
logrus.Infof("use S3 as object storage by version %s", oss.Version())
|
|
return
|
|
} else if conf.CfgIf("LocalOSS") {
|
|
oss = newLocalossServent()
|
|
} else {
|
|
// default use AliOSS as object storage service
|
|
oss = newAliossServent()
|
|
logrus.Infof("use default AliOSS as object storage by version %s", oss.Version())
|
|
return
|
|
}
|
|
logrus.Infof("use %s as object storage by version %s", oss.Name(), oss.Version())
|
|
return
|
|
}
|