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.
110 lines
2.5 KiB
110 lines
2.5 KiB
package dao
|
|
|
|
import (
|
|
"sync/atomic"
|
|
"time"
|
|
|
|
"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/rocboss/paopao-ce/internal/model"
|
|
"github.com/rocboss/paopao-ce/pkg/zinc"
|
|
"github.com/sirupsen/logrus"
|
|
"gorm.io/gorm"
|
|
)
|
|
|
|
var (
|
|
_ core.DataService = (*dataServant)(nil)
|
|
_ core.ObjectStorageService = (*aliossServant)(nil)
|
|
_ core.ObjectStorageService = (*minioServant)(nil)
|
|
_ core.ObjectStorageService = (*s3Servant)(nil)
|
|
_ core.ObjectStorageService = (*localossServant)(nil)
|
|
_ core.AttachmentCheckService = (*attachmentCheckServant)(nil)
|
|
_ core.CacheIndexService = (*simpleCacheIndexServant)(nil)
|
|
)
|
|
|
|
type dataServant struct {
|
|
useCacheIndex bool
|
|
cacheIndex core.CacheIndexService
|
|
|
|
engine *gorm.DB
|
|
zinc *zinc.ZincClient
|
|
}
|
|
|
|
type simpleCacheIndexServant struct {
|
|
getIndexPosts func(offset, limit int) ([]*model.PostFormated, error)
|
|
indexActionCh chan core.IndexActionT
|
|
indexPosts []*model.PostFormated
|
|
atomicIndex atomic.Value
|
|
maxIndexSize int
|
|
checkTick *time.Ticker
|
|
expireIndexTick *time.Ticker
|
|
}
|
|
|
|
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
|
|
|
|
type attachmentCheckServant struct {
|
|
domain string
|
|
}
|
|
|
|
func NewDataService(engine *gorm.DB, zinc *zinc.ZincClient) core.DataService {
|
|
ds := &dataServant{
|
|
engine: engine,
|
|
zinc: zinc,
|
|
}
|
|
|
|
// initialize CacheIndex if needed
|
|
if !conf.CfgIf("CacheIndex") {
|
|
ds.useCacheIndex = false
|
|
} else {
|
|
ds.useCacheIndex = true
|
|
ds.cacheIndex = newSimpleCacheIndexServant(ds.getIndexPosts)
|
|
}
|
|
|
|
return ds
|
|
}
|
|
|
|
func NewObjectStorageService() (oss core.ObjectStorageService) {
|
|
if conf.CfgIf("AliOSS") {
|
|
oss = newAliossServent()
|
|
logrus.Infoln("use AliOSS as object storage")
|
|
} else if conf.CfgIf("MinIO") {
|
|
oss = newMinioServeant()
|
|
logrus.Infoln("use MinIO as object storage")
|
|
} else if conf.CfgIf("S3") {
|
|
oss = newS3Servent()
|
|
logrus.Infoln("use S3 as object storage")
|
|
} else if conf.CfgIf("LocalOSS") {
|
|
oss = newLocalossServent()
|
|
logrus.Infoln("use LocalOSS as object storage")
|
|
} else {
|
|
// default use AliOSS
|
|
oss = newAliossServent()
|
|
logrus.Infoln("use default AliOSS as object storage")
|
|
}
|
|
return
|
|
}
|
|
|
|
func NewAttachmentCheckerService() core.AttachmentCheckService {
|
|
return &attachmentCheckServant{
|
|
domain: getOssDomain(),
|
|
}
|
|
}
|