2 class WaysController < ApiController
3 before_action :check_api_writable, :only => [:create, :update, :destroy]
4 before_action :authorize, :only => [:create, :update, :destroy]
8 before_action :require_public_data, :only => [:create, :update, :destroy]
9 before_action :set_request_formats, :except => [:create, :update, :destroy]
10 before_action :check_rate_limit, :only => [:create, :update, :destroy]
13 raise OSM::APIBadUserInput, "The parameter ways is required, and must be of the form ways=id[,id[,id...]]" unless params["ways"]
15 ids = params["ways"].split(",").collect(&:to_i)
17 raise OSM::APIBadUserInput, "No ways were given to search for" if ids.empty?
22 respond_to do |format|
30 @way = @way.includes(:nodes => :node_tags) if params[:full]
31 @way = @way.find(params[:id])
33 response.last_modified = @way.timestamp unless params[:full]
39 @way.nodes.uniq.each do |node|
40 @nodes << node if node.visible
44 respond_to do |format|
54 way = Way.from_xml(request.raw_post, :create => true)
56 # Assume that Way.from_xml has thrown an exception if there is an error parsing the xml
57 way.create_with_history current_user
58 render :plain => way.id.to_s
62 way = Way.find(params[:id])
63 new_way = Way.from_xml(request.raw_post)
65 raise OSM::APIBadUserInput, "The id in the url (#{way.id}) is not the same as provided in the xml (#{new_way.id})" unless new_way && new_way.id == way.id
67 way.update_from(new_way, current_user)
68 render :plain => way.version.to_s
71 # This is the API call to delete a way
73 way = Way.find(params[:id])
74 new_way = Way.from_xml(request.raw_post)
76 if new_way && new_way.id == way.id
77 way.delete_with_history!(new_way, current_user)
78 render :plain => way.version.to_s
85 # returns all the ways which are currently using the node given in the
86 # :id parameter. note that this used to return deleted ways as well, but
87 # this seemed not to be the expected behaviour, so it was removed.
89 wayids = WayNode.where(:node_id => params[:id]).collect { |ws| ws.id[0] }.uniq
91 @ways = Way.where(:id => wayids, :visible => true)
94 respond_to do |format|