1
0
mirror of https://github.com/Jguer/yay synced 2024-07-01 07:56:37 +00:00
yay/main.go

147 lines
2.8 KiB
Go
Raw Permalink Normal View History

2018-09-15 17:17:03 +00:00
package main // import "github.com/Jguer/yay"
2018-03-22 15:46:48 +00:00
import (
2021-08-12 16:56:23 +00:00
"context"
"errors"
2018-03-22 15:46:48 +00:00
"os"
"os/exec"
"runtime/debug"
2018-03-22 15:46:48 +00:00
"github.com/leonelquinteros/gotext"
"github.com/Jguer/yay/v12/pkg/db/ialpm"
"github.com/Jguer/yay/v12/pkg/runtime"
"github.com/Jguer/yay/v12/pkg/settings"
"github.com/Jguer/yay/v12/pkg/settings/parser"
"github.com/Jguer/yay/v12/pkg/text"
2018-03-22 15:46:48 +00:00
)
var (
yayVersion = "12.0.4" // To be set by compiler.
localePath = "/usr/share/locale" // To be set by compiler.
)
func initGotext() {
2020-05-08 16:13:51 +00:00
if envLocalePath := os.Getenv("LOCALE_PATH"); envLocalePath != "" {
localePath = envLocalePath
}
if lc := os.Getenv("LANGUAGE"); lc != "" {
gotext.Configure(localePath, lc, "yay")
} else if lc := os.Getenv("LC_ALL"); lc != "" {
gotext.Configure(localePath, lc, "yay")
} else if lc := os.Getenv("LC_MESSAGES"); lc != "" {
gotext.Configure(localePath, lc, "yay")
} else {
gotext.Configure(localePath, os.Getenv("LANG"), "yay")
}
}
2020-08-08 16:43:37 +00:00
func main() {
fallbackLog := text.NewLogger(os.Stdout, os.Stderr, os.Stdin, false, "fallback")
2021-08-12 16:56:23 +00:00
var (
err error
ctx = context.Background()
ret = 0
)
2021-08-11 18:13:28 +00:00
defer func() {
if rec := recover(); rec != nil {
fallbackLog.Errorln(rec)
debug.PrintStack()
}
os.Exit(ret)
}()
2021-08-11 18:13:28 +00:00
2020-08-08 16:43:37 +00:00
initGotext()
2021-08-11 18:13:28 +00:00
2020-08-08 16:43:37 +00:00
if os.Geteuid() == 0 {
fallbackLog.Warnln(gotext.Get("Avoid running yay as root/sudo."))
2020-08-08 16:43:37 +00:00
}
configPath := settings.GetConfigPath()
// Parse config
cfg, err := settings.NewConfig(fallbackLog, configPath, yayVersion)
if err != nil {
2020-08-08 16:43:37 +00:00
if str := err.Error(); str != "" {
fallbackLog.Errorln(str)
2020-08-08 16:43:37 +00:00
}
2021-08-11 18:13:28 +00:00
2020-08-08 16:43:37 +00:00
ret = 1
2021-08-11 18:13:28 +00:00
2020-08-08 16:43:37 +00:00
return
Separate Pacman upgrade and AUR Upgrade by default Currently When performing a system upgrade, Yay will first refresh the database then perform the repo and AUR upgrade. This allows Yay to add some features such as better batch interaction, showing potential dependency problems before the upgrade starts and combined menus showing AUR and repo upgrades together. There has been discussion that this approach is a bad idea. The main issue people have is that the separation of the database refresh and the upgrade could lead to a partial upgrade if Yay fails between the two stages. Personally I do not like this argument, there are valid reasons to Yay to fail between these points. For example there may be dependency or conflict issues during the AUR upgrade. Yay can detect these before any installing actually starts and exit, just like how pacman will when there are dependency problems. If Yay does fail between these points, for the previously mentioned reasons or even a crash then a simple refresh will not cause a partial upgrade by itself. It is then the user's responsibility to either resolve these issues or instead perform an upgrade using pacman directly. My opinions aside, The discussions on the Arch wiki has reached a decision, this method is not recommended. So to follow the decided best practises this behaviour has been disabled by default. This behaviour can be toggled using the --[no]combinedupgrade flag It should be noted that Yay's upgrade menu will not show repo packages unless --combinedupgrade is used.
2018-06-22 13:44:38 +00:00
}
if errS := cfg.RunMigrations(fallbackLog,
settings.DefaultMigrations(), configPath, yayVersion); errS != nil {
fallbackLog.Errorln(errS)
}
cmdArgs := parser.MakeArguments()
2021-08-11 18:13:28 +00:00
// Parse command line
if err = cfg.ParseCommandLine(cmdArgs); err != nil {
2020-08-08 16:43:37 +00:00
if str := err.Error(); str != "" {
fallbackLog.Errorln(str)
2020-08-08 16:43:37 +00:00
}
2021-08-11 18:13:28 +00:00
2020-08-08 16:43:37 +00:00
ret = 1
2021-08-11 18:13:28 +00:00
2020-08-08 16:43:37 +00:00
return
}
if cfg.SaveConfig {
if errS := cfg.Save(configPath, yayVersion); errS != nil {
fallbackLog.Errorln(errS)
2020-08-08 16:43:37 +00:00
}
}
2018-03-22 15:46:48 +00:00
// Build run
run, err := runtime.NewRuntime(cfg, cmdArgs, yayVersion)
if err != nil {
if str := err.Error(); str != "" {
fallbackLog.Errorln(str)
}
ret = 1
return
}
dbExecutor, err := ialpm.NewExecutor(run.PacmanConf, run.Logger.Child("db"))
2020-08-08 16:43:37 +00:00
if err != nil {
if str := err.Error(); str != "" {
fallbackLog.Errorln(str)
2020-08-08 16:43:37 +00:00
}
2021-08-11 18:13:28 +00:00
2020-08-08 16:43:37 +00:00
ret = 1
2021-08-11 18:13:28 +00:00
2020-08-08 16:43:37 +00:00
return
2018-03-22 15:46:48 +00:00
}
defer func() {
if rec := recover(); rec != nil {
fallbackLog.Errorln(rec, string(debug.Stack()))
}
dbExecutor.Cleanup()
}()
if err = handleCmd(ctx, run, cmdArgs, dbExecutor); err != nil {
if str := err.Error(); str != "" {
fallbackLog.Errorln(str)
}
exitError := &exec.ExitError{}
if errors.As(err, &exitError) {
// mirror pacman exit code when applicable
ret = exitError.ExitCode()
return
}
// fallback
2020-08-08 16:43:37 +00:00
ret = 1
2018-09-04 22:05:35 +00:00
}
2018-03-22 15:46:48 +00:00
}