mirror of https://github.com/go-gitea/gitea.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
327 lines
9.8 KiB
327 lines
9.8 KiB
// Copyright 2014 The Gogs Authors. All rights reserved. |
|
// Copyright 2016 The Gitea Authors. All rights reserved. |
|
// SPDX-License-Identifier: MIT |
|
|
|
package cmd |
|
|
|
import ( |
|
"context" |
|
"os" |
|
"path" |
|
"path/filepath" |
|
"strings" |
|
|
|
"code.gitea.io/gitea/models/db" |
|
"code.gitea.io/gitea/modules/dump" |
|
"code.gitea.io/gitea/modules/json" |
|
"code.gitea.io/gitea/modules/log" |
|
"code.gitea.io/gitea/modules/setting" |
|
"code.gitea.io/gitea/modules/storage" |
|
"code.gitea.io/gitea/modules/util" |
|
|
|
"gitea.com/go-chi/session" |
|
"github.com/urfave/cli/v3" |
|
) |
|
|
|
// CmdDump represents the available dump sub-command. |
|
var CmdDump = &cli.Command{ |
|
Name: "dump", |
|
Usage: "Dump Gitea files and database", |
|
Description: `Dump compresses all related files and database into zip file. It can be used for backup and capture Gitea server image to send to maintainer`, |
|
Action: runDump, |
|
Flags: []cli.Flag{ |
|
&cli.StringFlag{ |
|
Name: "file", |
|
Aliases: []string{"f"}, |
|
Usage: `Name of the dump file which will be created, default to "gitea-dump-{time}.zip". Supply '-' for stdout. See type for available types.`, |
|
}, |
|
&cli.BoolFlag{ |
|
Name: "verbose", |
|
Aliases: []string{"V"}, |
|
Usage: "Show process details", |
|
}, |
|
&cli.BoolFlag{ |
|
Name: "quiet", |
|
Aliases: []string{"q"}, |
|
Usage: "Only display warnings and errors", |
|
}, |
|
&cli.StringFlag{ |
|
Name: "tempdir", |
|
Aliases: []string{"t"}, |
|
Value: os.TempDir(), |
|
Usage: "Temporary dir path", |
|
}, |
|
&cli.StringFlag{ |
|
Name: "database", |
|
Aliases: []string{"d"}, |
|
Usage: "Specify the database SQL syntax: sqlite3, mysql, mssql, postgres", |
|
}, |
|
&cli.BoolFlag{ |
|
Name: "skip-repository", |
|
Aliases: []string{"R"}, |
|
Usage: "Skip the repository dumping", |
|
}, |
|
&cli.BoolFlag{ |
|
Name: "skip-log", |
|
Aliases: []string{"L"}, |
|
Usage: "Skip the log dumping", |
|
}, |
|
&cli.BoolFlag{ |
|
Name: "skip-custom-dir", |
|
Usage: "Skip custom directory", |
|
}, |
|
&cli.BoolFlag{ |
|
Name: "skip-lfs-data", |
|
Usage: "Skip LFS data", |
|
}, |
|
&cli.BoolFlag{ |
|
Name: "skip-attachment-data", |
|
Usage: "Skip attachment data", |
|
}, |
|
&cli.BoolFlag{ |
|
Name: "skip-package-data", |
|
Usage: "Skip package data", |
|
}, |
|
&cli.BoolFlag{ |
|
Name: "skip-index", |
|
Usage: "Skip bleve index data", |
|
}, |
|
&cli.BoolFlag{ |
|
Name: "skip-db", |
|
Usage: "Skip database", |
|
}, |
|
&cli.StringFlag{ |
|
Name: "type", |
|
Usage: `Dump output format, default to "zip", supported types: ` + strings.Join(dump.SupportedOutputTypes, ", "), |
|
}, |
|
}, |
|
} |
|
|
|
func fatal(format string, args ...any) { |
|
log.Fatal(format, args...) |
|
} |
|
|
|
func runDump(ctx context.Context, cmd *cli.Command) error { |
|
setting.MustInstalled() |
|
|
|
quite := cmd.Bool("quiet") |
|
verbose := cmd.Bool("verbose") |
|
if verbose && quite { |
|
fatal("Option --quiet and --verbose cannot both be set") |
|
} |
|
|
|
// outFileName is either "-" or a file name (will be made absolute) |
|
outFileName, outType := dump.PrepareFileNameAndType(cmd.String("file"), cmd.String("type")) |
|
if outType == "" { |
|
fatal("Invalid output type") |
|
} |
|
|
|
outFile := os.Stdout |
|
if outFileName != "-" { |
|
var err error |
|
if outFileName, err = filepath.Abs(outFileName); err != nil { |
|
fatal("Unable to get absolute path of dump file: %v", err) |
|
} |
|
if exist, _ := util.IsExist(outFileName); exist { |
|
fatal("Dump file %q exists", outFileName) |
|
} |
|
if outFile, err = os.Create(outFileName); err != nil { |
|
fatal("Unable to create dump file %q: %v", outFileName, err) |
|
} |
|
defer outFile.Close() |
|
} |
|
|
|
setupConsoleLogger(util.Iif(quite, log.WARN, log.INFO), log.CanColorStderr, os.Stderr) |
|
|
|
setting.DisableLoggerInit() |
|
setting.LoadSettings() // cannot access session settings otherwise |
|
|
|
err := db.InitEngine(ctx) |
|
if err != nil { |
|
return err |
|
} |
|
|
|
if err = storage.Init(); err != nil { |
|
return err |
|
} |
|
|
|
dumper, err := dump.NewDumper(ctx, outType, outFile) |
|
if err != nil { |
|
fatal("Failed to create archive %q: %v", outFile, err) |
|
return err |
|
} |
|
dumper.Verbose = verbose |
|
dumper.GlobalExcludeAbsPath(outFileName) |
|
defer func() { |
|
if err := dumper.Close(); err != nil { |
|
fatal("Failed to save archive %q: %v", outFileName, err) |
|
} |
|
}() |
|
|
|
if cmd.IsSet("skip-repository") && cmd.Bool("skip-repository") { |
|
log.Info("Skip dumping local repositories") |
|
} else { |
|
log.Info("Dumping local repositories... %s", setting.RepoRootPath) |
|
if err := dumper.AddRecursiveExclude("repos", setting.RepoRootPath, nil); err != nil { |
|
fatal("Failed to include repositories: %v", err) |
|
} |
|
|
|
if cmd.IsSet("skip-lfs-data") && cmd.Bool("skip-lfs-data") { |
|
log.Info("Skip dumping LFS data") |
|
} else if !setting.LFS.StartServer { |
|
log.Info("LFS isn't enabled. Skip dumping LFS data") |
|
} else if err := storage.LFS.IterateObjects("", func(objPath string, object storage.Object) error { |
|
info, err := object.Stat() |
|
if err != nil { |
|
return err |
|
} |
|
return dumper.AddFileByReader(object, info, path.Join("data", "lfs", objPath)) |
|
}); err != nil { |
|
fatal("Failed to dump LFS objects: %v", err) |
|
} |
|
} |
|
|
|
if cmd.Bool("skip-db") { |
|
// Ensure that we don't dump the database file that may reside in setting.AppDataPath or elsewhere. |
|
dumper.GlobalExcludeAbsPath(setting.Database.Path) |
|
log.Info("Skipping database") |
|
} else { |
|
tmpDir := cmd.String("tempdir") |
|
if _, err := os.Stat(tmpDir); os.IsNotExist(err) { |
|
fatal("Path does not exist: %s", tmpDir) |
|
} |
|
|
|
dbDump, err := os.CreateTemp(tmpDir, "gitea-db.sql") |
|
if err != nil { |
|
fatal("Failed to create tmp file: %v", err) |
|
} |
|
defer func() { |
|
_ = dbDump.Close() |
|
if err := util.Remove(dbDump.Name()); err != nil { |
|
log.Warn("Unable to remove temporary file: %s: Error: %v", dbDump.Name(), err) |
|
} |
|
}() |
|
|
|
targetDBType := cmd.String("database") |
|
if len(targetDBType) > 0 && targetDBType != setting.Database.Type.String() { |
|
log.Info("Dumping database %s => %s...", setting.Database.Type, targetDBType) |
|
} else { |
|
log.Info("Dumping database...") |
|
} |
|
|
|
if err := db.DumpDatabase(dbDump.Name(), targetDBType); err != nil { |
|
fatal("Failed to dump database: %v", err) |
|
} |
|
|
|
if err = dumper.AddFileByPath("gitea-db.sql", dbDump.Name()); err != nil { |
|
fatal("Failed to include gitea-db.sql: %v", err) |
|
} |
|
} |
|
|
|
log.Info("Adding custom configuration file from %s", setting.CustomConf) |
|
if err = dumper.AddFileByPath("app.ini", setting.CustomConf); err != nil { |
|
fatal("Failed to include specified app.ini: %v", err) |
|
} |
|
|
|
if cmd.IsSet("skip-custom-dir") && cmd.Bool("skip-custom-dir") { |
|
log.Info("Skipping custom directory") |
|
} else { |
|
customDir, err := os.Stat(setting.CustomPath) |
|
if err == nil && customDir.IsDir() { |
|
if is, _ := dump.IsSubdir(setting.AppDataPath, setting.CustomPath); !is { |
|
if err := dumper.AddRecursiveExclude("custom", setting.CustomPath, nil); err != nil { |
|
fatal("Failed to include custom: %v", err) |
|
} |
|
} else { |
|
log.Info("Custom dir %s is inside data dir %s, skipped", setting.CustomPath, setting.AppDataPath) |
|
} |
|
} else { |
|
log.Info("Custom dir %s doesn't exist, skipped", setting.CustomPath) |
|
} |
|
} |
|
|
|
isExist, err := util.IsExist(setting.AppDataPath) |
|
if err != nil { |
|
log.Error("Unable to check if %s exists. Error: %v", setting.AppDataPath, err) |
|
} |
|
if isExist { |
|
log.Info("Packing data directory...%s", setting.AppDataPath) |
|
|
|
var excludes []string |
|
if setting.SessionConfig.OriginalProvider == "file" { |
|
var opts session.Options |
|
if err = json.Unmarshal([]byte(setting.SessionConfig.ProviderConfig), &opts); err != nil { |
|
return err |
|
} |
|
excludes = append(excludes, opts.ProviderConfig) |
|
} |
|
|
|
if cmd.IsSet("skip-index") && cmd.Bool("skip-index") { |
|
excludes = append(excludes, setting.Indexer.RepoPath) |
|
excludes = append(excludes, setting.Indexer.IssuePath) |
|
} |
|
|
|
excludes = append(excludes, setting.RepoRootPath) |
|
excludes = append(excludes, setting.LFS.Storage.Path) |
|
excludes = append(excludes, setting.Attachment.Storage.Path) |
|
excludes = append(excludes, setting.Packages.Storage.Path) |
|
excludes = append(excludes, setting.RepoArchive.Storage.Path) |
|
excludes = append(excludes, setting.Log.RootPath) |
|
if err := dumper.AddRecursiveExclude("data", setting.AppDataPath, excludes); err != nil { |
|
fatal("Failed to include data directory: %v", err) |
|
} |
|
} |
|
|
|
if cmd.IsSet("skip-attachment-data") && cmd.Bool("skip-attachment-data") { |
|
log.Info("Skip dumping attachment data") |
|
} else if err := storage.Attachments.IterateObjects("", func(objPath string, object storage.Object) error { |
|
info, err := object.Stat() |
|
if err != nil { |
|
return err |
|
} |
|
return dumper.AddFileByReader(object, info, path.Join("data", "attachments", objPath)) |
|
}); err != nil { |
|
fatal("Failed to dump attachments: %v", err) |
|
} |
|
|
|
if cmd.IsSet("skip-package-data") && cmd.Bool("skip-package-data") { |
|
log.Info("Skip dumping package data") |
|
} else if !setting.Packages.Enabled { |
|
log.Info("Packages isn't enabled. Skip dumping package data") |
|
} else if err := storage.Packages.IterateObjects("", func(objPath string, object storage.Object) error { |
|
info, err := object.Stat() |
|
if err != nil { |
|
return err |
|
} |
|
return dumper.AddFileByReader(object, info, path.Join("data", "packages", objPath)) |
|
}); err != nil { |
|
fatal("Failed to dump packages: %v", err) |
|
} |
|
|
|
// Doesn't check if LogRootPath exists before processing --skip-log intentionally, |
|
// ensuring that it's clear the dump is skipped whether the directory's initialized |
|
// yet or not. |
|
if cmd.IsSet("skip-log") && cmd.Bool("skip-log") { |
|
log.Info("Skip dumping log files") |
|
} else { |
|
isExist, err := util.IsExist(setting.Log.RootPath) |
|
if err != nil { |
|
log.Error("Unable to check if %s exists. Error: %v", setting.Log.RootPath, err) |
|
} |
|
if isExist { |
|
if err := dumper.AddRecursiveExclude("log", setting.Log.RootPath, nil); err != nil { |
|
fatal("Failed to include log: %v", err) |
|
} |
|
} |
|
} |
|
|
|
if outFileName == "-" { |
|
log.Info("Finish dumping to stdout") |
|
} else { |
|
if err = os.Chmod(outFileName, 0o600); err != nil { |
|
log.Info("Can't change file access permissions mask to 0600: %v", err) |
|
} |
|
log.Info("Finish dumping in file %s", outFileName) |
|
} |
|
return nil |
|
}
|
|
|