yay/callbacks.go

104 lines
1.9 KiB
Go
Raw Normal View History

package main
import (
"bufio"
"fmt"
"os"
"strconv"
2019-04-23 15:53:20 +00:00
alpm "github.com/Jguer/go-alpm"
"github.com/leonelquinteros/gotext"
2020-07-10 00:36:45 +00:00
"github.com/Jguer/yay/v10/pkg/settings"
"github.com/Jguer/yay/v10/pkg/text"
)
func questionCallback(question alpm.QuestionAny) {
2018-07-31 08:42:17 +00:00
if qi, err := question.QuestionInstallIgnorepkg(); err == nil {
qi.SetInstall(true)
}
qp, err := question.QuestionSelectProvider()
2018-07-31 08:42:17 +00:00
if err != nil {
return
}
2020-07-10 00:36:45 +00:00
if settings.HideMenus {
return
}
2018-07-31 08:42:17 +00:00
size := 0
_ = qp.Providers(config.Runtime.AlpmHandle).ForEach(func(pkg alpm.Package) error {
2018-07-31 08:42:17 +00:00
size++
return nil
})
2020-07-20 07:58:14 +00:00
str := text.Bold(gotext.Get("There are %d providers available for %s:\n", size, qp.Dep()))
2018-07-31 08:42:17 +00:00
size = 1
var db string
_ = qp.Providers(config.Runtime.AlpmHandle).ForEach(func(pkg alpm.Package) error {
2019-02-04 16:56:02 +00:00
thisDB := pkg.DB().Name()
2018-07-31 08:42:17 +00:00
2019-02-04 16:56:02 +00:00
if db != thisDB {
db = thisDB
2020-07-20 07:58:14 +00:00
str += text.SprintOperationInfo(gotext.Get("Repository"), db, "\n ")
2018-07-31 08:42:17 +00:00
}
str += fmt.Sprintf("%d) %s ", size, pkg.Name())
size++
return nil
})
text.OperationInfoln(str)
2018-07-31 08:42:17 +00:00
for {
fmt.Print(gotext.Get("\nEnter a number (default=1): "))
2018-07-31 08:42:17 +00:00
if config.NoConfirm {
fmt.Println()
break
}
2018-07-31 08:42:17 +00:00
reader := bufio.NewReader(os.Stdin)
numberBuf, overflow, err := reader.ReadLine()
if err != nil {
text.Errorln(err)
2018-07-31 08:42:17 +00:00
break
}
if overflow {
text.Errorln(gotext.Get(" Input too long"))
2018-07-31 08:42:17 +00:00
continue
}
if string(numberBuf) == "" {
break
}
num, err := strconv.Atoi(string(numberBuf))
if err != nil {
text.Errorln(gotext.Get("invalid number: %s", string(numberBuf)))
2018-07-31 08:42:17 +00:00
continue
}
if num < 1 || num > size {
text.Errorln(gotext.Get("invalid value: %d is not between %d and %d", num, 1, size))
2018-07-31 08:42:17 +00:00
continue
}
qp.SetUseIndex(num - 1)
break
}
}
2018-07-26 12:35:19 +00:00
func logCallback(level alpm.LogLevel, str string) {
switch level {
case alpm.LogWarning:
2020-06-15 06:59:36 +00:00
text.Warn(str)
2018-07-26 12:35:19 +00:00
case alpm.LogError:
2020-06-15 06:59:36 +00:00
text.Error(str)
2018-07-26 12:35:19 +00:00
}
}