mirror of
https://github.com/Jguer/yay.git
synced 2024-11-06 17:17:22 +01:00
3d5a43c294
bump major
59 lines
1.2 KiB
Go
59 lines
1.2 KiB
Go
package main
|
|
|
|
import (
|
|
"context"
|
|
"errors"
|
|
"fmt"
|
|
|
|
"github.com/Jguer/aur/rpc"
|
|
"github.com/Jguer/votar/pkg/vote"
|
|
"github.com/leonelquinteros/gotext"
|
|
|
|
"github.com/Jguer/yay/v12/pkg/query"
|
|
)
|
|
|
|
type ErrAURVote struct {
|
|
inner error
|
|
pkgName string
|
|
}
|
|
|
|
func (e *ErrAURVote) Error() string {
|
|
return gotext.Get("Unable to handle package vote for: %s. err: %s", e.pkgName, e.inner.Error())
|
|
}
|
|
|
|
func handlePackageVote(ctx context.Context,
|
|
targets []string, aurClient rpc.ClientInterface,
|
|
voteClient *vote.Client, splitN int, upvote bool,
|
|
) error {
|
|
infos, err := query.AURInfoPrint(ctx, aurClient, targets, splitN)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
if len(infos) == 0 {
|
|
fmt.Println(gotext.Get(" there is nothing to do"))
|
|
return nil
|
|
}
|
|
|
|
for i := range infos {
|
|
var err error
|
|
if upvote {
|
|
err = voteClient.Vote(ctx, infos[i].PackageBase)
|
|
} else {
|
|
err = voteClient.Unvote(ctx, infos[i].PackageBase)
|
|
}
|
|
|
|
if err != nil {
|
|
if errors.Is(err, vote.ErrNoCredentials) {
|
|
return errors.New(
|
|
gotext.Get("%s: please set AUR_USERNAME and AUR_PASSWORD environment variables for voting",
|
|
err.Error()))
|
|
}
|
|
|
|
return &ErrAURVote{inner: err, pkgName: infos[i].Name}
|
|
}
|
|
}
|
|
|
|
return nil
|
|
}
|