2020-08-17 22:23:45 -06:00
|
|
|
// Copyright 2020 The Gitea Authors. All rights reserved.
|
2022-11-27 11:20:29 -07:00
|
|
|
// SPDX-License-Identifier: MIT
|
2020-08-17 22:23:45 -06:00
|
|
|
|
|
|
|
package cmd
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"fmt"
|
2020-09-29 03:05:13 -06:00
|
|
|
"strings"
|
2020-08-17 22:23:45 -06:00
|
|
|
|
2023-05-12 07:30:28 -06:00
|
|
|
actions_model "code.gitea.io/gitea/models/actions"
|
2021-09-19 05:49:59 -06:00
|
|
|
"code.gitea.io/gitea/models/db"
|
2022-06-12 09:51:54 -06:00
|
|
|
git_model "code.gitea.io/gitea/models/git"
|
2020-08-17 22:23:45 -06:00
|
|
|
"code.gitea.io/gitea/models/migrations"
|
2022-08-15 22:05:15 -06:00
|
|
|
packages_model "code.gitea.io/gitea/models/packages"
|
2021-11-19 06:39:57 -07:00
|
|
|
repo_model "code.gitea.io/gitea/models/repo"
|
2021-11-24 02:49:20 -07:00
|
|
|
user_model "code.gitea.io/gitea/models/user"
|
2020-08-17 22:23:45 -06:00
|
|
|
"code.gitea.io/gitea/modules/log"
|
2022-08-15 22:05:15 -06:00
|
|
|
packages_module "code.gitea.io/gitea/modules/packages"
|
2020-08-17 22:23:45 -06:00
|
|
|
"code.gitea.io/gitea/modules/setting"
|
|
|
|
"code.gitea.io/gitea/modules/storage"
|
|
|
|
|
|
|
|
"github.com/urfave/cli"
|
|
|
|
)
|
|
|
|
|
|
|
|
// CmdMigrateStorage represents the available migrate storage sub-command.
|
|
|
|
var CmdMigrateStorage = cli.Command{
|
|
|
|
Name: "migrate-storage",
|
|
|
|
Usage: "Migrate the storage",
|
2022-08-15 22:05:15 -06:00
|
|
|
Description: "Copies stored files from storage configured in app.ini to parameter-configured storage",
|
2020-08-17 22:23:45 -06:00
|
|
|
Action: runMigrateStorage,
|
|
|
|
Flags: []cli.Flag{
|
|
|
|
cli.StringFlag{
|
|
|
|
Name: "type, t",
|
|
|
|
Value: "",
|
2023-05-12 07:30:28 -06:00
|
|
|
Usage: "Type of stored files to copy. Allowed types: 'attachments', 'lfs', 'avatars', 'repo-avatars', 'repo-archivers', 'packages', 'actions-log'",
|
2020-08-17 22:23:45 -06:00
|
|
|
},
|
|
|
|
cli.StringFlag{
|
2020-09-29 03:05:13 -06:00
|
|
|
Name: "storage, s",
|
2020-10-12 21:58:34 -06:00
|
|
|
Value: "",
|
|
|
|
Usage: "New storage type: local (default) or minio",
|
2020-08-17 22:23:45 -06:00
|
|
|
},
|
|
|
|
cli.StringFlag{
|
|
|
|
Name: "path, p",
|
|
|
|
Value: "",
|
|
|
|
Usage: "New storage placement if store is local (leave blank for default)",
|
|
|
|
},
|
|
|
|
cli.StringFlag{
|
|
|
|
Name: "minio-endpoint",
|
|
|
|
Value: "",
|
|
|
|
Usage: "Minio storage endpoint",
|
|
|
|
},
|
|
|
|
cli.StringFlag{
|
|
|
|
Name: "minio-access-key-id",
|
|
|
|
Value: "",
|
|
|
|
Usage: "Minio storage accessKeyID",
|
|
|
|
},
|
|
|
|
cli.StringFlag{
|
|
|
|
Name: "minio-secret-access-key",
|
|
|
|
Value: "",
|
|
|
|
Usage: "Minio storage secretAccessKey",
|
|
|
|
},
|
|
|
|
cli.StringFlag{
|
|
|
|
Name: "minio-bucket",
|
|
|
|
Value: "",
|
|
|
|
Usage: "Minio storage bucket",
|
|
|
|
},
|
|
|
|
cli.StringFlag{
|
|
|
|
Name: "minio-location",
|
|
|
|
Value: "",
|
|
|
|
Usage: "Minio storage location to create bucket",
|
|
|
|
},
|
|
|
|
cli.StringFlag{
|
|
|
|
Name: "minio-base-path",
|
|
|
|
Value: "",
|
2023-03-28 09:10:24 -06:00
|
|
|
Usage: "Minio storage base path on the bucket",
|
2020-08-17 22:23:45 -06:00
|
|
|
},
|
|
|
|
cli.BoolFlag{
|
|
|
|
Name: "minio-use-ssl",
|
|
|
|
Usage: "Enable SSL for minio",
|
|
|
|
},
|
2023-03-28 09:10:24 -06:00
|
|
|
cli.BoolFlag{
|
|
|
|
Name: "minio-insecure-skip-verify",
|
|
|
|
Usage: "Skip SSL verification",
|
|
|
|
},
|
|
|
|
cli.StringFlag{
|
|
|
|
Name: "minio-checksum-algorithm",
|
|
|
|
Value: "",
|
|
|
|
Usage: "Minio checksum algorithm (default/md5)",
|
|
|
|
},
|
2020-08-17 22:23:45 -06:00
|
|
|
},
|
|
|
|
}
|
|
|
|
|
2022-08-15 22:05:15 -06:00
|
|
|
func migrateAttachments(ctx context.Context, dstStorage storage.ObjectStorage) error {
|
2022-10-31 09:51:14 -06:00
|
|
|
return db.Iterate(ctx, nil, func(ctx context.Context, attach *repo_model.Attachment) error {
|
2020-08-17 22:23:45 -06:00
|
|
|
_, err := storage.Copy(dstStorage, attach.RelativePath(), storage.Attachments, attach.RelativePath())
|
|
|
|
return err
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2022-08-15 22:05:15 -06:00
|
|
|
func migrateLFS(ctx context.Context, dstStorage storage.ObjectStorage) error {
|
2022-10-31 09:51:14 -06:00
|
|
|
return db.Iterate(ctx, nil, func(ctx context.Context, mo *git_model.LFSMetaObject) error {
|
2020-09-08 09:45:10 -06:00
|
|
|
_, err := storage.Copy(dstStorage, mo.RelativePath(), storage.LFS, mo.RelativePath())
|
|
|
|
return err
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2022-08-15 22:05:15 -06:00
|
|
|
func migrateAvatars(ctx context.Context, dstStorage storage.ObjectStorage) error {
|
2022-10-31 09:51:14 -06:00
|
|
|
return db.Iterate(ctx, nil, func(ctx context.Context, user *user_model.User) error {
|
2020-10-14 07:07:51 -06:00
|
|
|
_, err := storage.Copy(dstStorage, user.CustomAvatarRelativePath(), storage.Avatars, user.CustomAvatarRelativePath())
|
|
|
|
return err
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2022-08-15 22:05:15 -06:00
|
|
|
func migrateRepoAvatars(ctx context.Context, dstStorage storage.ObjectStorage) error {
|
2022-10-31 09:51:14 -06:00
|
|
|
return db.Iterate(ctx, nil, func(ctx context.Context, repo *repo_model.Repository) error {
|
2020-10-14 07:07:51 -06:00
|
|
|
_, err := storage.Copy(dstStorage, repo.CustomAvatarRelativePath(), storage.RepoAvatars, repo.CustomAvatarRelativePath())
|
|
|
|
return err
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2022-08-15 22:05:15 -06:00
|
|
|
func migrateRepoArchivers(ctx context.Context, dstStorage storage.ObjectStorage) error {
|
2022-10-31 09:51:14 -06:00
|
|
|
return db.Iterate(ctx, nil, func(ctx context.Context, archiver *repo_model.RepoArchiver) error {
|
2022-08-29 03:45:20 -06:00
|
|
|
p := archiver.RelativePath()
|
|
|
|
_, err := storage.Copy(dstStorage, p, storage.RepoArchives, p)
|
2022-08-15 22:05:15 -06:00
|
|
|
return err
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
func migratePackages(ctx context.Context, dstStorage storage.ObjectStorage) error {
|
2022-10-31 09:51:14 -06:00
|
|
|
return db.Iterate(ctx, nil, func(ctx context.Context, pb *packages_model.PackageBlob) error {
|
2022-08-15 22:05:15 -06:00
|
|
|
p := packages_module.KeyToRelativePath(packages_module.BlobHash256Key(pb.HashSHA256))
|
|
|
|
_, err := storage.Copy(dstStorage, p, storage.Packages, p)
|
|
|
|
return err
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2023-05-12 07:30:28 -06:00
|
|
|
func migrateActionsLog(ctx context.Context, dstStorage storage.ObjectStorage) error {
|
|
|
|
return db.Iterate(ctx, nil, func(ctx context.Context, task *actions_model.ActionTask) error {
|
|
|
|
if task.LogExpired {
|
|
|
|
// the log has been cleared
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
if !task.LogInStorage {
|
|
|
|
// running tasks store logs in DBFS
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
p := task.LogFilename
|
|
|
|
_, err := storage.Copy(dstStorage, p, storage.Actions, p)
|
|
|
|
return err
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2020-08-17 22:23:45 -06:00
|
|
|
func runMigrateStorage(ctx *cli.Context) error {
|
2021-11-06 21:11:27 -06:00
|
|
|
stdCtx, cancel := installSignals()
|
|
|
|
defer cancel()
|
|
|
|
|
|
|
|
if err := initDB(stdCtx); err != nil {
|
2020-08-17 22:23:45 -06:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2021-06-26 18:56:58 -06:00
|
|
|
log.Info("AppPath: %s", setting.AppPath)
|
|
|
|
log.Info("AppWorkPath: %s", setting.AppWorkPath)
|
|
|
|
log.Info("Custom path: %s", setting.CustomPath)
|
2023-02-19 09:12:01 -07:00
|
|
|
log.Info("Log path: %s", setting.Log.RootPath)
|
2021-09-13 19:24:57 -06:00
|
|
|
log.Info("Configuration file: %s", setting.CustomConf)
|
2020-08-17 22:23:45 -06:00
|
|
|
|
2021-10-30 08:32:11 -06:00
|
|
|
if err := db.InitEngineWithMigration(context.Background(), migrations.Migrate); err != nil {
|
2020-08-17 22:23:45 -06:00
|
|
|
log.Fatal("Failed to initialize ORM engine: %v", err)
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
if err := storage.Init(); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2020-09-08 09:45:10 -06:00
|
|
|
var dstStorage storage.ObjectStorage
|
|
|
|
var err error
|
2020-09-29 03:05:13 -06:00
|
|
|
switch strings.ToLower(ctx.String("storage")) {
|
2020-10-12 21:58:34 -06:00
|
|
|
case "":
|
|
|
|
fallthrough
|
|
|
|
case string(storage.LocalStorageType):
|
2020-09-08 09:45:10 -06:00
|
|
|
p := ctx.String("path")
|
|
|
|
if p == "" {
|
2020-09-29 03:05:13 -06:00
|
|
|
log.Fatal("Path must be given when storage is loal")
|
2020-09-08 09:45:10 -06:00
|
|
|
return nil
|
|
|
|
}
|
2020-10-12 21:58:34 -06:00
|
|
|
dstStorage, err = storage.NewLocalStorage(
|
2022-08-15 22:05:15 -06:00
|
|
|
stdCtx,
|
2020-10-12 21:58:34 -06:00
|
|
|
storage.LocalStorageConfig{
|
|
|
|
Path: p,
|
|
|
|
})
|
|
|
|
case string(storage.MinioStorageType):
|
2020-09-08 09:45:10 -06:00
|
|
|
dstStorage, err = storage.NewMinioStorage(
|
2022-08-15 22:05:15 -06:00
|
|
|
stdCtx,
|
2020-10-12 21:58:34 -06:00
|
|
|
storage.MinioStorageConfig{
|
2023-03-28 09:10:24 -06:00
|
|
|
Endpoint: ctx.String("minio-endpoint"),
|
|
|
|
AccessKeyID: ctx.String("minio-access-key-id"),
|
|
|
|
SecretAccessKey: ctx.String("minio-secret-access-key"),
|
|
|
|
Bucket: ctx.String("minio-bucket"),
|
|
|
|
Location: ctx.String("minio-location"),
|
|
|
|
BasePath: ctx.String("minio-base-path"),
|
|
|
|
UseSSL: ctx.Bool("minio-use-ssl"),
|
|
|
|
InsecureSkipVerify: ctx.Bool("minio-insecure-skip-verify"),
|
|
|
|
ChecksumAlgorithm: ctx.String("minio-checksum-algorithm"),
|
2020-10-12 21:58:34 -06:00
|
|
|
})
|
2020-09-08 09:45:10 -06:00
|
|
|
default:
|
2022-08-15 22:05:15 -06:00
|
|
|
return fmt.Errorf("unsupported storage type: %s", ctx.String("storage"))
|
2020-09-08 09:45:10 -06:00
|
|
|
}
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2022-08-15 22:05:15 -06:00
|
|
|
migratedMethods := map[string]func(context.Context, storage.ObjectStorage) error{
|
|
|
|
"attachments": migrateAttachments,
|
|
|
|
"lfs": migrateLFS,
|
|
|
|
"avatars": migrateAvatars,
|
|
|
|
"repo-avatars": migrateRepoAvatars,
|
|
|
|
"repo-archivers": migrateRepoArchivers,
|
|
|
|
"packages": migratePackages,
|
2023-05-12 07:30:28 -06:00
|
|
|
"actions-log": migrateActionsLog,
|
2022-08-15 22:05:15 -06:00
|
|
|
}
|
|
|
|
|
2020-09-29 03:05:13 -06:00
|
|
|
tp := strings.ToLower(ctx.String("type"))
|
2022-08-15 22:05:15 -06:00
|
|
|
if m, ok := migratedMethods[tp]; ok {
|
|
|
|
if err := m(stdCtx, dstStorage); err != nil {
|
2020-10-14 07:07:51 -06:00
|
|
|
return err
|
|
|
|
}
|
2022-08-15 22:05:15 -06:00
|
|
|
log.Info("%s files have successfully been copied to the new storage.", tp)
|
|
|
|
return nil
|
2020-08-17 22:23:45 -06:00
|
|
|
}
|
|
|
|
|
2022-08-15 22:05:15 -06:00
|
|
|
return fmt.Errorf("unsupported storage: %s", ctx.String("type"))
|
2020-08-17 22:23:45 -06:00
|
|
|
}
|