end
def show
- way = Way.find(params[:id])
+ @way = Way.find(params[:id])
- response.last_modified = way.timestamp
+ response.last_modified = @way.timestamp
- if way.visible
- render :xml => way.to_xml.to_s
+ if @way.visible
+ # Render the result
+ render :formats => [:xml]
else
head :gone
end
end
def full
- way = Way.includes(:nodes => :node_tags).find(params[:id])
+ @way = Way.includes(:nodes => :node_tags).find(params[:id])
- if way.visible
+ if @way.visible
visible_nodes = {}
- changeset_cache = {}
- user_display_name_cache = {}
- doc = OSM::API.new.get_xml_doc
- way.nodes.uniq.each do |node|
+ @nodes = []
+
+ @way.nodes.uniq.each do |node|
if node.visible
- doc.root << node.to_xml_node(changeset_cache, user_display_name_cache)
+ @nodes << node
visible_nodes[node.id] = node
end
end
- doc.root << way.to_xml_node(visible_nodes, changeset_cache, user_display_name_cache)
- render :xml => doc.to_s
+ # Render the result
+ render :formats => [:xml]
else
head :gone
end
raise OSM::APIBadUserInput, "No ways were given to search for" if ids.empty?
- doc = OSM::API.new.get_xml_doc
-
- Way.find(ids).each do |way|
- doc.root << way.to_xml_node
- end
+ @ways = Way.find(ids)
- render :xml => doc.to_s
+ # Render the result
+ render :formats => [:xml]
end
##
def ways_for_node
wayids = WayNode.where(:node_id => params[:id]).collect { |ws| ws.id[0] }.uniq
- doc = OSM::API.new.get_xml_doc
-
- Way.find(wayids).each do |way|
- doc.root << way.to_xml_node if way.visible
- end
+ @ways = Way.where(:id => wayids, :visible => true)
- render :xml => doc.to_s
+ # Render the result
+ render :formats => [:xml]
end
end
end