123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850 |
- package main
- import (
- "bufio"
- "os"
- "strconv"
- "strings"
- "github.com/leonelquinteros/gotext"
- rpc "github.com/mikkeloscar/aur"
- "github.com/pkg/errors"
- "github.com/Jguer/yay/v10/pkg/settings"
- "github.com/Jguer/yay/v10/pkg/stringset"
- )
- // Parses command line arguments in a way we can interact with programmatically but
- // also in a way that can easily be passed to pacman later on.
- type arguments struct {
- op string
- options map[string]string
- globals map[string]string
- doubles stringset.StringSet // Tracks args passed twice such as -yy and -dd
- targets []string
- }
- func makeArguments() *arguments {
- return &arguments{
- "",
- make(map[string]string),
- make(map[string]string),
- make(stringset.StringSet),
- make([]string, 0),
- }
- }
- func (parser *arguments) copyGlobal() (cp *arguments) {
- cp = makeArguments()
- for k, v := range parser.globals {
- cp.globals[k] = v
- }
- return
- }
- func (parser *arguments) copy() (cp *arguments) {
- cp = makeArguments()
- cp.op = parser.op
- for k, v := range parser.options {
- cp.options[k] = v
- }
- for k, v := range parser.globals {
- cp.globals[k] = v
- }
- cp.targets = make([]string, len(parser.targets))
- copy(cp.targets, parser.targets)
- for k, v := range parser.doubles {
- cp.doubles[k] = v
- }
- return
- }
- func (parser *arguments) delArg(options ...string) {
- for _, option := range options {
- delete(parser.options, option)
- delete(parser.globals, option)
- delete(parser.doubles, option)
- }
- }
- func (parser *arguments) needRoot() bool {
- if parser.existsArg("h", "help") {
- return false
- }
- switch parser.op {
- case "D", "database":
- if parser.existsArg("k", "check") {
- return false
- }
- return true
- case "F", "files":
- if parser.existsArg("y", "refresh") {
- return true
- }
- return false
- case "Q", "query":
- if parser.existsArg("k", "check") {
- return true
- }
- return false
- case "R", "remove":
- if parser.existsArg("p", "print", "print-format") {
- return false
- }
- return true
- case "S", "sync":
- if parser.existsArg("y", "refresh") {
- return true
- }
- if parser.existsArg("p", "print", "print-format") {
- return false
- }
- if parser.existsArg("s", "search") {
- return false
- }
- if parser.existsArg("l", "list") {
- return false
- }
- if parser.existsArg("g", "groups") {
- return false
- }
- if parser.existsArg("i", "info") {
- return false
- }
- if parser.existsArg("c", "clean") && mode == modeAUR {
- return false
- }
- return true
- case "U", "upgrade":
- return true
- default:
- return false
- }
- }
- func (parser *arguments) addOP(op string) (err error) {
- if parser.op != "" {
- err = errors.New(gotext.Get("only one operation may be used at a time"))
- return
- }
- parser.op = op
- return
- }
- func (parser *arguments) addParam(option, arg string) (err error) {
- if !isArg(option) {
- return errors.New(gotext.Get("invalid option '%s'", option))
- }
- if isOp(option) {
- err = parser.addOP(option)
- return
- }
- switch {
- case parser.existsArg(option):
- parser.doubles[option] = struct{}{}
- case isGlobal(option):
- parser.globals[option] = arg
- default:
- parser.options[option] = arg
- }
- return
- }
- func (parser *arguments) addArg(options ...string) (err error) {
- for _, option := range options {
- err = parser.addParam(option, "")
- if err != nil {
- return
- }
- }
- return
- }
- // Multiple args acts as an OR operator
- func (parser *arguments) existsArg(options ...string) bool {
- for _, option := range options {
- _, exists := parser.options[option]
- if exists {
- return true
- }
- _, exists = parser.globals[option]
- if exists {
- return true
- }
- }
- return false
- }
- func (parser *arguments) getArg(options ...string) (arg string, double, exists bool) {
- existCount := 0
- for _, option := range options {
- var value string
- value, exists = parser.options[option]
- if exists {
- arg = value
- existCount++
- _, exists = parser.doubles[option]
- if exists {
- existCount++
- }
- }
- value, exists = parser.globals[option]
- if exists {
- arg = value
- existCount++
- _, exists = parser.doubles[option]
- if exists {
- existCount++
- }
- }
- }
- double = existCount >= 2
- exists = existCount >= 1
- return arg, double, exists
- }
- func (parser *arguments) addTarget(targets ...string) {
- parser.targets = append(parser.targets, targets...)
- }
- func (parser *arguments) clearTargets() {
- parser.targets = make([]string, 0)
- }
- // Multiple args acts as an OR operator
- func (parser *arguments) existsDouble(options ...string) bool {
- for _, option := range options {
- _, exists := parser.doubles[option]
- if exists {
- return true
- }
- }
- return false
- }
- func (parser *arguments) formatArgs() (args []string) {
- var op string
- if parser.op != "" {
- op = formatArg(parser.op)
- }
- args = append(args, op)
- for option, arg := range parser.options {
- if option == "--" {
- continue
- }
- formattedOption := formatArg(option)
- args = append(args, formattedOption)
- if hasParam(option) {
- args = append(args, arg)
- }
- if parser.existsDouble(option) {
- args = append(args, formattedOption)
- }
- }
- return
- }
- func (parser *arguments) formatGlobals() (args []string) {
- for option, arg := range parser.globals {
- formattedOption := formatArg(option)
- args = append(args, formattedOption)
- if hasParam(option) {
- args = append(args, arg)
- }
- if parser.existsDouble(option) {
- args = append(args, formattedOption)
- }
- }
- return
- }
- func formatArg(arg string) string {
- if len(arg) > 1 {
- arg = "--" + arg
- } else {
- arg = "-" + arg
- }
- return arg
- }
- func isArg(arg string) bool {
- switch arg {
- case "-", "--":
- case "ask":
- case "D", "database":
- case "Q", "query":
- case "R", "remove":
- case "S", "sync":
- case "T", "deptest":
- case "U", "upgrade":
- case "F", "files":
- case "V", "version":
- case "h", "help":
- case "Y", "yay":
- case "P", "show":
- case "G", "getpkgbuild":
- case "b", "dbpath":
- case "r", "root":
- case "v", "verbose":
- case "arch":
- case "cachedir":
- case "color":
- case "config":
- case "debug":
- case "gpgdir":
- case "hookdir":
- case "logfile":
- case "noconfirm":
- case "confirm":
- case "disable-download-timeout":
- case "sysroot":
- case "d", "nodeps":
- case "assume-installed":
- case "dbonly":
- case "absdir":
- case "noprogressbar":
- case "noscriptlet":
- case "p", "print":
- case "print-format":
- case "asdeps":
- case "asexplicit":
- case "ignore":
- case "ignoregroup":
- case "needed":
- case "overwrite":
- case "f", "force":
- case "c", "changelog":
- case "deps":
- case "e", "explicit":
- case "g", "groups":
- case "i", "info":
- case "k", "check":
- case "l", "list":
- case "m", "foreign":
- case "n", "native":
- case "o", "owns":
- case "file":
- case "q", "quiet":
- case "s", "search":
- case "t", "unrequired":
- case "u", "upgrades":
- case "cascade":
- case "nosave":
- case "recursive":
- case "unneeded":
- case "clean":
- case "sysupgrade":
- case "w", "downloadonly":
- case "y", "refresh":
- case "x", "regex":
- case "machinereadable":
- // yay options
- case "aururl":
- case "save":
- case "afterclean", "cleanafter":
- case "noafterclean", "nocleanafter":
- case "devel":
- case "nodevel":
- case "timeupdate":
- case "notimeupdate":
- case "topdown":
- case "bottomup":
- case "completioninterval":
- case "sortby":
- case "searchby":
- case "redownload":
- case "redownloadall":
- case "noredownload":
- case "rebuild":
- case "rebuildall":
- case "rebuildtree":
- case "norebuild":
- case "batchinstall":
- case "nobatchinstall":
- case "answerclean":
- case "noanswerclean":
- case "answerdiff":
- case "noanswerdiff":
- case "answeredit":
- case "noansweredit":
- case "answerupgrade":
- case "noanswerupgrade":
- case "gpgflags":
- case "mflags":
- case "gitflags":
- case "builddir":
- case "editor":
- case "editorflags":
- case "makepkg":
- case "makepkgconf":
- case "nomakepkgconf":
- case "pacman":
- case "git":
- case "gpg":
- case "sudo":
- case "sudoflags":
- case "requestsplitn":
- case "sudoloop":
- case "nosudoloop":
- case "provides":
- case "noprovides":
- case "pgpfetch":
- case "nopgpfetch":
- case "upgrademenu":
- case "noupgrademenu":
- case "cleanmenu":
- case "nocleanmenu":
- case "diffmenu":
- case "nodiffmenu":
- case "editmenu":
- case "noeditmenu":
- case "useask":
- case "nouseask":
- case "combinedupgrade":
- case "nocombinedupgrade":
- case "a", "aur":
- case "repo":
- case "removemake":
- case "noremovemake":
- case "askremovemake":
- case "complete":
- case "stats":
- case "news":
- case "gendb":
- case "currentconfig":
- default:
- return false
- }
- return true
- }
- func handleConfig(option, value string) bool {
- switch option {
- case "aururl":
- config.AURURL = value
- case "save":
- shouldSaveConfig = true
- case "afterclean", "cleanafter":
- config.CleanAfter = true
- case "noafterclean", "nocleanafter":
- config.CleanAfter = false
- case "devel":
- config.Devel = true
- case "nodevel":
- config.Devel = false
- case "timeupdate":
- config.TimeUpdate = true
- case "notimeupdate":
- config.TimeUpdate = false
- case "topdown":
- config.SortMode = settings.TopDown
- case "bottomup":
- config.SortMode = settings.BottomUp
- case "completioninterval":
- n, err := strconv.Atoi(value)
- if err == nil {
- config.CompletionInterval = n
- }
- case "sortby":
- config.SortBy = value
- case "searchby":
- config.SearchBy = value
- case "noconfirm":
- config.NoConfirm = true
- case "config":
- config.PacmanConf = value
- case "redownload":
- config.ReDownload = "yes"
- case "redownloadall":
- config.ReDownload = "all"
- case "noredownload":
- config.ReDownload = "no"
- case "rebuild":
- config.ReBuild = "yes"
- case "rebuildall":
- config.ReBuild = "all"
- case "rebuildtree":
- config.ReBuild = "tree"
- case "norebuild":
- config.ReBuild = "no"
- case "batchinstall":
- config.BatchInstall = true
- case "nobatchinstall":
- config.BatchInstall = false
- case "answerclean":
- config.AnswerClean = value
- case "noanswerclean":
- config.AnswerClean = ""
- case "answerdiff":
- config.AnswerDiff = value
- case "noanswerdiff":
- config.AnswerDiff = ""
- case "answeredit":
- config.AnswerEdit = value
- case "noansweredit":
- config.AnswerEdit = ""
- case "answerupgrade":
- config.AnswerUpgrade = value
- case "noanswerupgrade":
- config.AnswerUpgrade = ""
- case "gpgflags":
- config.GpgFlags = value
- case "mflags":
- config.MFlags = value
- case "gitflags":
- config.GitFlags = value
- case "builddir":
- config.BuildDir = value
- case "absdir":
- config.ABSDir = value
- case "editor":
- config.Editor = value
- case "editorflags":
- config.EditorFlags = value
- case "makepkg":
- config.MakepkgBin = value
- case "makepkgconf":
- config.MakepkgConf = value
- case "nomakepkgconf":
- config.MakepkgConf = ""
- case "pacman":
- config.PacmanBin = value
- case "git":
- config.GitBin = value
- case "gpg":
- config.GpgBin = value
- case "sudo":
- config.SudoBin = value
- case "sudoflags":
- config.SudoFlags = value
- case "requestsplitn":
- n, err := strconv.Atoi(value)
- if err == nil && n > 0 {
- config.RequestSplitN = n
- }
- case "sudoloop":
- config.SudoLoop = true
- case "nosudoloop":
- config.SudoLoop = false
- case "provides":
- config.Provides = true
- case "noprovides":
- config.Provides = false
- case "pgpfetch":
- config.PGPFetch = true
- case "nopgpfetch":
- config.PGPFetch = false
- case "upgrademenu":
- config.UpgradeMenu = true
- case "noupgrademenu":
- config.UpgradeMenu = false
- case "cleanmenu":
- config.CleanMenu = true
- case "nocleanmenu":
- config.CleanMenu = false
- case "diffmenu":
- config.DiffMenu = true
- case "nodiffmenu":
- config.DiffMenu = false
- case "editmenu":
- config.EditMenu = true
- case "noeditmenu":
- config.EditMenu = false
- case "useask":
- config.UseAsk = true
- case "nouseask":
- config.UseAsk = false
- case "combinedupgrade":
- config.CombinedUpgrade = true
- case "nocombinedupgrade":
- config.CombinedUpgrade = false
- case "a", "aur":
- mode = modeAUR
- case "repo":
- mode = modeRepo
- case "removemake":
- config.RemoveMake = "yes"
- case "noremovemake":
- config.RemoveMake = "no"
- case "askremovemake":
- config.RemoveMake = "ask"
- default:
- return false
- }
- return true
- }
- func isOp(op string) bool {
- switch op {
- case "V", "version":
- case "D", "database":
- case "F", "files":
- case "Q", "query":
- case "R", "remove":
- case "S", "sync":
- case "T", "deptest":
- case "U", "upgrade":
- // yay specific
- case "Y", "yay":
- case "P", "show":
- case "G", "getpkgbuild":
- default:
- return false
- }
- return true
- }
- func isGlobal(op string) bool {
- switch op {
- case "b", "dbpath":
- case "r", "root":
- case "v", "verbose":
- case "arch":
- case "cachedir":
- case "color":
- case "config":
- case "debug":
- case "gpgdir":
- case "hookdir":
- case "logfile":
- case "noconfirm":
- case "confirm":
- default:
- return false
- }
- return true
- }
- func hasParam(arg string) bool {
- switch arg {
- case "dbpath", "b":
- case "root", "r":
- case "sysroot":
- case "config":
- case "ignore":
- case "assume-installed":
- case "overwrite":
- case "ask":
- case "cachedir":
- case "hookdir":
- case "logfile":
- case "ignoregroup":
- case "arch":
- case "print-format":
- case "gpgdir":
- case "color":
- // yay params
- case "aururl":
- case "mflags":
- case "gpgflags":
- case "gitflags":
- case "builddir":
- case "absdir":
- case "editor":
- case "editorflags":
- case "makepkg":
- case "makepkgconf":
- case "pacman":
- case "git":
- case "gpg":
- case "sudo":
- case "sudoflags":
- case "requestsplitn":
- case "answerclean":
- case "answerdiff":
- case "answeredit":
- case "answerupgrade":
- case "completioninterval":
- case "sortby":
- case "searchby":
- default:
- return false
- }
- return true
- }
- // Parses short hand options such as:
- // -Syu -b/some/path -
- func (parser *arguments) parseShortOption(arg, param string) (usedNext bool, err error) {
- if arg == "-" {
- err = parser.addArg("-")
- return
- }
- arg = arg[1:]
- for k, _char := range arg {
- char := string(_char)
- if hasParam(char) {
- if k < len(arg)-1 {
- err = parser.addParam(char, arg[k+1:])
- } else {
- usedNext = true
- err = parser.addParam(char, param)
- }
- break
- } else {
- err = parser.addArg(char)
- if err != nil {
- return
- }
- }
- }
- return
- }
- // Parses full length options such as:
- // --sync --refresh --sysupgrade --dbpath /some/path --
- func (parser *arguments) parseLongOption(arg, param string) (usedNext bool, err error) {
- if arg == "--" {
- err = parser.addArg(arg)
- return
- }
- arg = arg[2:]
- switch split := strings.SplitN(arg, "=", 2); {
- case len(split) == 2:
- err = parser.addParam(split[0], split[1])
- case hasParam(arg):
- err = parser.addParam(arg, param)
- usedNext = true
- default:
- err = parser.addArg(arg)
- }
- return
- }
- func (parser *arguments) parseStdin() error {
- scanner := bufio.NewScanner(os.Stdin)
- scanner.Split(bufio.ScanLines)
- for scanner.Scan() {
- parser.addTarget(scanner.Text())
- }
- return os.Stdin.Close()
- }
- func (parser *arguments) parseCommandLine() error {
- args := os.Args[1:]
- usedNext := false
- if len(args) < 1 {
- if _, err := parser.parseShortOption("-Syu", ""); err != nil {
- return err
- }
- } else {
- for k, arg := range args {
- var nextArg string
- if usedNext {
- usedNext = false
- continue
- }
- if k+1 < len(args) {
- nextArg = args[k+1]
- }
- var err error
- switch {
- case parser.existsArg("--"):
- parser.addTarget(arg)
- case strings.HasPrefix(arg, "--"):
- usedNext, err = parser.parseLongOption(arg, nextArg)
- case strings.HasPrefix(arg, "-"):
- usedNext, err = parser.parseShortOption(arg, nextArg)
- default:
- parser.addTarget(arg)
- }
- if err != nil {
- return err
- }
- }
- }
- if parser.op == "" {
- parser.op = "Y"
- }
- if parser.existsArg("-") {
- if err := parser.parseStdin(); err != nil {
- return err
- }
- parser.delArg("-")
- file, err := os.Open("/dev/tty")
- if err != nil {
- return err
- }
- os.Stdin = file
- }
- cmdArgs.extractYayOptions()
- return nil
- }
- func (parser *arguments) extractYayOptions() {
- for option, value := range parser.options {
- if handleConfig(option, value) {
- parser.delArg(option)
- }
- }
- for option, value := range parser.globals {
- if handleConfig(option, value) {
- parser.delArg(option)
- }
- }
- rpc.AURURL = strings.TrimRight(config.AURURL, "/") + "/rpc.php?"
- config.AURURL = strings.TrimRight(config.AURURL, "/")
- }
|