2f5dd6eefc
后端
- 主键改雪花字符串 ID(pkg/idgen + Base.BeforeCreate),全表外键/JWT/中间件随之调整
- 新增 files 表:/api/upload 按 MD5 去重,返回 {id,url,md5},服务端只收图片
- 头像/记录附图/帖子图改 file_id 关联,读取解析为 URL
- 养护模板(物种×阶段)后台可配 + AI 生成草稿;建档按模板生成任务/计划/提醒
- 社区 AI 运营:虚拟账号池 + 每日定时/手动生成,帖子带 AI 标
- 计划路线图节点带真实日期;首页周历与计划日历同源;新增 day-plan 当日安排
- 体重趋势接口带备注;记录列表分页
小程序
- 公共图片上传 utils/upload.js(仅图片);记录拍照/我的头像/社区发图三处接入
- 首页日历点选查当日任务;记录页体重趋势可点看备注 + 时间轴分页折叠
- 计划页日历点选查当日计划;自定义 tabBar 高度调整
后台(React)
- 新增「养护模板」「社区运营」页;用户管理加机器人筛选
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
89 lines
2.2 KiB
Go
89 lines
2.2 KiB
Go
package service
|
|
|
|
import (
|
|
"bytes"
|
|
"crypto/md5"
|
|
"encoding/hex"
|
|
"errors"
|
|
"io"
|
|
"path"
|
|
"strings"
|
|
|
|
"github.com/sundynix/pets-be/internal/model"
|
|
)
|
|
|
|
// 允许的图片扩展名(服务端兜底校验,前端已限制仅图片)
|
|
var imageExts = map[string]bool{
|
|
".jpg": true, ".jpeg": true, ".png": true, ".gif": true,
|
|
".webp": true, ".bmp": true, ".heic": true, ".heif": true,
|
|
}
|
|
|
|
// UploadFile 上传文件并按 MD5 去重:内容相同直接返回已存记录,不重复占用 MinIO 空间。
|
|
func (s *Service) UploadFile(reader io.Reader, filename, contentType string) (*model.File, error) {
|
|
data, err := io.ReadAll(reader)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
sum := md5.Sum(data)
|
|
md5hex := hex.EncodeToString(sum[:])
|
|
|
|
// 已有相同内容 → 直接复用
|
|
var existing model.File
|
|
if err := s.db.Where("md5 = ?", md5hex).First(&existing).Error; err == nil {
|
|
return &existing, nil
|
|
}
|
|
|
|
ext := strings.ToLower(path.Ext(filename))
|
|
if !imageExts[ext] && !strings.HasPrefix(contentType, "image/") {
|
|
return nil, errors.New("只允许上传图片文件")
|
|
}
|
|
if contentType == "" {
|
|
contentType = "application/octet-stream"
|
|
}
|
|
objectName := "files/" + md5hex + ext
|
|
url, err := s.storage.Upload(objectName, bytes.NewReader(data), int64(len(data)), contentType)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
f := model.File{
|
|
MD5: md5hex, ObjectName: objectName, URL: url,
|
|
Size: int64(len(data)), ContentType: contentType, Ext: ext,
|
|
}
|
|
if err := s.db.Create(&f).Error; err != nil {
|
|
return nil, err
|
|
}
|
|
return &f, nil
|
|
}
|
|
|
|
// fileURL 按 file_id 取 URL(空 id 或不存在返回空串)
|
|
func (s *Service) fileURL(id string) string {
|
|
if id == "" {
|
|
return ""
|
|
}
|
|
var f model.File
|
|
if err := s.db.Select("url").First(&f, "id = ?", id).Error; err != nil {
|
|
return ""
|
|
}
|
|
return f.URL
|
|
}
|
|
|
|
// fileURLs 批量按 file_id 取 URL
|
|
func (s *Service) fileURLs(ids []string) map[string]string {
|
|
out := map[string]string{}
|
|
clean := make([]string, 0, len(ids))
|
|
for _, id := range ids {
|
|
if id != "" {
|
|
clean = append(clean, id)
|
|
}
|
|
}
|
|
if len(clean) == 0 {
|
|
return out
|
|
}
|
|
var files []model.File
|
|
s.db.Where("id IN ?", clean).Find(&files)
|
|
for _, f := range files {
|
|
out[f.ID] = f.URL
|
|
}
|
|
return out
|
|
}
|