class WayController < ApplicationController
  require "xml/libxml"

  skip_before_action :verify_authenticity_token
  before_action :authorize, :only => [:create, :update, :delete]
  before_action :require_allow_write_api, :only => [:create, :update, :delete]
  before_action :require_public_data, :only => [:create, :update, :delete]
  before_action :check_api_writable, :only => [:create, :update, :delete]
  before_action :check_api_readable, :except => [:create, :update, :delete]
  around_action :api_call_handle_error, :api_call_timeout

  def create
    assert_method :put

    way = Way.from_xml(request.raw_post, true)

    # Assume that Way.from_xml has thrown an exception if there is an error parsing the xml
    way.create_with_history @user
    render :text => way.id.to_s, :content_type => "text/plain"
  end

  def read
    way = Way.find(params[:id])

    response.last_modified = way.timestamp

    if way.visible
      render :text => way.to_xml.to_s, :content_type => "text/xml"
    else
      render :text => "", :status => :gone
    end
  end

  def update
    way = Way.find(params[:id])
    new_way = Way.from_xml(request.raw_post)

    unless new_way && new_way.id == way.id
      fail OSM::APIBadUserInput.new("The id in the url (#{way.id}) is not the same as provided in the xml (#{new_way.id})")
    end

    way.update_from(new_way, @user)
    render :text => way.version.to_s, :content_type => "text/plain"
  end

  # This is the API call to delete a way
  def delete
    way = Way.find(params[:id])
    new_way = Way.from_xml(request.raw_post)

    if new_way && new_way.id == way.id
      way.delete_with_history!(new_way, @user)
      render :text => way.version.to_s, :content_type => "text/plain"
    else
      render :text => "", :status => :bad_request
    end
  end

  def full
    way = Way.includes(:nodes => :node_tags).find(params[:id])

    if way.visible
      visible_nodes = {}
      changeset_cache = {}
      user_display_name_cache = {}

      doc = OSM::API.new.get_xml_doc
      way.nodes.uniq.each do |node|
        if node.visible
          doc.root << node.to_xml_node(changeset_cache, user_display_name_cache)
          visible_nodes[node.id] = node
        end
      end
      doc.root << way.to_xml_node(visible_nodes, changeset_cache, user_display_name_cache)

      render :text => doc.to_s, :content_type => "text/xml"
    else
      render :text => "", :status => :gone
    end
  end

  def ways
    unless params["ways"]
      fail OSM::APIBadUserInput.new("The parameter ways is required, and must be of the form ways=id[,id[,id...]]")
    end

    ids = params["ways"].split(",").collect(&:to_i)

    if ids.length == 0
      fail OSM::APIBadUserInput.new("No ways were given to search for")
    end

    doc = OSM::API.new.get_xml_doc

    Way.find(ids).each do |way|
      doc.root << way.to_xml_node
    end

    render :text => doc.to_s, :content_type => "text/xml"
  end

  ##
  # returns all the ways which are currently using the node given in the
  # :id parameter. note that this used to return deleted ways as well, but
  # this seemed not to be the expected behaviour, so it was removed.
  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

    render :text => doc.to_s, :content_type => "text/xml"
  end
end
