1 # The OSM module provides support functions for OSM.
5 require 'rexml/parsers/sax2parser'
10 if defined?(SystemTimer)
17 # The base class for API Errors.
18 class APIError < RuntimeError
20 :internal_server_error
28 # Raised when an API object is not found.
29 class APINotFoundError < APIError
39 # Raised when a precondition to an API action fails sanity check.
40 class APIPreconditionFailedError < APIError
41 def initialize(message = "")
50 "Precondition failed: #{@message}"
54 # Raised when to delete an already-deleted object.
55 class APIAlreadyDeletedError < APIError
56 def initialize(object = "object", object_id = "")
57 @object, @object_id = object, object_id
60 attr_reader :object, :object_id
67 "The #{object} with the id #{object_id} has already been deleted"
71 # Raised when the user logged in isn't the same as the changeset
72 class APIUserChangesetMismatchError < APIError
78 "The user doesn't own that changeset"
82 # Raised when the changeset provided is already closed
83 class APIChangesetAlreadyClosedError < APIError
84 def initialize(changeset)
85 @changeset = changeset
88 attr_reader :changeset
95 "The changeset #{@changeset.id} was closed at #{@changeset.closed_at}"
99 # Raised when a change is expecting a changeset, but the changeset doesn't exist
100 class APIChangesetMissingError < APIError
106 "You need to supply a changeset to be able to make a change"
110 # Raised when a diff is uploaded containing many changeset IDs which don't match
111 # the changeset ID that the diff was uploaded to.
112 class APIChangesetMismatchError < APIError
113 def initialize(provided, allowed)
114 @provided, @allowed = provided, allowed
122 "Changeset mismatch: Provided #{@provided} but only #{@allowed} is allowed"
126 # Raised when a diff upload has an unknown action. You can only have create,
128 class APIChangesetActionInvalid < APIError
129 def initialize(provided)
138 "Unknown action #{@provided}, choices are create, modify, delete"
142 # Raised when bad XML is encountered which stops things parsing as
144 class APIBadXMLError < APIError
145 def initialize(model, xml, message="")
146 @model, @xml, @message = model, xml, message
154 "Cannot parse valid #{@model} from xml string #{@xml}. #{@message}"
158 # Raised when the provided version is not equal to the latest in the db.
159 class APIVersionMismatchError < APIError
160 def initialize(id, type, provided, latest)
161 @id, @type, @provided, @latest = id, type, provided, latest
164 attr_reader :provided, :latest, :id, :type
171 "Version mismatch: Provided #{provided}, server had: #{latest} of #{type} #{id}"
175 # raised when a two tags have a duplicate key string in an element.
176 # this is now forbidden by the API.
177 class APIDuplicateTagsError < APIError
178 def initialize(type, id, tag_key)
179 @type, @id, @tag_key = type, id, tag_key
182 attr_reader :type, :id, :tag_key
189 "Element #{@type}/#{@id} has duplicate tags with key #{@tag_key}"
193 # Raised when a way has more than the configured number of way nodes.
194 # This prevents ways from being to long and difficult to work with
195 class APITooManyWayNodesError < APIError
196 def initialize(id, provided, max)
197 @id, @provided, @max = id, provided, max
200 attr_reader :id, :provided, :max
207 "You tried to add #{provided} nodes to way #{id}, however only #{max} are allowed"
212 # raised when user input couldn't be parsed
213 class APIBadUserInput < APIError
214 def initialize(message)
228 # raised when bounding box is invalid
229 class APIBadBoundingBox < APIError
230 def initialize(message)
244 # raised when an API call is made using a method not supported on that URI
245 class APIBadMethodError < APIError
246 def initialize(supported_method)
247 @supported_method = supported_method
255 "Only method #{@supported_method} is supported on this URI"
260 # raised when an API call takes too long
261 class APITimeoutError < APIError
272 # raised when someone tries to redact a current version of
273 # an element - only historical versions can be redacted.
274 class APICannotRedactError < APIError
280 "Cannot redact current version of element, only historical versions may be redacted."
284 # Raised when the note provided is already closed
285 class APINoteAlreadyClosedError < APIError
297 "The note #{@note.id} was closed at #{@note.closed_at}"
301 # Raised when the note provided is already open
302 class APINoteAlreadyOpenError < APIError
314 "The note #{@note.id} is already open"
318 # raised when a two preferences have a duplicate key string.
319 class APIDuplicatePreferenceError < APIError
331 "Duplicate preferences with key #{@key}"
335 # Helper methods for going to/from mercator and lat/lng.
339 #init me with your bounding box and the size of your image
340 def initialize(min_lat, min_lon, max_lat, max_lon, width, height)
341 xsize = xsheet(max_lon) - xsheet(min_lon)
342 ysize = ysheet(max_lat) - ysheet(min_lat)
343 xscale = xsize / width
344 yscale = ysize / height
345 scale = [xscale, yscale].max
347 xpad = width * scale - xsize
348 ypad = height * scale - ysize
353 @tx = xsheet(min_lon) - xpad / 2
354 @ty = ysheet(min_lat) - ypad / 2
356 @bx = xsheet(max_lon) + xpad / 2
357 @by = ysheet(max_lat) + ypad / 2
360 #the following two functions will give you the x/y on the entire sheet
363 log(tan(PI / 4 + (lat * PI / 180 / 2))) / (PI / 180)
370 #and these two will give you the right points on your image. all the constants can be reduced to speed things up. FIXME
373 return @height - ((ysheet(lat) - @ty) / (@by - @ty) * @height)
377 return ((xsheet(lon) - @tx) / (@bx - @tx) * @width)
384 # initialise with a base position
385 def initialize(lat, lon)
386 @lat = lat * PI / 180
387 @lon = lon * PI / 180
390 # get the distance from the base position to a given position
391 def distance(lat, lon)
394 return 6372.795 * 2 * asin(sqrt(sin((lat - @lat) / 2) ** 2 + cos(@lat) * cos(lat) * sin((lon - @lon)/2) ** 2))
397 # get the worst case bounds for a given radius from the base position
399 latradius = 2 * asin(sqrt(sin(radius / 6372.795 / 2) ** 2))
402 lonradius = 2 * asin(sqrt(sin(radius / 6372.795 / 2) ** 2 / cos(@lat) ** 2))
407 minlat = (@lat - latradius) * 180 / PI
408 maxlat = (@lat + latradius) * 180 / PI
409 minlon = (@lon - lonradius) * 180 / PI
410 maxlon = (@lon + lonradius) * 180 / PI
412 return { :minlat => minlat, :maxlat => maxlat, :minlon => minlon, :maxlon => maxlon }
415 # get the SQL to use to calculate distance
416 def sql_for_distance(lat_field, lon_field)
417 "6372.795 * 2 * asin(sqrt(power(sin((radians(#{lat_field}) - #{@lat}) / 2), 2) + cos(#{@lat}) * cos(radians(#{lat_field})) * power(sin((radians(#{lon_field}) - #{@lon})/2), 2)))"
422 def initialize(feed_title='OpenStreetMap GPS Traces', feed_description='OpenStreetMap GPS Traces', feed_url='http://www.openstreetmap.org/traces/')
423 @doc = XML::Document.new
424 @doc.encoding = XML::Encoding::UTF_8
426 rss = XML::Node.new 'rss'
428 rss['version'] = "2.0"
429 rss['xmlns:geo'] = "http://www.w3.org/2003/01/geo/wgs84_pos#"
430 @channel = XML::Node.new 'channel'
432 title = XML::Node.new 'title'
435 description_el = XML::Node.new 'description'
436 @channel << description_el
438 description_el << feed_description
439 link = XML::Node.new 'link'
442 image = XML::Node.new 'image'
444 url = XML::Node.new 'url'
445 url << 'http://www.openstreetmap.org/images/mag_map-rss2.0.png'
447 title = XML::Node.new 'title'
448 title << "OpenStreetMap"
450 width = XML::Node.new 'width'
453 height = XML::Node.new 'height'
456 link = XML::Node.new 'link'
461 def add(latitude=0, longitude=0, title_text='dummy title', author_text='anonymous', url='http://www.example.com/', description_text='dummy description', timestamp=DateTime.now)
462 item = XML::Node.new 'item'
464 title = XML::Node.new 'title'
467 link = XML::Node.new 'link'
471 guid = XML::Node.new 'guid'
475 description = XML::Node.new 'description'
476 description << description_text
479 author = XML::Node.new 'author'
480 author << author_text
483 pubDate = XML::Node.new 'pubDate'
484 pubDate << timestamp.to_s(:rfc822)
488 lat_el = XML::Node.new 'geo:lat'
489 lat_el << latitude.to_s
494 lon_el = XML::Node.new 'geo:long'
495 lon_el << longitude.to_s
509 doc = XML::Document.new
510 doc.encoding = XML::Encoding::UTF_8
511 root = XML::Node.new 'osm'
512 root['version'] = API_VERSION.to_s
513 root['generator'] = GENERATOR
514 root['copyright'] = COPYRIGHT_OWNER
515 root['attribution'] = ATTRIBUTION_URL
516 root['license'] = LICENSE_URL
522 def self.IPToCountry(ip_address)
524 ipinfo = Quova::IpInfo.new(ip_address)
526 if ipinfo.status == Quova::Success then
527 country = ipinfo.country_code
529 Net::HTTP.start('api.hostip.info') do |http|
530 country = http.get("/country.php?ip=#{ip_address}").body
531 country = "GB" if country == "UK"
535 return country.upcase
543 def self.IPLocation(ip_address)
544 code = OSM.IPToCountry(ip_address)
546 if code and country = Country.find_by_code(code)
547 return { :minlon => country.min_lon, :minlat => country.min_lat, :maxlon => country.max_lon, :maxlat => country.max_lat }
553 # Parse a float, raising a specified exception on failure
554 def self.parse_float(str, klass, *args)
557 raise klass.new(*args)
560 # Construct a random token of a given length
561 def self.make_token(length = 30)
562 chars = 'abcdefghijklmnopqrtuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789'
566 token += chars[(rand * chars.length).to_i].chr
572 # Return an encrypted version of a password
573 def self.encrypt_password(password, salt)
574 return Digest::MD5.hexdigest(password) if salt.nil?
575 return Digest::MD5.hexdigest(salt + password)
578 # Return an SQL fragment to select a given area of the globe
579 def self.sql_for_area(bbox, prefix = nil)
580 tilesql = QuadTile.sql_for_area(bbox, prefix)
581 bbox = bbox.to_scaled
583 return "#{tilesql} AND #{prefix}latitude BETWEEN #{bbox.min_lat} AND #{bbox.max_lat} " +
584 "AND #{prefix}longitude BETWEEN #{bbox.min_lon} AND #{bbox.max_lon}"
587 def self.legal_text_for_country(country_code)
588 file_name = File.join(Rails.root, "config", "legales", country_code.to_s + ".yml")
589 file_name = File.join(Rails.root, "config", "legales", DEFAULT_LEGALE + ".yml") unless File.exist? file_name
590 YAML::load_file(file_name)