123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216 |
- package main
- import (
- "bufio"
- "fmt"
- "os"
- "strconv"
- "strings"
- "github.com/jguer/yay/aur"
- pac "github.com/jguer/yay/pacman"
- "github.com/jguer/yay/util"
- )
- func usage() {
- fmt.Println(`usage: yay <operation> [...]
- operations:
- yay {-h --help}
- yay {-V --version}
- yay {-D --database} <options> <package(s)>
- yay {-F --files} [options] [package(s)]
- yay {-Q --query} [options] [package(s)]
- yay {-R --remove} [options] <package(s)>
- yay {-S --sync} [options] [package(s)]
- yay {-T --deptest} [options] [package(s)]
- yay {-U --upgrade} [options] <file(s)>
- New operations:
- yay -Qstats displays system information
- yay -Cd remove unneeded dependencies
- yay -G [package(s)] get pkgbuild from ABS or AUR
- New options:
- --topdown shows repository's packages first and then aur's
- --bottomup shows aur's packages first and then repository's
- --noconfirm skip user input on package install
- `)
- }
- var version = "1.116"
- func parser() (op string, options []string, packages []string, err error) {
- if len(os.Args) < 2 {
- err = fmt.Errorf("no operation specified")
- return
- }
- op = "yogurt"
- for _, arg := range os.Args[1:] {
- if arg[0] == '-' && arg[1] != '-' {
- switch arg {
- case "-b":
- util.Build = true
- default:
- op = arg
- }
- continue
- }
- if arg[0] == '-' && arg[1] == '-' {
- switch arg {
- case "--build":
- util.Build = true
- case "--bottomup":
- util.SortMode = util.BottomUp
- case "--topdown":
- util.SortMode = util.TopDown
- case "--complete":
- util.Shell = "sh"
- complete()
- os.Exit(0)
- case "--fcomplete":
- util.Shell = "fish"
- complete()
- os.Exit(0)
- case "--help":
- usage()
- os.Exit(0)
- case "--noconfirm":
- util.NoConfirm = true
- fallthrough
- default:
- options = append(options, arg)
- }
- continue
- }
- packages = append(packages, arg)
- }
- return
- }
- func main() {
- op, options, pkgs, err := parser()
- if err != nil {
- fmt.Println(err)
- os.Exit(1)
- }
- switch op {
- case "-Cd":
- err = cleanDependencies(pkgs)
- case "-G":
- for _, pkg := range pkgs {
- err = getPkgbuild(pkg)
- if err != nil {
- fmt.Println(pkg+":", err)
- }
- }
- case "-Qstats":
- err = localStatistics(version)
- case "-Ss", "-Ssq", "-Sqs":
- if op == "-Ss" {
- util.SearchVerbosity = util.Detailed
- } else {
- util.SearchVerbosity = util.Minimal
- }
- if pkgs != nil {
- err = syncSearch(pkgs)
- }
- case "-S":
- err = install(pkgs, options)
- case "-Syu", "-Suy":
- err = upgrade(options)
- case "-Si":
- err = syncInfo(pkgs, options)
- case "yogurt":
- util.SearchVerbosity = util.NumberMenu
- if pkgs != nil {
- err = numberMenu(pkgs, options)
- }
- default:
- err = passToPacman(op, pkgs, options)
- }
- if err != nil {
- fmt.Println(err)
- os.Exit(1)
- }
- }
- // NumberMenu presents a CLI for selecting packages to install.
- func numberMenu(pkgS []string, flags []string) (err error) {
- var num int
- aq, err := aur.NarrowSearch(pkgS, true)
- if err != nil {
- fmt.Println("Error during AUR search:", err)
- }
- numaq := len(aq)
- pq, numpq, err := pac.Search(pkgS)
- if err != nil {
- return
- }
- if numpq == 0 && numaq == 0 {
- return fmt.Errorf("no packages match search")
- }
- if util.SortMode == util.BottomUp {
- printAURSearch(aq, numpq)
- pq.PrintSearch()
- } else {
- pq.PrintSearch()
- printAURSearch(aq, numpq)
- }
- fmt.Printf("\x1b[32m%s\x1b[0m\nNumbers:", "Type numbers to install. Separate each number with a space.")
- reader := bufio.NewReader(os.Stdin)
- numberBuf, overflow, err := reader.ReadLine()
- if err != nil || overflow {
- fmt.Println(err)
- return
- }
- numberString := string(numberBuf)
- var aurInstall []string
- var repoInstall []string
- result := strings.Fields(numberString)
- for _, numS := range result {
- num, err = strconv.Atoi(numS)
- if err != nil {
- continue
- }
- // Install package
- if num > numaq+numpq-1 || num < 0 {
- continue
- } else if num > numpq-1 {
- if util.SortMode == util.BottomUp {
- aurInstall = append(aurInstall, aq[numaq+numpq-num-1].Name)
- } else {
- aurInstall = append(aurInstall, aq[num-numpq].Name)
- }
- } else {
- if util.SortMode == util.BottomUp {
- repoInstall = append(repoInstall, pq[numpq-num-1].Name)
- } else {
- repoInstall = append(repoInstall, pq[num].Name)
- }
- }
- }
- if len(repoInstall) != 0 {
- pac.Install(repoInstall, flags)
- }
- if len(aurInstall) != 0 {
- aur.Install(aurInstall, flags)
- }
- return nil
- }
|