def render_opts
{ :text => "Generic API Error", :status => :internal_server_error, :content_type => "text/plain" }
end
+
+ def to_s
+ "Generic API Error"
+ end
end
# Raised when an API object is not found.
def render_opts
{ :text => "Precondition failed: #{@message}", :status => :precondition_failed, :content_type => "text/plain" }
end
+
+ def to_s
+ "Precondition failed: #{@message}"
+ end
end
# Raised when to delete an already-deleted object.
class APIAlreadyDeletedError < APIError
+ def initialize(object = "object", object_id = "")
+ @object, @object_id = object, object_id
+ end
+
+ attr_reader :object, :object_id
+
def render_opts
- { :text => "The object has already been deleted", :status => :gone, :content_type => "text/plain" }
+ { :text => "The #{object} with the id #{object_id} has already been deleted", :status => :gone, :content_type => "text/plain" }
end
end
def render_opts
{ :text => "You need to supply a changeset to be able to make a change", :status => :conflict, :content_type => "text/plain" }
end
+
+ def to_s
+ "You need to supply a changeset to be able to make a change"
+ end
end
# Raised when a diff is uploaded containing many changeset IDs which don't match
", server had: " + latest.to_s + " of " + type + " " + id.to_s,
:status => :conflict, :content_type => "text/plain" }
end
+
+ def to_s
+ "Version mismatch: Provided " + provided.to_s + ", server had: " + latest.to_s + " of " + type + " " + id.to_s
+ end
end
# raised when a two tags have a duplicate key string in an element.
class GeoRSS
def initialize(feed_title='OpenStreetMap GPS Traces', feed_description='OpenStreetMap GPS Traces', feed_url='http://www.openstreetmap.org/traces/')
@doc = XML::Document.new
- @doc.encoding = 'UTF-8'
+ @doc.encoding = XML::Encoding::UTF_8
rss = XML::Node.new 'rss'
@doc.root = rss
class API
def get_xml_doc
doc = XML::Document.new
- doc.encoding = 'UTF-8'
+ doc.encoding = XML::Encoding::UTF_8
root = XML::Node.new 'osm'
root['version'] = API_VERSION
root['generator'] = GENERATOR
Net::HTTP.start('api.hostip.info') do |http|
country = http.get("/country.php?ip=#{ip_address}").body
country = "GB" if country == "UK"
- Net::HTTP.start('ws.geonames.org') do |http|
- xml = REXML::Document.new(http.get("/countryInfo?country=#{country}").body)
- xml.elements.each("geonames/country") do |ele|
- minlon = ele.get_text("bBoxWest").to_s
- minlat = ele.get_text("bBoxSouth").to_s
- maxlon = ele.get_text("bBoxEast").to_s
- maxlat = ele.get_text("bBoxNorth").to_s
- return { :minlon => minlon, :minlat => minlat, :maxlon => maxlon, :maxlat => maxlat }
- end
- end
+ country = Country.find_by_code(country)
+ return { :minlon => country.min_lon, :minlat => country.min_lat, :maxlon => country.max_lon, :maxlat => country.max_lat }
end
end