2022-04-05 07:09:27 +00:00
|
|
|
package gql
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"encoding/json"
|
2022-04-08 07:33:58 +00:00
|
|
|
"reflect"
|
|
|
|
"strconv"
|
|
|
|
|
2022-04-05 07:09:27 +00:00
|
|
|
sdk "github.com/cosmos/cosmos-sdk/types"
|
|
|
|
auctiontypes "github.com/tharsis/ethermint/x/auction/types"
|
|
|
|
bondtypes "github.com/tharsis/ethermint/x/bond/types"
|
|
|
|
nstypes "github.com/tharsis/ethermint/x/nameservice/types"
|
|
|
|
)
|
|
|
|
|
|
|
|
// OwnerAttributeName denotes the owner attribute name for a bond.
|
|
|
|
const OwnerAttributeName = "owner"
|
|
|
|
|
|
|
|
// BondIDAttributeName denotes the record bond ID.
|
|
|
|
const BondIDAttributeName = "bondId"
|
|
|
|
|
|
|
|
// ExpiryTimeAttributeName denotes the record expiry time.
|
|
|
|
const ExpiryTimeAttributeName = "expiryTime"
|
|
|
|
|
|
|
|
func getGQLCoin(coin sdk.Coin) *Coin {
|
|
|
|
gqlCoin := Coin{
|
|
|
|
Type: coin.Denom,
|
|
|
|
Quantity: strconv.FormatInt(coin.Amount.Int64(), 10),
|
|
|
|
}
|
|
|
|
|
|
|
|
return &gqlCoin
|
|
|
|
}
|
|
|
|
|
|
|
|
func getGQLCoins(coins sdk.Coins) []*Coin {
|
|
|
|
gqlCoins := make([]*Coin, len(coins))
|
|
|
|
for index, coin := range coins {
|
|
|
|
gqlCoins[index] = getGQLCoin(coin)
|
|
|
|
}
|
|
|
|
|
|
|
|
return gqlCoins
|
|
|
|
}
|
|
|
|
func GetGQLNameAuthorityRecord(record *nstypes.NameAuthority) (*AuthorityRecord, error) {
|
|
|
|
if record == nil {
|
|
|
|
return nil, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
return &AuthorityRecord{
|
|
|
|
OwnerAddress: record.OwnerAddress,
|
|
|
|
OwnerPublicKey: record.OwnerPublicKey,
|
|
|
|
Height: strconv.FormatUint(record.Height, 10),
|
|
|
|
Status: record.Status,
|
|
|
|
BondID: record.GetBondId(),
|
|
|
|
ExpiryTime: record.GetExpiryTime().String(),
|
|
|
|
}, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func getGQLRecord(ctx context.Context, resolver QueryResolver, record nstypes.Record) (*Record, error) {
|
|
|
|
// Nil record.
|
|
|
|
if record.Deleted {
|
|
|
|
return nil, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
recordType := record.ToRecordType()
|
|
|
|
attributes, err := getAttributes(&recordType)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
references, err := getReferences(ctx, resolver, &recordType)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
return &Record{
|
|
|
|
ID: record.Id,
|
|
|
|
BondID: record.GetBondId(),
|
2022-04-08 07:33:58 +00:00
|
|
|
CreateTime: record.GetCreateTime(),
|
|
|
|
ExpiryTime: record.GetExpiryTime(),
|
2022-04-05 07:09:27 +00:00
|
|
|
Owners: record.GetOwners(),
|
|
|
|
Attributes: attributes,
|
|
|
|
References: references,
|
|
|
|
}, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func getGQLNameRecord(record *nstypes.NameRecord) (*NameRecord, error) {
|
|
|
|
if record == nil {
|
|
|
|
return nil, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
records := make([]*NameRecordEntry, len(record.History))
|
|
|
|
for index, entry := range record.History {
|
|
|
|
records[index] = getNameRecordEntry(entry)
|
|
|
|
}
|
|
|
|
|
|
|
|
return &NameRecord{
|
|
|
|
Latest: getNameRecordEntry(record.Latest),
|
|
|
|
History: records,
|
|
|
|
}, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func getNameRecordEntry(record *nstypes.NameRecordEntry) *NameRecordEntry {
|
|
|
|
return &NameRecordEntry{
|
|
|
|
ID: record.Id,
|
|
|
|
Height: strconv.FormatUint(record.Height, 10),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func getGQLBond(bondObj *bondtypes.Bond) (*Bond, error) {
|
|
|
|
// Nil record.
|
|
|
|
if bondObj == nil {
|
|
|
|
return nil, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
return &Bond{
|
|
|
|
ID: bondObj.Id,
|
|
|
|
Owner: bondObj.Owner,
|
|
|
|
Balance: getGQLCoins(bondObj.Balance),
|
|
|
|
}, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func matchBondOnAttributes(bondObj *bondtypes.Bond, attributes []*KeyValueInput) bool {
|
|
|
|
for _, attr := range attributes {
|
|
|
|
switch attr.Key {
|
|
|
|
case OwnerAttributeName:
|
|
|
|
{
|
|
|
|
if attr.Value.String == nil || bondObj.Owner != *attr.Value.String {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
default:
|
|
|
|
{
|
|
|
|
// Only attributes explicitly listed in the switch are queryable.
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
|
|
|
func getAuctionBid(bid *auctiontypes.Bid) *AuctionBid {
|
|
|
|
return &AuctionBid{
|
|
|
|
BidderAddress: bid.BidderAddress,
|
|
|
|
Status: bid.Status,
|
|
|
|
CommitHash: bid.CommitHash,
|
|
|
|
CommitTime: bid.GetCommitTime(),
|
|
|
|
RevealTime: bid.GetRevealTime(),
|
|
|
|
CommitFee: getGQLCoin(bid.CommitFee),
|
|
|
|
RevealFee: getGQLCoin(bid.RevealFee),
|
|
|
|
BidAmount: getGQLCoin(bid.BidAmount),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func GetGQLAuction(auction *auctiontypes.Auction, bids []*auctiontypes.Bid) (*Auction, error) {
|
|
|
|
if auction == nil {
|
|
|
|
return nil, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
gqlAuction := Auction{
|
|
|
|
ID: auction.Id,
|
|
|
|
Status: auction.Status,
|
|
|
|
OwnerAddress: auction.OwnerAddress,
|
|
|
|
CreateTime: auction.GetCreateTime(),
|
|
|
|
CommitsEndTime: auction.GetCommitsEndTime(),
|
|
|
|
RevealsEndTime: auction.GetRevealsEndTime(),
|
|
|
|
CommitFee: getGQLCoin(auction.CommitFee),
|
|
|
|
RevealFee: getGQLCoin(auction.RevealFee),
|
|
|
|
MinimumBid: getGQLCoin(auction.MinimumBid),
|
|
|
|
WinnerAddress: auction.WinnerAddress,
|
|
|
|
WinnerBid: getGQLCoin(auction.WinningBid),
|
|
|
|
WinnerPrice: getGQLCoin(auction.WinningPrice),
|
|
|
|
}
|
|
|
|
|
|
|
|
auctionBids := make([]*AuctionBid, len(bids))
|
|
|
|
for index, entry := range bids {
|
|
|
|
auctionBids[index] = getAuctionBid(entry)
|
|
|
|
}
|
|
|
|
|
|
|
|
gqlAuction.Bids = auctionBids
|
|
|
|
|
|
|
|
return &gqlAuction, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func getReferences(ctx context.Context, resolver QueryResolver, r *nstypes.RecordType) ([]*Record, error) {
|
|
|
|
var ids []string
|
|
|
|
|
|
|
|
for _, value := range r.Attributes {
|
|
|
|
switch value.(type) {
|
|
|
|
case interface{}:
|
|
|
|
if obj, ok := value.(map[string]interface{}); ok {
|
|
|
|
if _, ok := obj["/"]; ok && len(obj) == 1 {
|
|
|
|
if _, ok := obj["/"].(string); ok {
|
|
|
|
ids = append(ids, obj["/"].(string))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return resolver.GetRecordsByIds(ctx, ids)
|
|
|
|
}
|
|
|
|
|
|
|
|
func getAttributes(r *nstypes.RecordType) ([]*KeyValue, error) {
|
|
|
|
return mapToKeyValuePairs(r.Attributes)
|
|
|
|
}
|
|
|
|
|
|
|
|
func mapToKeyValuePairs(attrs map[string]interface{}) ([]*KeyValue, error) {
|
|
|
|
var kvPairs []*KeyValue
|
|
|
|
|
|
|
|
trueVal := true
|
|
|
|
falseVal := false
|
|
|
|
|
|
|
|
for key, value := range attrs {
|
|
|
|
kvPair := &KeyValue{
|
|
|
|
Key: key,
|
|
|
|
Value: &Value{},
|
|
|
|
}
|
|
|
|
|
|
|
|
switch val := value.(type) {
|
|
|
|
case nil:
|
|
|
|
kvPair.Value.Null = &trueVal
|
|
|
|
case int:
|
|
|
|
kvPair.Value.Int = &val
|
|
|
|
case float64:
|
|
|
|
kvPair.Value.Float = &val
|
|
|
|
case string:
|
|
|
|
kvPair.Value.String = &val
|
|
|
|
case bool:
|
|
|
|
kvPair.Value.Boolean = &val
|
|
|
|
case interface{}:
|
|
|
|
if obj, ok := value.(map[string]interface{}); ok {
|
|
|
|
if _, ok := obj["/"]; ok && len(obj) == 1 {
|
|
|
|
if _, ok := obj["/"].(string); ok {
|
|
|
|
kvPair.Value.Reference = &Reference{
|
|
|
|
ID: obj["/"].(string),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
bytes, err := json.Marshal(obj)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
jsonStr := string(bytes)
|
|
|
|
kvPair.Value.JSON = &jsonStr
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if kvPair.Value.Null == nil {
|
|
|
|
kvPair.Value.Null = &falseVal
|
|
|
|
}
|
|
|
|
|
|
|
|
valueType := reflect.ValueOf(value)
|
|
|
|
if valueType.Kind() == reflect.Slice {
|
|
|
|
bytes, err := json.Marshal(value)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
jsonStr := string(bytes)
|
|
|
|
kvPair.Value.JSON = &jsonStr
|
|
|
|
}
|
|
|
|
|
|
|
|
kvPairs = append(kvPairs, kvPair)
|
|
|
|
}
|
|
|
|
|
|
|
|
return kvPairs, nil
|
|
|
|
}
|
2022-04-13 12:03:42 +00:00
|
|
|
|
|
|
|
func parseRequestAttributes(attrs []*KeyValueInput) []*nstypes.QueryListRecordsRequest_KeyValueInput {
|
|
|
|
kvPairs := []*nstypes.QueryListRecordsRequest_KeyValueInput{}
|
|
|
|
|
|
|
|
for _, value := range attrs {
|
|
|
|
kvPair := &nstypes.QueryListRecordsRequest_KeyValueInput{
|
|
|
|
Key: value.Key,
|
|
|
|
Value: &nstypes.QueryListRecordsRequest_ValueInput{},
|
|
|
|
}
|
|
|
|
|
|
|
|
if value.Value.String != nil {
|
|
|
|
kvPair.Value.String_ = *value.Value.String
|
|
|
|
}
|
|
|
|
|
|
|
|
if value.Value.Int != nil {
|
|
|
|
kvPair.Value.Int = int64(*value.Value.Int)
|
|
|
|
}
|
|
|
|
|
|
|
|
kvPairs = append(kvPairs, kvPair)
|
|
|
|
}
|
|
|
|
|
|
|
|
return kvPairs
|
|
|
|
}
|