1
0
mirror of https://github.com/Jguer/yay synced 2024-07-08 04:16:16 +00:00
yay/get.go

80 lines
1.7 KiB
Go
Raw Normal View History

package main
import (
2021-08-12 16:56:23 +00:00
"context"
"fmt"
"net/http"
"os"
"strings"
"github.com/leonelquinteros/gotext"
2021-09-08 20:28:08 +00:00
"github.com/Jguer/yay/v11/pkg/download"
"github.com/Jguer/yay/v11/pkg/settings"
"github.com/Jguer/yay/v11/pkg/settings/parser"
"github.com/Jguer/yay/v11/pkg/text"
)
2021-08-11 18:13:28 +00:00
// yay -Gp.
func printPkgbuilds(dbExecutor download.DBSearcher, httpClient *http.Client, targets []string,
mode parser.TargetMode, aurURL string) error {
pkgbuilds, err := download.PKGBUILDs(dbExecutor, httpClient, targets, aurURL, mode)
if err != nil {
text.Errorln(err)
}
if len(pkgbuilds) != 0 {
for target, pkgbuild := range pkgbuilds {
fmt.Printf("\n\n# %s\n\n", target)
fmt.Print(string(pkgbuild))
}
}
if len(pkgbuilds) != len(targets) {
missing := []string{}
2021-08-11 18:13:28 +00:00
for _, target := range targets {
if _, ok := pkgbuilds[target]; !ok {
missing = append(missing, target)
}
}
2021-08-11 18:13:28 +00:00
text.Warnln(gotext.Get("Unable to find the following packages:"), strings.Join(missing, ", "))
return fmt.Errorf("")
}
return nil
}
2021-08-11 18:13:28 +00:00
// yay -G.
2021-08-12 16:56:23 +00:00
func getPkgbuilds(ctx context.Context, dbExecutor download.DBSearcher,
config *settings.Configuration, targets []string, force bool) error {
wd, err := os.Getwd()
if err != nil {
return err
}
2021-08-11 18:13:28 +00:00
2021-08-12 16:56:23 +00:00
cloned, errD := download.PKGBUILDRepos(ctx, dbExecutor,
config.Runtime.CmdBuilder, targets, config.Runtime.Mode, config.AURURL, wd, force)
if errD != nil {
text.Errorln(errD)
}
if len(targets) != len(cloned) {
missing := []string{}
2021-08-11 18:13:28 +00:00
for _, target := range targets {
if _, ok := cloned[target]; !ok {
missing = append(missing, target)
}
}
2021-08-11 18:13:28 +00:00
text.Warnln(gotext.Get("Unable to find the following packages:"), strings.Join(missing, ", "))
err = fmt.Errorf("")
}
return err
}