yay/yay.go

230 lines
4.8 KiB
Go
Raw Normal View History

2017-04-29 17:12:12 +00:00
package main
import (
"bufio"
"fmt"
"os"
"strconv"
"strings"
"github.com/jguer/yay/aur"
vcs "github.com/jguer/yay/aur/vcs"
2017-05-06 17:32:33 +00:00
"github.com/jguer/yay/config"
2017-04-29 17:12:12 +00:00
pac "github.com/jguer/yay/pacman"
)
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
`)
}
2017-05-07 01:43:49 +00:00
var version = "2.116"
2017-04-29 17:12:12 +00:00
2017-05-07 01:43:49 +00:00
func parser() (op string, options []string, packages []string, changedConfig bool, err error) {
2017-04-29 17:12:12 +00:00
if len(os.Args) < 2 {
err = fmt.Errorf("no operation specified")
return
}
2017-05-07 01:43:49 +00:00
changedConfig = false
2017-04-29 17:12:12 +00:00
op = "yogurt"
for _, arg := range os.Args[1:] {
if arg[0] == '-' && arg[1] != '-' {
switch arg {
default:
op = arg
}
continue
}
if arg[0] == '-' && arg[1] == '-' {
changedConfig = true
2017-04-29 17:12:12 +00:00
switch arg {
case "--gendb":
aur.CreateDevelDB()
vcs.SaveBranchInfo()
os.Exit(0)
case "--devel":
config.YayConf.Devel = true
case "--nodevel":
config.YayConf.Devel = false
2017-04-29 17:12:12 +00:00
case "--topdown":
2017-05-07 01:43:49 +00:00
config.YayConf.SortMode = config.TopDown
2017-04-29 17:12:12 +00:00
case "--complete":
2017-05-06 17:32:33 +00:00
config.YayConf.Shell = "sh"
complete()
2017-04-29 17:12:12 +00:00
os.Exit(0)
case "--fcomplete":
2017-05-06 17:32:33 +00:00
config.YayConf.Shell = "fish"
complete()
2017-04-29 17:12:12 +00:00
os.Exit(0)
case "--help":
usage()
os.Exit(0)
case "--noconfirm":
2017-05-07 01:43:49 +00:00
config.YayConf.NoConfirm = true
2017-04-29 17:12:12 +00:00
fallthrough
default:
options = append(options, arg)
}
continue
}
packages = append(packages, arg)
}
return
}
func main() {
2017-05-07 01:43:49 +00:00
op, options, pkgs, changedConfig, err := parser()
2017-04-29 17:12:12 +00:00
if err != nil {
fmt.Println(err)
os.Exit(1)
}
switch op {
case "-Cd":
err = cleanDependencies(pkgs)
2017-04-29 17:12:12 +00:00
case "-G":
for _, pkg := range pkgs {
err = getPkgbuild(pkg)
2017-04-29 17:12:12 +00:00
if err != nil {
fmt.Println(pkg+":", err)
}
}
case "-Qstats":
err = localStatistics(version)
2017-04-29 17:12:12 +00:00
case "-Ss", "-Ssq", "-Sqs":
if op == "-Ss" {
2017-05-07 01:43:49 +00:00
config.YayConf.SearchMode = config.Detailed
2017-04-29 17:12:12 +00:00
} else {
2017-05-07 01:43:49 +00:00
config.YayConf.SearchMode = config.Minimal
2017-04-29 17:12:12 +00:00
}
if pkgs != nil {
err = syncSearch(pkgs)
2017-04-29 17:12:12 +00:00
}
case "-S":
err = install(pkgs, options)
2017-04-29 17:12:12 +00:00
case "-Syu", "-Suy":
err = upgrade(options)
2017-04-29 17:12:12 +00:00
case "-Si":
err = syncInfo(pkgs, options)
2017-04-29 17:12:12 +00:00
case "yogurt":
2017-05-07 01:43:49 +00:00
config.YayConf.SearchMode = config.NumberMenu
2017-04-29 17:12:12 +00:00
if pkgs != nil {
err = numberMenu(pkgs, options)
}
default:
2017-05-07 01:43:49 +00:00
err = config.PassToPacman(op, pkgs, options)
}
if vcs.Updated {
vcs.SaveBranchInfo()
}
2017-05-07 01:43:49 +00:00
if changedConfig {
config.SaveConfig()
2017-04-29 17:12:12 +00:00
}
2017-05-06 17:32:33 +00:00
config.AlpmHandle.Release()
2017-04-29 17:12:12 +00:00
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)
2017-04-29 17:12:12 +00:00
if err != nil {
fmt.Println("Error during AUR search:", err)
}
numaq := len(aq)
2017-04-29 17:12:12 +00:00
pq, numpq, err := pac.Search(pkgS)
if err != nil {
return
}
if numpq == 0 && numaq == 0 {
return fmt.Errorf("no packages match search")
}
2017-05-07 01:43:49 +00:00
if config.YayConf.SortMode == config.BottomUp {
printAURSearch(aq, numpq)
2017-04-29 17:12:12 +00:00
pq.PrintSearch()
} else {
pq.PrintSearch()
printAURSearch(aq, numpq)
2017-04-29 17:12:12 +00:00
}
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 {
2017-05-07 01:43:49 +00:00
if config.YayConf.SortMode == config.BottomUp {
2017-04-29 17:12:12 +00:00
aurInstall = append(aurInstall, aq[numaq+numpq-num-1].Name)
} else {
aurInstall = append(aurInstall, aq[num-numpq].Name)
}
} else {
2017-05-07 01:43:49 +00:00
if config.YayConf.SortMode == config.BottomUp {
repoInstall = append(repoInstall, pq[numpq-num-1].Name())
2017-04-29 17:12:12 +00:00
} else {
repoInstall = append(repoInstall, pq[num].Name())
2017-04-29 17:12:12 +00:00
}
}
}
if len(repoInstall) != 0 {
err = config.PassToPacman("-S", repoInstall, flags)
2017-04-29 17:12:12 +00:00
}
if len(aurInstall) != 0 {
err = aur.Install(aurInstall, flags)
2017-04-29 17:12:12 +00:00
}
return err
2017-04-29 17:12:12 +00:00
}