X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/363155a2a86796d27ee9161f1ee9b74d6fa307e5..0db30c611a99d62381217d86c5a0bd9d104efb42:/app/controllers/api/ways_controller.rb diff --git a/app/controllers/api/ways_controller.rb b/app/controllers/api/ways_controller.rb index b8ce1010f..9af087d83 100644 --- a/app/controllers/api/ways_controller.rb +++ b/app/controllers/api/ways_controller.rb @@ -22,17 +22,13 @@ module Api end def show - way = Way.find(params[:id]) - - response.last_modified = way.timestamp + @way = Way.find(params[:id]) - if way.visible - @ways = [way] + response.last_modified = @way.timestamp + if @way.visible # Render the result - respond_to do |format| - format.xml - end + render :formats => [:xml] else head :gone end @@ -64,28 +60,22 @@ module Api 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 = {} @nodes = [] - way.nodes.uniq.each do |node| + @way.nodes.uniq.each do |node| if node.visible @nodes << node visible_nodes[node.id] = node end end - @ways = [way] - # Render the result - respond_to do |format| - format.xml - end + render :formats => [:xml] else head :gone end @@ -103,9 +93,7 @@ module Api @ways = Way.find(ids) # Render the result - respond_to do |format| - format.xml - end + render :formats => [:xml] end ## @@ -118,9 +106,7 @@ module Api @ways = Way.where(:id => wayids, :visible => true) # Render the result - respond_to do |format| - format.xml - end + render :formats => [:xml] end end end