36 lines
791 B
Go
36 lines
791 B
Go
package cardsinfo
|
|
|
|
import (
|
|
"context"
|
|
|
|
scryfall "github.com/BlueMonday/go-scryfall"
|
|
"github.com/pkg/errors"
|
|
)
|
|
|
|
func GetPrices(name string) ([]CardPrice, error) {
|
|
client, err := scryfall.NewClient()
|
|
if err != nil {
|
|
return nil, errors.Wrap(err, "Cannot fetch prices")
|
|
}
|
|
ctx := context.Background()
|
|
opts := scryfall.SearchCardsOptions{
|
|
Unique: scryfall.UniqueModePrints,
|
|
}
|
|
resp, err := client.SearchCards(ctx, name, opts)
|
|
var prices []CardPrice
|
|
for _, card := range resp.Cards {
|
|
foilString := ""
|
|
if card.Foil {
|
|
foilString = "(Foil)"
|
|
}
|
|
edition := card.Set + foilString
|
|
cardPrice := CardPrice {
|
|
Edition: edition,
|
|
Price: card.Prices.USD,
|
|
Name: card.Name,
|
|
Link: card.PurchaseURIs.TCGPlayer,
|
|
}
|
|
prices = append(prices, cardPrice)
|
|
}
|
|
return prices, nil
|
|
}
|