2021-10-11 22:22:03 +02:00
|
|
|
package menus
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"os"
|
|
|
|
"path/filepath"
|
|
|
|
|
|
|
|
"github.com/leonelquinteros/gotext"
|
|
|
|
|
|
|
|
"github.com/Jguer/yay/v11/pkg/dep"
|
|
|
|
"github.com/Jguer/yay/v11/pkg/intrange"
|
|
|
|
"github.com/Jguer/yay/v11/pkg/settings"
|
|
|
|
"github.com/Jguer/yay/v11/pkg/stringset"
|
|
|
|
"github.com/Jguer/yay/v11/pkg/text"
|
|
|
|
)
|
|
|
|
|
|
|
|
func pkgbuildNumberMenu(buildDir string, bases []dep.Base, installed stringset.StringSet) {
|
|
|
|
toPrint := ""
|
|
|
|
|
|
|
|
for n, base := range bases {
|
|
|
|
pkg := base.Pkgbase()
|
|
|
|
dir := filepath.Join(buildDir, pkg)
|
|
|
|
|
|
|
|
toPrint += fmt.Sprintf(text.Magenta("%3d")+" %-40s", len(bases)-n,
|
|
|
|
text.Bold(base.String()))
|
|
|
|
|
|
|
|
if base.AnyIsInSet(installed) {
|
|
|
|
toPrint += text.Bold(text.Green(gotext.Get(" (Installed)")))
|
|
|
|
}
|
|
|
|
|
|
|
|
if _, err := os.Stat(dir); !os.IsNotExist(err) {
|
|
|
|
toPrint += text.Bold(text.Green(gotext.Get(" (Build Files Exist)")))
|
|
|
|
}
|
|
|
|
|
|
|
|
toPrint += "\n"
|
|
|
|
}
|
|
|
|
|
|
|
|
fmt.Print(toPrint)
|
|
|
|
}
|
|
|
|
|
2021-10-11 23:08:18 +02:00
|
|
|
func selectionMenu(buildDir string, bases []dep.Base, installed stringset.StringSet,
|
|
|
|
message string, noConfirm bool, defaultAnswer string, skipFunc func(string) bool) ([]dep.Base, error) {
|
|
|
|
selected := make([]dep.Base, 0)
|
|
|
|
|
|
|
|
pkgbuildNumberMenu(buildDir, bases, installed)
|
2021-10-11 22:22:03 +02:00
|
|
|
|
2021-10-11 22:38:51 +02:00
|
|
|
text.Infoln(message)
|
|
|
|
text.Infoln(gotext.Get("%s [A]ll [Ab]ort [I]nstalled [No]tInstalled or (1 2 3, 1-3, ^4)", text.Cyan(gotext.Get("[N]one"))))
|
2021-10-11 22:22:03 +02:00
|
|
|
|
2021-10-11 23:08:18 +02:00
|
|
|
selectInput, err := text.GetInput(defaultAnswer, noConfirm)
|
2021-10-11 22:38:51 +02:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
2021-10-11 22:22:03 +02:00
|
|
|
}
|
|
|
|
|
2021-10-11 23:08:18 +02:00
|
|
|
eInclude, eExclude, eOtherInclude, eOtherExclude := intrange.ParseNumberMenu(selectInput)
|
2021-10-11 22:22:03 +02:00
|
|
|
eIsInclude := len(eExclude) == 0 && len(eOtherExclude) == 0
|
|
|
|
|
|
|
|
if eOtherInclude.Get("abort") || eOtherInclude.Get("ab") {
|
2021-10-11 23:08:18 +02:00
|
|
|
return nil, settings.ErrUserAbort{}
|
|
|
|
}
|
|
|
|
|
|
|
|
if eOtherInclude.Get("n") || eOtherInclude.Get("none") {
|
|
|
|
return selected, nil
|
2021-10-11 22:22:03 +02:00
|
|
|
}
|
|
|
|
|
2021-10-11 23:08:18 +02:00
|
|
|
for i, base := range bases {
|
|
|
|
pkg := base.Pkgbase()
|
|
|
|
|
|
|
|
if skipFunc != nil && skipFunc(pkg) {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
anyInstalled := base.AnyIsInSet(installed)
|
|
|
|
|
|
|
|
if !eIsInclude && eExclude.Get(len(bases)-i) {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
if anyInstalled && (eOtherInclude.Get("i") || eOtherInclude.Get("installed")) {
|
|
|
|
selected = append(selected, base)
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
if !anyInstalled && (eOtherInclude.Get("no") || eOtherInclude.Get("notinstalled")) {
|
|
|
|
selected = append(selected, base)
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
if eOtherInclude.Get("a") || eOtherInclude.Get("all") {
|
|
|
|
selected = append(selected, base)
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
if eIsInclude && (eInclude.Get(len(bases)-i) || eOtherInclude.Get(pkg)) {
|
|
|
|
selected = append(selected, base)
|
|
|
|
}
|
|
|
|
|
|
|
|
if !eIsInclude && (!eExclude.Get(len(bases)-i) && !eOtherExclude.Get(pkg)) {
|
|
|
|
selected = append(selected, base)
|
2021-10-11 22:22:03 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-10-11 23:08:18 +02:00
|
|
|
return selected, nil
|
2021-10-11 22:22:03 +02:00
|
|
|
}
|