refactor getReferences

This commit is contained in:
0xmuralik 2023-03-17 11:11:28 +05:30
parent bbb6d2a7ab
commit 5b25f5df99

View File

@ -164,24 +164,24 @@ func GetGQLAuction(auction *auctiontypes.Auction, bids []*auctiontypes.Bid) (*Au
} }
func getReferences(ctx context.Context, resolver QueryResolver, r *registrytypes.RecordType) ([]*Record, error) { func getReferences(ctx context.Context, resolver QueryResolver, r *registrytypes.RecordType) ([]*Record, error) {
var ids []string ids := getIds(r.Attributes)
return resolver.GetRecordsByIds(ctx, ids)
}
// #nosec G705 func getIds(obj map[string]interface{}) []string {
for key := range r.Attributes { var ids []string
//nolint: all for _, val := range obj {
switch r.Attributes[key].(type) { if innerObj, ok := val.(map[string]interface{}); ok {
case interface{}: if _, ok := innerObj["/"]; ok && len(innerObj) == 1 {
if obj, ok := r.Attributes[key].(map[string]interface{}); ok { if _, ok := innerObj["/"].(string); ok {
if _, ok := obj["/"]; ok && len(obj) == 1 { ids = append(ids, innerObj["/"].(string))
if _, ok := obj["/"].(string); ok {
ids = append(ids, obj["/"].(string))
}
} }
} else {
ids = append(ids, getIds(innerObj)...)
} }
} }
} }
return ids
return resolver.GetRecordsByIds(ctx, ids)
} }
func getAttributes(r *registrytypes.RecordType) ([]*KeyValue, error) { func getAttributes(r *registrytypes.RecordType) ([]*KeyValue, error) {