mirror of
https://github.com/89luca89/distrobox.git
synced 2026-08-17 16:34:42 -05:00
120 lines
3.4 KiB
Go
120 lines
3.4 KiB
Go
// SPDX-License-Identifier: GPL-3.0-only
|
|
//
|
|
// This file is part of the distrobox project:
|
|
// https://github.com/89luca89/distrobox
|
|
//
|
|
// Copyright (C) 2021 distrobox contributors
|
|
//
|
|
// distrobox is free software; you can redistribute it and/or modify it
|
|
// under the terms of the GNU General Public License version 3
|
|
// as published by the Free Software Foundation.
|
|
//
|
|
// distrobox is distributed in the hope that it will be useful, but
|
|
// WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
// General Public License for more details.
|
|
//
|
|
// You should have received a copy of the GNU General Public License
|
|
// along with distrobox; if not, see <http://www.gnu.org/licenses/>.
|
|
|
|
package cli
|
|
|
|
import (
|
|
"bufio"
|
|
"context"
|
|
"errors"
|
|
"fmt"
|
|
"os"
|
|
|
|
"github.com/urfave/cli/v3"
|
|
|
|
"github.com/89luca89/distrobox/pkg/commands"
|
|
"github.com/89luca89/distrobox/pkg/config"
|
|
"github.com/89luca89/distrobox/pkg/containermanager"
|
|
"github.com/89luca89/distrobox/pkg/ui"
|
|
)
|
|
|
|
func newMigrateCommand(cfg *config.Values) *cli.Command {
|
|
return &cli.Command{
|
|
Name: "migrate",
|
|
Usage: "migrate an old (v1) distrobox container to work with v2",
|
|
UsageText: `distrobox migrate [container-name | --all] [options]
|
|
|
|
Examples:
|
|
distrobox migrate my-box
|
|
distrobox migrate --all
|
|
distrobox migrate --dry-run my-box
|
|
distrobox migrate --force --yes my-box
|
|
|
|
Migrate containers created with distrobox v1 to work with v2.
|
|
This recreates the container with updated mount points for the v2 script locations.`,
|
|
Flags: []cli.Flag{
|
|
&cli.BoolFlag{
|
|
Name: "all",
|
|
Aliases: []string{"a"},
|
|
Usage: "migrate all distrobox containers that need it",
|
|
},
|
|
&cli.BoolFlag{
|
|
Name: "force",
|
|
Usage: "skip the already-migrated check and recreate anyway",
|
|
},
|
|
&cli.BoolFlag{
|
|
Name: "dry-run",
|
|
Aliases: []string{"d"},
|
|
Usage: "print the commands that would be executed, do nothing",
|
|
},
|
|
&cli.BoolFlag{
|
|
Name: "yes",
|
|
Aliases: []string{"Y"},
|
|
Value: cfg.NonInteractive,
|
|
Usage: "non-interactive, do not ask for confirmation",
|
|
},
|
|
},
|
|
Action: func(ctx context.Context, cmd *cli.Command) error {
|
|
return migrateAction(ctx, cmd, cfg)
|
|
},
|
|
}
|
|
}
|
|
|
|
func migrateAction(ctx context.Context, cmd *cli.Command, cfg *config.Values) error {
|
|
containerManager, ok := ctx.Value(containerManagerKey).(containermanager.ContainerManager)
|
|
if !ok {
|
|
return errors.New("container manager not found in context")
|
|
}
|
|
|
|
all := cmd.Bool("all")
|
|
containerNames := cmd.Args().Slice()
|
|
|
|
// Fall back to default container name when neither --all nor positional args
|
|
// are given, matching stop/rm behavior.
|
|
if !all && len(containerNames) == 0 && cfg.ContainerName != "" {
|
|
containerNames = []string{cfg.ContainerName}
|
|
}
|
|
|
|
options := commands.MigrateOptions{
|
|
ContainerNames: containerNames,
|
|
All: all,
|
|
Force: cmd.Bool("force"),
|
|
DryRun: cmd.Bool("dry-run"),
|
|
NonInteractive: cmd.Bool("yes"),
|
|
}
|
|
|
|
printer := ui.NewPrinter(os.Stderr, true)
|
|
prompter := ui.NewPrompter(*bufio.NewReader(os.Stdin), os.Stdout)
|
|
|
|
migrateCmd := commands.NewMigrateCommand(cfg, containerManager, printer, prompter)
|
|
err := migrateCmd.Execute(ctx, options)
|
|
|
|
if errors.Is(err, commands.ErrEmptyContainerList) {
|
|
errPrinter := ui.NewPrinter(os.Stderr, true)
|
|
errPrinter.Println("No containers found.")
|
|
return nil
|
|
}
|
|
|
|
if err != nil {
|
|
return fmt.Errorf("failed to execute migrate command: %w", err)
|
|
}
|
|
|
|
return nil
|
|
}
|