Create & Init Project...
This commit is contained in:
48
app/admin/main/feed/service/bfs/bfs.go
Normal file
48
app/admin/main/feed/service/bfs/bfs.go
Normal file
@ -0,0 +1,48 @@
|
||||
package bfs
|
||||
|
||||
import (
|
||||
"bytes"
|
||||
"context"
|
||||
|
||||
"go-common/app/admin/main/feed/conf"
|
||||
bfsdao "go-common/app/admin/main/feed/dao/bfs"
|
||||
"go-common/library/ecode"
|
||||
"go-common/library/log"
|
||||
)
|
||||
|
||||
// Service bfs service.
|
||||
type Service struct {
|
||||
dao *bfsdao.Dao
|
||||
BfsMaxSize int
|
||||
}
|
||||
|
||||
// New new a bfs service.
|
||||
func New(c *conf.Config) (s *Service) {
|
||||
s = &Service{
|
||||
dao: bfsdao.New(c),
|
||||
BfsMaxSize: c.Bfs.MaxFileSize,
|
||||
}
|
||||
return
|
||||
}
|
||||
|
||||
// ClientUpCover client upload cover.
|
||||
func (s *Service) ClientUpCover(c context.Context, fileType string, body []byte) (url string, err error) {
|
||||
if len(body) == 0 {
|
||||
err = ecode.FileNotExists
|
||||
return
|
||||
}
|
||||
if len(body) > s.BfsMaxSize {
|
||||
err = ecode.FileTooLarge
|
||||
return
|
||||
}
|
||||
url, err = s.dao.Upload(c, fileType, bytes.NewReader(body))
|
||||
if err != nil {
|
||||
log.Error("s.bfs.Upload error(%v)", err)
|
||||
}
|
||||
return
|
||||
}
|
||||
|
||||
// FileMd5 is used for calculating file md5.
|
||||
func (s *Service) FileMd5(content []byte) (md5Str string, err error) {
|
||||
return s.dao.FileMd5(content)
|
||||
}
|
Reference in New Issue
Block a user