luet/cmd/root.go

132 lines
3.3 KiB
Go
Raw Permalink Normal View History

2019-10-29 16:36:48 +00:00
// Copyright © 2019 Ettore Di Giacinto <mudler@gentoo.org>
//
// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation; either version 2 of the License, or
// (at your option) any later version.
//
// This program 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 this program; if not, see <http://www.gnu.org/licenses/>.
package cmd
import (
"fmt"
2019-10-29 16:36:48 +00:00
"os"
"github.com/mudler/luet/cmd/util"
2021-10-24 15:43:33 +00:00
bus "github.com/mudler/luet/pkg/api/core/bus"
2019-10-29 16:36:48 +00:00
"github.com/spf13/cobra"
"github.com/spf13/viper"
)
var cfgFile string
var Verbose bool
2019-12-27 19:12:08 +00:00
const (
LuetEnvPrefix = "LUET"
2019-12-27 19:12:08 +00:00
)
var license = []string{
2022-04-22 09:41:02 +00:00
"Copyright (C) 2019-2022 Ettore Di Giacinto",
"This program comes with ABSOLUTELY NO WARRANTY.",
"This is free software, and you are welcome to redistribute it under certain conditions.",
2022-04-22 09:41:02 +00:00
"For documentation, visit https://luet.io.",
}
// Build time and commit information.
//
// ⚠️ WARNING: should only be set by "-ldflags".
var (
BuildTime string
Version = "0.0.0"
)
func version() string {
return fmt.Sprintf("%s (Build time: %s)", Version, BuildTime)
}
2019-10-29 16:36:48 +00:00
// RootCmd represents the base command when called without any subcommands
var RootCmd = &cobra.Command{
2020-11-22 19:16:04 +00:00
Use: "luet",
Short: "Container based package manager",
2022-04-22 09:41:02 +00:00
Long: `Luet is a single-binary package manager based on containers to build packages.
For documentation, visit https://luet.io.
2020-11-22 19:16:04 +00:00
To install a package:
$ luet install package
2020-11-22 19:16:04 +00:00
To search for a package in the repositories:
$ luet search package
To list all packages installed in the system:
$ luet search --installed .
2020-11-22 19:16:04 +00:00
To show hidden packages:
$ luet search --hidden package
2020-11-22 19:16:04 +00:00
To build a package, from a tree definition:
$ luet build --tree tree/path package
2020-11-22 19:16:04 +00:00
`,
Version: version(),
2019-12-27 19:12:08 +00:00
PersistentPreRun: func(cmd *cobra.Command, args []string) {
ctx, err := util.InitContext(cmd)
2019-12-27 19:12:08 +00:00
if err != nil {
fmt.Println("failed to load configuration:", err.Error())
os.Exit(1)
2019-12-27 19:12:08 +00:00
}
util.DefaultContext = ctx
2022-04-22 09:41:02 +00:00
util.DisplayVersionBanner(util.DefaultContext, version, license)
viper.BindPFlag("plugin", cmd.Flags().Lookup("plugin"))
plugin := viper.GetStringSlice("plugin")
2021-10-24 15:43:33 +00:00
bus.Manager.Initialize(util.DefaultContext, plugin...)
if len(bus.Manager.Plugins) != 0 {
util.DefaultContext.Info(":lollipop:Enabled plugins:")
for _, p := range bus.Manager.Plugins {
util.DefaultContext.Info(fmt.Sprintf("\t:arrow_right: %s (at %s)", p.Name, p.Executable))
}
}
},
PersistentPostRun: func(cmd *cobra.Command, args []string) {
// Cleanup all tmp directories used by luet
err := util.DefaultContext.Clean()
if err != nil {
util.DefaultContext.Warning("failed on cleanup tmpdir:", err.Error())
}
2019-12-27 19:12:08 +00:00
},
SilenceErrors: true,
2019-12-27 19:12:08 +00:00
}
2019-10-29 16:36:48 +00:00
// Execute adds all child commands to the root command sets flags appropriately.
// This is called by main.main(). It only needs to happen once to the rootCmd.
func Execute() {
2022-04-22 09:41:02 +00:00
util.HandleLock()
2019-10-29 16:36:48 +00:00
if err := RootCmd.Execute(); err != nil {
fmt.Println(err)
2019-10-29 16:36:48 +00:00
os.Exit(-1)
}
}
func init() {
util.InitViper(RootCmd)
2019-10-29 16:36:48 +00:00
}