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.
72 lines
1.6 KiB
72 lines
1.6 KiB
package dao
|
|
|
|
import (
|
|
"github.com/aliyun/aliyun-oss-go-sdk/oss"
|
|
"github.com/minio/minio-go/v7"
|
|
"github.com/rocboss/paopao-ce/global"
|
|
"github.com/rocboss/paopao-ce/internal/core"
|
|
"github.com/rocboss/paopao-ce/pkg/zinc"
|
|
"gorm.io/gorm"
|
|
)
|
|
|
|
var (
|
|
_ core.DataService = (*dataServant)(nil)
|
|
_ core.ObjectStorageService = (*aliossServant)(nil)
|
|
_ core.ObjectStorageService = (*minioServant)(nil)
|
|
_ core.ObjectStorageService = (*s3Servant)(nil)
|
|
_ core.AttachmentCheckService = (*attachmentCheckServant)(nil)
|
|
)
|
|
|
|
type dataServant struct {
|
|
engine *gorm.DB
|
|
zinc *zinc.ZincClient
|
|
}
|
|
|
|
type aliossServant struct {
|
|
bucket *oss.Bucket
|
|
domain string
|
|
}
|
|
|
|
type minioServant struct {
|
|
client *minio.Client
|
|
bucket string
|
|
domain string
|
|
}
|
|
|
|
type s3Servant = minioServant
|
|
|
|
type attachmentCheckServant struct {
|
|
domain string
|
|
}
|
|
|
|
func NewDataService(engine *gorm.DB, zinc *zinc.ZincClient) core.DataService {
|
|
return &dataServant{
|
|
engine: engine,
|
|
zinc: zinc,
|
|
}
|
|
}
|
|
|
|
func NewObjectStorageService() (oss core.ObjectStorageService) {
|
|
if global.CfgIf("AliOSS") {
|
|
oss = newAliossServent()
|
|
global.Logger.Infoln("use AliOSS as object storage")
|
|
} else if global.CfgIf("MinIO") {
|
|
oss = newMinioServeant()
|
|
global.Logger.Infoln("use MinIO as object storage")
|
|
} else if global.CfgIf("S3") {
|
|
oss = newS3Servent()
|
|
global.Logger.Infoln("use S3 as object storage")
|
|
} else {
|
|
// default use AliOSS
|
|
oss = newAliossServent()
|
|
global.Logger.Infoln("use default AliOSS as object storage")
|
|
}
|
|
return
|
|
}
|
|
|
|
func NewAttachmentCheckerService() core.AttachmentCheckService {
|
|
return &attachmentCheckServant{
|
|
domain: getOssDomain(),
|
|
}
|
|
}
|