]> git.openstreetmap.org Git - rails.git/blob - app/controllers/api/old_elements_controller.rb
Merge remote-tracking branch 'upstream/pull/5140'
[rails.git] / app / controllers / api / old_elements_controller.rb
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 module Api
5   class OldElementsController < ApiController
6     before_action :check_api_writable, :only => [:redact]
7     before_action :setup_user_auth, :only => [:history, :show]
8     before_action :authorize, :only => [:redact]
9
10     authorize_resource
11
12     around_action :api_call_handle_error, :api_call_timeout
13     before_action :lookup_old_element, :except => [:history]
14     before_action :lookup_old_element_versions, :only => [:history]
15
16     before_action :set_request_formats, :except => [:redact]
17
18     def history
19       # the .where() method used in the lookup_old_element_versions
20       # call won't throw an error if no records are found, so we have
21       # to do that ourselves.
22       raise OSM::APINotFoundError if @elements.empty?
23
24       # determine visible elements
25       @elems = if show_redactions?
26                  @elements
27                else
28                  @elements.unredacted
29                end
30
31       # Render the result
32       respond_to do |format|
33         format.xml
34         format.json
35       end
36     end
37
38     def show
39       if @old_element.redacted? && !show_redactions?
40         head :forbidden
41
42       else
43         response.last_modified = @old_element.timestamp
44
45         # Render the result
46         respond_to do |format|
47           format.xml
48           format.json
49         end
50       end
51     end
52
53     def redact
54       redaction_id = params["redaction"]
55       if redaction_id.nil?
56         # if no redaction ID was provided, then this is an unredact
57         # operation.
58         @old_element.redact!(nil)
59       else
60         # if a redaction ID was specified, then set this element to
61         # be redacted in that redaction.
62         redaction = Redaction.find(redaction_id.to_i)
63         @old_element.redact!(redaction)
64       end
65
66       # just return an empty 200 OK for success
67       head :ok
68     end
69
70     private
71
72     def show_redactions?
73       current_user&.moderator? && params[:show_redactions] == "true"
74     end
75   end
76 end