X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/2875a2c4b36820db085e8b5ff5521650a692c3ad..edaddbedaec78a252e988e2271962407e64483fd:/app/models/user.rb diff --git a/app/models/user.rb b/app/models/user.rb index 308e0a2ce..241c1396f 100644 --- a/app/models/user.rb +++ b/app/models/user.rb @@ -98,13 +98,13 @@ class User < ActiveRecord::Base if self.home_lon and self.home_lat gc = OSM::GreatCircle.new(self.home_lat, self.home_lon) bounds = gc.bounds(radius) - nearby = User.find(:all, :conditions => ["visible = ? and home_lat between #{bounds[:minlat]} and #{bounds[:maxlat]} and home_lon between #{bounds[:minlon]} and #{bounds[:maxlon]} and data_public = ? and id != #{self.id}", true, true]) - nearby.delete_if { |u| gc.distance(u.home_lat, u.home_lon) > radius } - nearby.sort! { |u1,u2| gc.distance(u1.home_lat, u1.home_lon) <=> gc.distance(u2.home_lat, u2.home_lon) } + sql_for_distance = gc.sql_for_distance("home_lat", "home_lon") + nearby = User.find(:all, + :conditions => ["id != ? AND visible = ? AND data_public = ? AND #{sql_for_distance} <= ?", id, true, true, radius], :order => sql_for_distance, :limit => num) else nearby = [] end - return nearby.first(num) + return nearby end def distance(nearby_user)