2021-09-04 23:55:10 +00:00
|
|
|
package internal
|
|
|
|
|
|
|
|
import (
|
|
|
|
"errors"
|
2021-09-05 22:26:45 +00:00
|
|
|
"os"
|
2021-09-04 23:55:10 +00:00
|
|
|
|
2021-09-05 21:17:35 +00:00
|
|
|
"coopcloud.tech/abra/pkg/app"
|
2021-09-05 20:04:48 +00:00
|
|
|
"coopcloud.tech/abra/pkg/config"
|
2021-09-05 19:37:03 +00:00
|
|
|
"coopcloud.tech/abra/pkg/recipe"
|
2021-09-04 23:55:10 +00:00
|
|
|
"github.com/sirupsen/logrus"
|
|
|
|
"github.com/urfave/cli/v2"
|
|
|
|
)
|
|
|
|
|
2021-09-05 22:45:13 +00:00
|
|
|
// ValidateRecipe ensures the recipe arg is valid.
|
|
|
|
func ValidateRecipe(c *cli.Context) string {
|
2021-09-04 23:55:10 +00:00
|
|
|
recipeName := c.Args().First()
|
|
|
|
|
|
|
|
if recipeName == "" {
|
|
|
|
ShowSubcommandHelpAndError(c, errors.New("no recipe provided"))
|
|
|
|
}
|
|
|
|
|
|
|
|
if err := recipe.EnsureExists(recipeName); err != nil {
|
|
|
|
logrus.Fatal(err)
|
2021-09-05 22:45:13 +00:00
|
|
|
os.Exit(1)
|
2021-09-04 23:55:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return recipeName
|
|
|
|
}
|
2021-09-05 20:04:48 +00:00
|
|
|
|
2021-09-05 22:26:45 +00:00
|
|
|
// ValidateApp ensures the app name arg is valid.
|
2021-09-05 21:17:35 +00:00
|
|
|
func ValidateApp(c *cli.Context) config.App {
|
2021-09-05 20:04:48 +00:00
|
|
|
appName := c.Args().First()
|
|
|
|
|
|
|
|
if appName == "" {
|
|
|
|
ShowSubcommandHelpAndError(c, errors.New("no app provided"))
|
|
|
|
}
|
|
|
|
|
2021-09-05 21:17:35 +00:00
|
|
|
app, err := app.Get(appName)
|
2021-09-05 20:04:48 +00:00
|
|
|
if err != nil {
|
|
|
|
logrus.Fatal(err)
|
2021-09-05 22:26:45 +00:00
|
|
|
os.Exit(1)
|
2021-09-05 20:04:48 +00:00
|
|
|
}
|
|
|
|
|
2021-09-05 21:17:35 +00:00
|
|
|
return app
|
2021-09-05 20:04:48 +00:00
|
|
|
}
|