abra/cli/app/restore.go

80 lines
1.9 KiB
Go
Raw Normal View History

package app
import (
2021-08-29 14:25:31 +00:00
"errors"
"fmt"
"io/ioutil"
"os"
"os/exec"
"path"
"strings"
"coopcloud.tech/abra/cli/internal"
2021-09-05 19:37:03 +00:00
"coopcloud.tech/abra/pkg/config"
2021-08-29 14:25:31 +00:00
"github.com/sirupsen/logrus"
"github.com/urfave/cli/v2"
)
var restoreAllServices bool
var restoreAllServicesFlag = &cli.BoolFlag{
Name: "all",
Value: false,
Destination: &restoreAllServices,
2021-08-29 14:25:31 +00:00
Aliases: []string{"a"},
Usage: "Restore all services",
}
var appRestoreCommand = &cli.Command{
Name: "restore",
2021-09-04 23:34:56 +00:00
Usage: "Restore an app from a backup",
2021-12-27 15:12:29 +00:00
Aliases: []string{"rs"},
Flags: []cli.Flag{restoreAllServicesFlag},
ArgsUsage: "<service> [<backup file>]",
2021-08-29 14:25:31 +00:00
Action: func(c *cli.Context) error {
app := internal.ValidateApp(c)
2021-08-29 14:25:31 +00:00
if c.Args().Len() > 1 && restoreAllServices {
internal.ShowSubcommandHelpAndError(c, errors.New("cannot use <service>/<backup file> and '--all' together"))
}
2021-12-25 13:04:07 +00:00
abraSh := path.Join(config.RECIPES_DIR, app.Type, "abra.sh")
2021-08-29 14:25:31 +00:00
if _, err := os.Stat(abraSh); err != nil {
if os.IsNotExist(err) {
2021-12-25 01:03:09 +00:00
logrus.Fatalf("%s does not exist?", abraSh)
2021-08-29 14:25:31 +00:00
}
logrus.Fatal(err)
}
sourceCmd := fmt.Sprintf("source %s", abraSh)
execCmd := "abra_restore"
if !restoreAllServices {
serviceName := c.Args().Get(1)
if serviceName == "" {
internal.ShowSubcommandHelpAndError(c, errors.New("no service(s) target provided"))
}
execCmd = fmt.Sprintf("abra_restore_%s", serviceName)
}
bytes, err := ioutil.ReadFile(abraSh)
if err != nil {
logrus.Fatal(err)
}
if !strings.Contains(string(bytes), execCmd) {
2021-12-25 01:03:09 +00:00
logrus.Fatalf("%s doesn't have a %s function", app.Type, execCmd)
2021-08-29 14:25:31 +00:00
}
backupFile := c.Args().Get(2)
if backupFile != "" {
execCmd = fmt.Sprintf("%s %s", execCmd, backupFile)
}
sourceAndExec := fmt.Sprintf("%s; %s", sourceCmd, execCmd)
cmd := exec.Command("bash", "-c", sourceAndExec)
if err := internal.RunCmd(cmd); err != nil {
2021-08-29 14:25:31 +00:00
logrus.Fatal(err)
}
return nil
},
}