X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/2805118a6047fa9e5814d44003d993507222fb90..1998ec88b82f29f7ea3c65f41895a1e76a1ded5a:/lib/osm.rb diff --git a/lib/osm.rb b/lib/osm.rb index 3da9671c1..d4c13ad7f 100644 --- a/lib/osm.rb +++ b/lib/osm.rb @@ -281,6 +281,57 @@ module OSM end end + # Raised when the note provided is already closed + class APINoteAlreadyClosedError < APIError + def initialize(note) + @note = note + end + + attr_reader :note + + def status + :conflict + end + + def to_s + "The note #{@note.id} was closed at #{@note.closed_at}" + end + end + + # Raised when the note provided is already open + class APINoteAlreadyOpenError < APIError + def initialize(note) + @note = note + end + + attr_reader :note + + def status + :conflict + end + + def to_s + "The note #{@note.id} is already open" + end + end + + # raised when a two preferences have a duplicate key string. + class APIDuplicatePreferenceError < APIError + def initialize(key) + @key = key + end + + attr_reader :key + + def status + :bad_request + end + + def to_s + "Duplicate preferences with key #{@key}" + end + end + # Helper methods for going to/from mercator and lat/lng. class Mercator include Math @@ -480,7 +531,7 @@ module OSM country = "GB" if country == "UK" end end - + return country.upcase end