Files
panel/internal/command/backup.go
T
耗子 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

129 lines
3.2 KiB
Go

package command
import (
"context"
"github.com/leonelquinteros/gotext"
"github.com/samber/do/v2"
"github.com/urfave/cli/v3"
"github.com/acepanel/panel/v3/internal/service"
)
// BackupCommand 数据备份命令组
func BackupCommand(i do.Injector) (*cli.Command, error) {
t := do.MustInvoke[*gotext.Locale](i)
return &cli.Command{
Name: "backup",
Usage: t.Get("Data backup"),
Commands: []*cli.Command{
{
Name: "website",
Usage: t.Get("Backup website"),
Flags: []cli.Flag{
&cli.StringFlag{
Name: "name",
Aliases: []string{"n"},
Usage: t.Get("Website name"),
Required: true,
},
&cli.UintFlag{
Name: "storage",
Aliases: []string{"s"},
Usage: t.Get("Storage ID (local storage if not filled)"),
},
},
Action: func(ctx context.Context, cmd *cli.Command) error {
return do.MustInvoke[*service.CliService](i).BackupWebsite(ctx, cmd)
},
},
{
Name: "database",
Usage: t.Get("Backup database"),
Flags: []cli.Flag{
&cli.StringFlag{
Name: "type",
Aliases: []string{"t"},
Usage: t.Get("Database type"),
Required: true,
},
&cli.StringFlag{
Name: "name",
Aliases: []string{"n"},
Usage: t.Get("Database name"),
Required: true,
},
&cli.UintFlag{
Name: "storage",
Aliases: []string{"s"},
Usage: t.Get("Storage ID (local storage if not filled)"),
},
},
Action: func(ctx context.Context, cmd *cli.Command) error {
return do.MustInvoke[*service.CliService](i).BackupDatabase(ctx, cmd)
},
},
{
Name: "path",
Usage: t.Get("Backup directory"),
Flags: []cli.Flag{
&cli.StringFlag{
Name: "path",
Aliases: []string{"p"},
Usage: t.Get("Directory path"),
Required: true,
},
&cli.UintFlag{
Name: "storage",
Aliases: []string{"s"},
Usage: t.Get("Storage ID (local storage if not filled)"),
},
},
Action: func(ctx context.Context, cmd *cli.Command) error {
return do.MustInvoke[*service.CliService](i).BackupPath(ctx, cmd)
},
},
{
Name: "panel",
Usage: t.Get("Backup panel"),
Flags: []cli.Flag{},
Action: func(ctx context.Context, cmd *cli.Command) error {
return do.MustInvoke[*service.CliService](i).BackupPanel(ctx, cmd)
},
},
{
Name: "clear",
Usage: t.Get("Clear backups"),
Flags: []cli.Flag{
&cli.StringFlag{
Name: "type",
Aliases: []string{"t"},
Usage: t.Get("Backup type"),
Required: true,
},
&cli.StringFlag{
Name: "file",
Aliases: []string{"f"},
Usage: t.Get("Backup file"),
Required: true,
},
&cli.UintFlag{
Name: "keep",
Aliases: []string{"k"},
Usage: t.Get("Number of backups to keep"),
Required: true,
},
&cli.UintFlag{
Name: "storage",
Aliases: []string{"s"},
Usage: t.Get("Storage ID (local storage if not filled)"),
},
},
Action: func(ctx context.Context, cmd *cli.Command) error {
return do.MustInvoke[*service.CliService](i).BackupClear(ctx, cmd)
},
},
},
}, nil
}