1 # this class pulls together the logic for all the old_* controllers
2 # into one place. as it turns out, the API methods for historical
3 # nodes, ways and relations are basically identical.
4 class OldController < ApplicationController
7 skip_before_filter :verify_authenticity_token
8 before_filter :setup_user_auth, :only => [ :history, :version ]
9 before_filter :authorize, :only => [ :redact ]
10 before_filter :authorize_moderator, :only => [ :redact ]
11 before_filter :require_allow_write_api, :only => [ :redact ]
12 before_filter :check_api_readable
13 before_filter :check_api_writable, :only => [ :redact ]
14 after_filter :compress_output
15 around_filter :api_call_handle_error, :api_call_timeout
16 before_filter :lookup_old_element, :except => [ :history ]
17 before_filter :lookup_old_element_versions, :only => [ :history ]
20 # the .where() method used in the lookup_old_element_versions
21 # call won't throw an error if no records are found, so we have
22 # to do that ourselves.
23 raise OSM::APINotFoundError.new if @elements.empty?
25 doc = OSM::API.new.get_xml_doc
27 visible_elements = if show_redactions?
33 visible_elements.each do |element|
34 doc.root << element.to_xml_node
37 render :text => doc.to_s, :content_type => "text/xml"
41 if @old_element.redacted? and not show_redactions?
42 render :text => "", :status => :forbidden
45 response.last_modified = @old_element.timestamp
47 doc = OSM::API.new.get_xml_doc
48 doc.root << @old_element.to_xml_node
50 render :text => doc.to_s, :content_type => "text/xml"
55 redaction_id = params['redaction']
56 unless redaction_id.nil?
57 # if a redaction ID was specified, then set this element to
58 # be redacted in that redaction.
59 redaction = Redaction.find(redaction_id.to_i)
60 @old_element.redact!(redaction)
63 # if no redaction ID was provided, then this is an unredact
65 @old_element.redact!(nil)
68 # just return an empty 200 OK for success
75 @user and @user.moderator? and params[:show_redactions] == "true"