Refactor LookupAuthorities method
All checks were successful
Integration Tests / test-integration (pull_request) Successful in 2m46s
Build / build (pull_request) Successful in 3m12s
E2E Tests / test-e2e (pull_request) Successful in 5m9s
Unit Tests / test-unit (pull_request) Successful in 2m39s
SDK Tests / sdk_tests (pull_request) Successful in 11m31s
SDK Tests / sdk_tests_auctions (pull_request) Successful in 15m28s
SDK Tests / sdk_tests_nameservice_expiry (pull_request) Successful in 7m2s
All checks were successful
Integration Tests / test-integration (pull_request) Successful in 2m46s
Build / build (pull_request) Successful in 3m12s
E2E Tests / test-e2e (pull_request) Successful in 5m9s
Unit Tests / test-unit (pull_request) Successful in 2m39s
SDK Tests / sdk_tests (pull_request) Successful in 11m31s
SDK Tests / sdk_tests_auctions (pull_request) Successful in 15m28s
SDK Tests / sdk_tests_nameservice_expiry (pull_request) Successful in 7m2s
This commit is contained in:
parent
a32056377c
commit
bfafdbcc41
@ -82,29 +82,11 @@ func (q queryResolver) LookupAuthorities(ctx context.Context, names []string) ([
|
|||||||
}
|
}
|
||||||
|
|
||||||
nameAuthority := res.GetNameAuthority()
|
nameAuthority := res.GetNameAuthority()
|
||||||
gqlNameAuthorityRecord, err := GetGQLNameAuthorityRecord(&nameAuthority)
|
gqlNameAuthorityRecord, err := getAuthorityRecord(nameAuthority, auctionQueryClient)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
|
|
||||||
if nameAuthority.AuctionId != "" {
|
|
||||||
auctionResp, err := auctionQueryClient.GetAuction(context.Background(), &auctiontypes.QueryGetAuctionRequest{Id: nameAuthority.GetAuctionId()})
|
|
||||||
if err != nil {
|
|
||||||
return nil, err
|
|
||||||
}
|
|
||||||
bidsResp, err := auctionQueryClient.GetBids(context.Background(), &auctiontypes.QueryGetBidsRequest{AuctionId: nameAuthority.GetAuctionId()})
|
|
||||||
if err != nil {
|
|
||||||
return nil, err
|
|
||||||
}
|
|
||||||
|
|
||||||
gqlAuctionRecord, err := GetGQLAuction(auctionResp.GetAuction(), bidsResp.GetBids())
|
|
||||||
if err != nil {
|
|
||||||
return nil, err
|
|
||||||
}
|
|
||||||
|
|
||||||
gqlNameAuthorityRecord.Auction = gqlAuctionRecord
|
|
||||||
}
|
|
||||||
|
|
||||||
gqlResponse = append(gqlResponse, gqlNameAuthorityRecord)
|
gqlResponse = append(gqlResponse, gqlNameAuthorityRecord)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -305,8 +305,6 @@ func toRPCAttributes(attrs []*KeyValueInput) []*registrytypes.QueryRecordsReques
|
|||||||
}
|
}
|
||||||
|
|
||||||
func getAuthorityRecord(nameAuthority registrytypes.NameAuthority, auctionQueryClient auctiontypes.QueryClient) (*AuthorityRecord, error) {
|
func getAuthorityRecord(nameAuthority registrytypes.NameAuthority, auctionQueryClient auctiontypes.QueryClient) (*AuthorityRecord, error) {
|
||||||
gqlResponse := &AuthorityRecord{}
|
|
||||||
|
|
||||||
gqlNameAuthorityRecord, err := GetGQLNameAuthorityRecord(&nameAuthority)
|
gqlNameAuthorityRecord, err := GetGQLNameAuthorityRecord(&nameAuthority)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
@ -330,7 +328,5 @@ func getAuthorityRecord(nameAuthority registrytypes.NameAuthority, auctionQueryC
|
|||||||
gqlNameAuthorityRecord.Auction = gqlAuctionRecord
|
gqlNameAuthorityRecord.Auction = gqlAuctionRecord
|
||||||
}
|
}
|
||||||
|
|
||||||
*gqlResponse = *gqlNameAuthorityRecord
|
return gqlNameAuthorityRecord, nil
|
||||||
|
|
||||||
return gqlResponse, nil
|
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user