mirror of https://github.com/rocboss/paopao-ce
parent
20e7d5db90
commit
46d5ef1791
@ -1,5 +1,5 @@
|
|||||||
package core
|
package core
|
||||||
|
|
||||||
type AttachmentCheckService interface {
|
type AttachmentCheckService interface {
|
||||||
Check(cUrl string) error
|
Check(uri string) error
|
||||||
}
|
}
|
||||||
|
@ -0,0 +1,71 @@
|
|||||||
|
package dao
|
||||||
|
|
||||||
|
import (
|
||||||
|
"errors"
|
||||||
|
"fmt"
|
||||||
|
"io"
|
||||||
|
"os"
|
||||||
|
"path/filepath"
|
||||||
|
"strings"
|
||||||
|
"time"
|
||||||
|
|
||||||
|
"github.com/rocboss/paopao-ce/global"
|
||||||
|
)
|
||||||
|
|
||||||
|
func newLocalossServent() *localossServant {
|
||||||
|
savePath, err := filepath.Abs(global.LocalOSSSetting.SavePath)
|
||||||
|
if err != nil {
|
||||||
|
global.Logger.Fatalf("get localOSS save path err: %v", err)
|
||||||
|
}
|
||||||
|
|
||||||
|
return &localossServant{
|
||||||
|
savePath: savePath + "/" + global.LocalOSSSetting.Bucket + "/",
|
||||||
|
domain: getOssDomain(),
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func (s *localossServant) PutObject(objectKey string, reader io.Reader, objectSize int64, contentType string) (string, error) {
|
||||||
|
saveDir := s.savePath + filepath.Dir(objectKey)
|
||||||
|
err := os.MkdirAll(saveDir, 0750)
|
||||||
|
if err != nil && !os.IsExist(err) {
|
||||||
|
return "", err
|
||||||
|
}
|
||||||
|
|
||||||
|
savePath := s.savePath + objectKey
|
||||||
|
writer, err := os.Create(savePath)
|
||||||
|
if err != nil {
|
||||||
|
return "", err
|
||||||
|
}
|
||||||
|
defer writer.Close()
|
||||||
|
|
||||||
|
written, err := io.Copy(writer, reader)
|
||||||
|
if err != nil {
|
||||||
|
return "", err
|
||||||
|
}
|
||||||
|
if written != objectSize {
|
||||||
|
os.Remove(savePath)
|
||||||
|
return "", errors.New("put object not complete")
|
||||||
|
}
|
||||||
|
|
||||||
|
return s.domain + objectKey, nil
|
||||||
|
}
|
||||||
|
|
||||||
|
func (s *localossServant) SignURL(objectKey string, expiredInSec int64) (string, error) {
|
||||||
|
if expiredInSec < 0 {
|
||||||
|
return "", fmt.Errorf("invalid expires: %d, expires must bigger than 0", expiredInSec)
|
||||||
|
}
|
||||||
|
expiration := time.Now().Unix() + expiredInSec
|
||||||
|
|
||||||
|
// Fixed: Just make things simple and simple now so return an veiry simple sign url.
|
||||||
|
// Maybe make another process logic for sign url in future but not now.
|
||||||
|
uri := fmt.Sprintf("%s%s?expired=%d", s.domain, objectKey, expiration)
|
||||||
|
return uri, nil
|
||||||
|
}
|
||||||
|
|
||||||
|
func (s *localossServant) ObjectURL(objetKey string) string {
|
||||||
|
return s.domain + objetKey
|
||||||
|
}
|
||||||
|
|
||||||
|
func (s *localossServant) ObjectKey(objectUrl string) string {
|
||||||
|
return strings.Replace(objectUrl, s.domain, "", -1)
|
||||||
|
}
|
@ -1,4 +1,4 @@
|
|||||||
{
|
{
|
||||||
"version": "",
|
"version": "3",
|
||||||
"buildTime": ""
|
"buildTime": "2022-06-08 23:29:43"
|
||||||
}
|
}
|
Loading…
Reference in new issue