X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/3880ac5de8150eef3cc5b26eb9814f5c1d681afa..9b35270d0be2984a4100e412518255aeb50068bf:/app/controllers/relation_controller.rb diff --git a/app/controllers/relation_controller.rb b/app/controllers/relation_controller.rb index 39021218f..9e7466a4a 100644 --- a/app/controllers/relation_controller.rb +++ b/app/controllers/relation_controller.rb @@ -130,19 +130,23 @@ class RelationController < ApplicationController end def relations + if not params['relations'] + raise OSM::APIBadUserInput.new("The parameter relations is required, and must be of the form relations=id[,id[,id...]]") + end + ids = params['relations'].split(',').collect { |w| w.to_i } - if ids.length > 0 - doc = OSM::API.new.get_xml_doc + if ids.length == 0 + raise OSM::APIBadUserInput.new("No relations were given to search for") + end - Relation.find(ids).each do |relation| - doc.root << relation.to_xml_node - end + doc = OSM::API.new.get_xml_doc - render :text => doc.to_s, :content_type => "text/xml" - else - render :text => "You need to supply a comma separated list of ids.", :status => :bad_request + Relation.find(ids).each do |relation| + doc.root << relation.to_xml_node end + + render :text => doc.to_s, :content_type => "text/xml" end def relations_for_way