Files
panel/internal/biz/cron.go
T
耗子andClaude Opus 4.8 443516a2cf refactor!: 迁移至 samber/do 依赖注入与三层架构
依赖注入:
- 移除 google/wire(含 wire.go/wire_gen.go 与全部 ProviderSet),
  改用 samber/do v2 单注入器 + 双入口惰性构建
- 贡献模型替代命令式注册:路由 routes:、命令 commands:、
  任务 jobs: 前缀经 internal/registry 收集与校验
- 构造函数统一 func NewXxx(i do.Injector) (T, error)

三层架构:
- 补全用例层:每个 biz.XxxRepo 配 XxxUsecase,
  service/command/job 表现层只依赖用例,不再直接引用仓储

路由与文档:
- route/http.go 按域拆为声明式 Endpoint 贡献,
  Endpoint 承载登录白名单与端点限流语义
- 调试模式下提供 OpenAPI 3.1 文档:/openapi.json 与 /docs(Scalar),
  从 validate 标签生成

目录与依赖:
- internal/http/{middleware,request,rule} 拍平至 internal/*
- CLI 命令拆至 internal/command
- 日志轮转 timberjack 换为 libtnb/logrotate
- 升级 validator/cron/sessions/gormstore/sqlite/securecookie
- 数据库迁移保持 gormigrate 不变

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
2026-07-09 21:54:22 +08:00

70 lines
2.0 KiB
Go

package biz
import (
"context"
"time"
"github.com/acepanel/panel/v3/internal/request"
"github.com/acepanel/panel/v3/pkg/types"
)
type Cron struct {
ID uint `gorm:"primaryKey" json:"id"`
Name string `gorm:"not null;default:'';unique" json:"name"`
Status bool `gorm:"not null;default:false" json:"status"`
Type string `gorm:"not null;default:''" json:"type"`
Time string `gorm:"not null;default:''" json:"time"`
Config types.CronConfig `gorm:"serializer:json;not null;default:'{}'" json:"config"`
Shell string `gorm:"not null;default:''" json:"shell"`
Log string `gorm:"not null;default:''" json:"log"`
CreatedAt time.Time `json:"created_at"`
UpdatedAt time.Time `json:"updated_at"`
}
type CronRepo interface {
Count() (int64, error)
List(page, limit uint) ([]*Cron, int64, error)
Get(id uint) (*Cron, error)
Create(ctx context.Context, req *request.CronCreate) error
Update(ctx context.Context, req *request.CronUpdate) error
Delete(ctx context.Context, id uint) error
Status(id uint, status bool) error
}
// CronUsecase 计划任务业务逻辑
type CronUsecase struct {
repo CronRepo
}
func NewCronUsecase(repo CronRepo) *CronUsecase {
return &CronUsecase{repo: repo}
}
func (uc *CronUsecase) Count() (int64, error) {
return uc.repo.Count()
}
func (uc *CronUsecase) List(page, limit uint) ([]*Cron, int64, error) {
return uc.repo.List(page, limit)
}
func (uc *CronUsecase) Get(id uint) (*Cron, error) {
return uc.repo.Get(id)
}
func (uc *CronUsecase) Create(ctx context.Context, req *request.CronCreate) error {
return uc.repo.Create(ctx, req)
}
func (uc *CronUsecase) Update(ctx context.Context, req *request.CronUpdate) error {
return uc.repo.Update(ctx, req)
}
func (uc *CronUsecase) Delete(ctx context.Context, id uint) error {
return uc.repo.Delete(ctx, id)
}
func (uc *CronUsecase) Status(id uint, status bool) error {
return uc.repo.Status(id, status)
}