X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/d3d0da03286d7bf9dc06027f8edb802a3102bb0b..8c2d6cbed676aa23bc5361fa0e976c045c541196:/lib/osm.rb diff --git a/lib/osm.rb b/lib/osm.rb index a0fcef8b9..46f37036f 100644 --- a/lib/osm.rb +++ b/lib/osm.rb @@ -364,6 +364,17 @@ module OSM end end + # Raised when a size limit is exceeded + class APISizeLimitExceeded < APIError + def initialize + super("Size limit exceeded") + end + + def status + :payload_too_large + end + end + # Helper methods for going to/from mercator and lat/lng. class Mercator include Math @@ -524,7 +535,8 @@ module OSM # Return the HTTP client to use def self.http_client - @http_client ||= Faraday.new(:request => { :timeout => 15 }) + @http_client ||= Faraday.new(:request => { :timeout => 15 }, + :headers => { :user_agent => Settings.server_url }) end # Return the MaxMindDB database handle