0b4a1b4594
- Updated OSSStorage validation errors to use internationalized messages. - Changed error messages in provider.go for unsupported file storage types. - Refactored tag_service.go to replace hardcoded error messages with internationalized versions. - Updated ticket_service.go to use internationalized error messages for various validation checks. - Refactored ticket_tag_service.go to use internationalized error messages for tag validation. - Changed ticket_view_service.go to use internationalized error messages for view validation. - Updated tool_catalog_service.go to use internationalized error messages for tool code validation. - Refactored user_service.go to replace error messages with internationalized versions. - Updated ws_service.go to use internationalized error messages for WebSocket handling. - Refactored wxwork_kf_inbound_service.go to use internationalized error messages for message handling. - Updated wxwork_kf_outbound_service.go to use internationalized error messages for outbound message handling. - Refactored wxwork_login_service.go to use internationalized error messages for login handling. - Updated login.go in wxwork package to use internationalized error messages for login state and ticket validation.
201 lines
5.4 KiB
Go
201 lines
5.4 KiB
Go
package services
|
|
|
|
import (
|
|
"agent-desk/internal/models"
|
|
"agent-desk/internal/pkg/config"
|
|
"agent-desk/internal/pkg/dto"
|
|
"agent-desk/internal/pkg/enums"
|
|
"agent-desk/internal/pkg/errorsx"
|
|
"agent-desk/internal/pkg/utils"
|
|
"agent-desk/internal/repositories"
|
|
"agent-desk/internal/services/storage"
|
|
"bytes"
|
|
"io"
|
|
"mime/multipart"
|
|
"net/http"
|
|
"strings"
|
|
"time"
|
|
|
|
"github.com/google/uuid"
|
|
"github.com/mlogclub/simple/sqls"
|
|
)
|
|
|
|
var AssetService = newAssetService()
|
|
|
|
func newAssetService() *assetService {
|
|
return &assetService{}
|
|
}
|
|
|
|
type assetService struct {
|
|
}
|
|
|
|
func (s *assetService) Get(id int64) *models.Asset {
|
|
return repositories.AssetRepository.Get(sqls.DB(), id)
|
|
}
|
|
|
|
func (s *assetService) GetByAssetID(assetID string) *models.Asset {
|
|
return repositories.AssetRepository.GetByAssetID(sqls.DB(), strings.TrimSpace(assetID))
|
|
}
|
|
|
|
func (s *assetService) GetByStorageKey(storageKey string) *models.Asset {
|
|
return repositories.AssetRepository.GetByStorageKey(sqls.DB(), strings.TrimSpace(storageKey))
|
|
}
|
|
|
|
func (s *assetService) FindPageByCnd(cnd *sqls.Cnd) (list []models.Asset, paging *sqls.Paging) {
|
|
return repositories.AssetRepository.FindPageByCnd(sqls.DB(), cnd)
|
|
}
|
|
|
|
func (s *assetService) OpenReader(asset *models.Asset) (io.ReadCloser, error) {
|
|
cfg := config.Current()
|
|
if asset == nil {
|
|
return nil, errorsx.InvalidParamI18n("error.e0146")
|
|
}
|
|
switch asset.Provider {
|
|
case "", enums.AssetProviderLocal:
|
|
return storage.NewLocalStorage(cfg.Storage.Local).Read(asset.StorageKey)
|
|
case enums.AssetProviderOSS:
|
|
return storage.NewOSSStorage(cfg.Storage.OSS).Read(asset.StorageKey)
|
|
default:
|
|
return nil, errorsx.InvalidParamI18n("error.e0195")
|
|
}
|
|
}
|
|
|
|
func (s *assetService) UploadBytes(data []byte, prefix, filename string, principal *dto.AuthPrincipal) (*models.Asset, error) {
|
|
src := bytes.NewReader(data)
|
|
return s.Upload(src, storage.UploadInfo{
|
|
Prefix: prefix,
|
|
Filename: filename,
|
|
FileSize: int64(len(data)),
|
|
MimeType: http.DetectContentType(data),
|
|
Principal: principal,
|
|
})
|
|
}
|
|
|
|
func (s *assetService) UploadFile(file *multipart.FileHeader, prefix string, principal *dto.AuthPrincipal) (*models.Asset, error) {
|
|
if file == nil {
|
|
return nil, errorsx.InvalidParamI18n("error.e0323")
|
|
}
|
|
|
|
cfg := config.Current()
|
|
if file.Size > cfg.Storage.MaxUploadSizeBytes() {
|
|
return nil, errorsx.InvalidParamI18n("error.e0079")
|
|
}
|
|
|
|
src, err := file.Open()
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
defer func() { _ = src.Close() }()
|
|
|
|
return s.Upload(src, storage.UploadInfo{
|
|
Prefix: prefix,
|
|
Filename: file.Filename,
|
|
FileSize: file.Size,
|
|
MimeType: file.Header.Get("Content-Type"),
|
|
Principal: principal,
|
|
})
|
|
}
|
|
|
|
func (s *assetService) Upload(reader io.Reader, info storage.UploadInfo) (*models.Asset, error) {
|
|
provider, err := storage.GetDefault()
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
assetID, key := storage.GenerateStorageKey(info)
|
|
item := &models.Asset{
|
|
AssetID: assetID,
|
|
Provider: provider.ProviderType(),
|
|
StorageKey: key,
|
|
Filename: info.Filename,
|
|
FileSize: info.FileSize,
|
|
MimeType: info.MimeType,
|
|
Status: enums.AssetStatusPending,
|
|
AuditFields: utils.BuildAuditFields(info.Principal),
|
|
}
|
|
if err := repositories.AssetRepository.Create(sqls.DB(), item); err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
if _, err := provider.Upload(reader, key, storage.UploadInfo{
|
|
Prefix: info.Prefix,
|
|
Filename: info.Filename,
|
|
FileSize: info.FileSize,
|
|
MimeType: info.MimeType,
|
|
Principal: info.Principal,
|
|
}); err != nil {
|
|
_ = s.markAssetStatus(item.ID, enums.AssetStatusFailed, info.Principal)
|
|
return nil, err
|
|
}
|
|
|
|
item.Status = enums.AssetStatusSuccess
|
|
_ = repositories.AssetRepository.UpdateColumn(sqls.DB(), item.ID, "status", enums.AssetStatusSuccess)
|
|
|
|
return item, nil
|
|
}
|
|
|
|
func (s *assetService) GetSignedURL(id int64) (string, error) {
|
|
item := s.Get(id)
|
|
if item == nil {
|
|
return "", errorsx.InvalidParamI18n("error.e0214")
|
|
}
|
|
if item.Status != enums.AssetStatusSuccess {
|
|
return "", errorsx.InvalidParamI18n("error.e0213")
|
|
}
|
|
|
|
provider, err := storage.NewProvider(item.Provider)
|
|
if err != nil {
|
|
return "", err
|
|
}
|
|
accessURL := provider.GetSignedURL(item.StorageKey)
|
|
return accessURL, nil
|
|
}
|
|
|
|
func (s *assetService) DeleteAsset(id int64, principal *dto.AuthPrincipal) error {
|
|
if principal == nil {
|
|
return errorsx.UnauthorizedI18n("error.auth.expired")
|
|
}
|
|
item := s.Get(id)
|
|
if item == nil {
|
|
return errorsx.InvalidParamI18n("error.e0214")
|
|
}
|
|
return repositories.AssetRepository.Updates(sqls.DB(), id, map[string]any{
|
|
"status": enums.AssetStatusDeleted,
|
|
"update_user_id": principal.UserID,
|
|
"update_user_name": principal.Username,
|
|
"updated_at": time.Now(),
|
|
})
|
|
}
|
|
|
|
func (s *assetService) markAssetStatus(id int64, status enums.AssetStatus, principal *dto.AuthPrincipal) error {
|
|
updates := map[string]any{
|
|
"status": status,
|
|
"updated_at": time.Now(),
|
|
}
|
|
if principal != nil {
|
|
updates["update_user_id"] = principal.UserID
|
|
updates["update_user_name"] = principal.Username
|
|
}
|
|
return repositories.AssetRepository.Updates(sqls.DB(), id, updates)
|
|
}
|
|
|
|
func (s *assetService) buildFilenameFromMime(mimeType string) string {
|
|
mimeType = strings.TrimSpace(strings.Split(mimeType, ";")[0])
|
|
ext := ".bin"
|
|
switch mimeType {
|
|
case "image/jpeg":
|
|
ext = ".jpg"
|
|
case "image/png":
|
|
ext = ".png"
|
|
case "image/gif":
|
|
ext = ".gif"
|
|
case "image/webp":
|
|
ext = ".webp"
|
|
case "application/pdf":
|
|
ext = ".pdf"
|
|
case "text/plain":
|
|
ext = ".txt"
|
|
}
|
|
return "wxwork_" + strings.ReplaceAll(uuid.NewString(), "-", "") + ext
|
|
}
|