Add new object to ActiveRecord::Relation

6.1k Views Asked by At

I have venues in my database that a user can query, this of course yields an ActiveRecord::Relation object.

Sometimes there aren't enough venues in the area the user is searching from, so I want to pad it with Foursquare results from their API. Since these results are in a different format than my venues I decided to convert them to my Venue object and add them to the result of the query, but whatever I try seems to fail. This is the relevant block of code:

@venues = @venues.limit(30)
if @venues.count(:all) < 30
  foursquare_client = foursquare_client()
  fq_venues = foursquare_client.explore_venues(ll: params[:ll], radius: 1000, limit: 30 - @venues.count(:all), section: 'food')
  for item in fq_venues.groups[0].items
    fq_venue = item.venue
    location = Location.build_from_foursquare(fq_venue)
    @venues.build(name: fq_venue.name, foursquare_id: fq_venue.id, location: location)
  end
end

After this @venues doesn't contain the newly created Venue objects. I've also tried using the << to add it to the Relation but that also didn't work. Any idea how I can manage this? Different approaches to my problem are also welcome.

1

There are 1 best solutions below

7
On

Convert @venues to array and add to array. @venues.build will return you a new object. but it will not automatically add to the collection.

@venues = @venues.limit(30)
if @venues.all.count < 30 #this converts @venues to array
  foursquare_client = foursquare_client()
  fq_venues = foursquare_client.explore_venues(ll: params[:ll], radius: 1000, limit: 30 -     @venues.count(:all), section: 'food')
  for item in fq_venues.groups[0].items
    fq_venue = item.venue
    location = Location.build_from_foursquare(fq_venue)
    @venues << @venues.build(name: fq_venue.name, foursquare_id: fq_venue.id, location: location)
  end
end