]> git.openstreetmap.org Git - rails.git/blob - app/controllers/api_controller.rb
Merge branch 'pull/4793'
[rails.git] / app / controllers / api_controller.rb
1 class ApiController < ApplicationController
2   skip_before_action :verify_authenticity_token
3
4   before_action :check_api_readable
5
6   private
7
8   ##
9   # Set allowed request formats if no explicit format has been
10   # requested via a URL suffix. Allowed formats are taken from
11   # any HTTP Accept header with XML as the default.
12   def set_request_formats
13     unless params[:format]
14       accept_header = request.headers["HTTP_ACCEPT"]
15
16       if accept_header
17         # Some clients (such asJOSM) send Accept headers which cannot be
18         # parse by Rails, for example:
19         #
20         #   Accept: text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2
21         #
22         # where both "*" and ".2" as a quality do not adhere to the syntax
23         # described in RFC 7231, section 5.3.1, etc.
24         #
25         # As a workaround, and for back compatibility, default to XML format.
26         mimetypes = begin
27           Mime::Type.parse(accept_header)
28         rescue Mime::Type::InvalidMimeType
29           Array(Mime[:xml])
30         end
31
32         # Allow XML and JSON formats, and treat an all formats wildcard
33         # as XML for backwards compatibility - all other formats are discarded
34         # which will result in a 406 Not Acceptable response being sent
35         formats = mimetypes.map do |mime|
36           if mime.symbol == :xml || mime == "*/*" then :xml
37           elsif mime.symbol == :json then :json
38           end
39         end
40       else
41         # Default to XML if no accept header was sent - this includes
42         # the unit tests which don't set one by default
43         formats = Array(:xml)
44       end
45
46       request.formats = formats.compact
47     end
48   end
49
50   def authorize(realm = "Web Password", errormessage = "Couldn't authenticate you")
51     # make the current_user object from any auth sources we have
52     setup_user_auth
53
54     # handle authenticate pass/fail
55     unless current_user
56       # no auth, the user does not exist or the password was wrong
57       if Settings.basic_auth_support
58         response.headers["WWW-Authenticate"] = "Basic realm=\"#{realm}\""
59         render :plain => errormessage, :status => :unauthorized
60       else
61         render :plain => errormessage, :status => :forbidden
62       end
63
64       false
65     end
66   end
67
68   def current_ability
69     # Use capabilities from the oauth token if it exists and is a valid access token
70     if doorkeeper_token&.accessible?
71       ApiAbility.new(nil).merge(ApiCapability.new(doorkeeper_token))
72     elsif Authenticator.new(self, [:token]).allow?
73       ApiAbility.new(nil).merge(ApiCapability.new(current_token))
74     else
75       ApiAbility.new(current_user)
76     end
77   end
78
79   def deny_access(_exception)
80     if doorkeeper_token || current_token
81       set_locale
82       report_error t("oauth.permissions.missing"), :forbidden
83     elsif current_user
84       head :forbidden
85     elsif Settings.basic_auth_support
86       realm = "Web Password"
87       errormessage = "Couldn't authenticate you"
88       response.headers["WWW-Authenticate"] = "Basic realm=\"#{realm}\""
89       render :plain => errormessage, :status => :unauthorized
90     else
91       render :plain => errormessage, :status => :forbidden
92     end
93   end
94
95   def gpx_status
96     status = database_status
97     status = "offline" if status == "online" && Settings.status == "gpx_offline"
98     status
99   end
100
101   ##
102   # sets up the current_user for use by other methods. this is mostly called
103   # from the authorize method, but can be called elsewhere if authorisation
104   # is optional.
105   def setup_user_auth
106     logger.info " setup_user_auth"
107     # try and setup using OAuth
108     if doorkeeper_token&.accessible?
109       self.current_user = User.find(doorkeeper_token.resource_owner_id)
110     elsif Authenticator.new(self, [:token]).allow?
111       if Settings.oauth_10a_support
112         # self.current_user setup by OAuth
113       else
114         report_error t("application.oauth_10a_disabled", :link => t("application.auth_disabled_link")), :forbidden
115       end
116     else
117       username, passwd = auth_data # parse from headers
118       # authenticate per-scheme
119       self.current_user = if username.nil?
120                             nil # no authentication provided - perhaps first connect (client should retry after 401)
121                           else
122                             User.authenticate(:username => username, :password => passwd) # basic auth
123                           end
124       if username && current_user
125         if Settings.basic_auth_support
126           # log if we have authenticated using basic auth
127           logger.info "Authenticated as user #{current_user.id} using basic authentication"
128         else
129           report_error t("application.basic_auth_disabled", :link => t("application.auth_disabled_link")), :forbidden
130         end
131       end
132     end
133
134     # have we identified the user?
135     if current_user
136       # check if the user has been banned
137       user_block = current_user.blocks.active.take
138       unless user_block.nil?
139         set_locale
140         if user_block.zero_hour?
141           report_error t("application.setup_user_auth.blocked_zero_hour"), :forbidden
142         else
143           report_error t("application.setup_user_auth.blocked"), :forbidden
144         end
145       end
146
147       # if the user hasn't seen the contributor terms then don't
148       # allow editing - they have to go to the web site and see
149       # (but can decline) the CTs to continue.
150       if !current_user.terms_seen && flash[:skip_terms].nil?
151         set_locale
152         report_error t("application.setup_user_auth.need_to_see_terms"), :forbidden
153       end
154     end
155   end
156
157   def api_call_handle_error
158     yield
159   rescue ActionController::UnknownFormat
160     head :not_acceptable
161   rescue ActiveRecord::RecordNotFound => e
162     head :not_found
163   rescue LibXML::XML::Error, ArgumentError => e
164     report_error e.message, :bad_request
165   rescue ActiveRecord::RecordInvalid => e
166     message = "#{e.record.class} #{e.record.id}: "
167     e.record.errors.each { |error| message << "#{error.attribute}: #{error.message} (#{e.record[error.attribute].inspect})" }
168     report_error message, :bad_request
169   rescue OSM::APIError => e
170     report_error e.message, e.status
171   rescue AbstractController::ActionNotFound => e
172     raise
173   rescue StandardError => e
174     logger.info("API threw unexpected #{e.class} exception: #{e.message}")
175     e.backtrace.each { |l| logger.info(l) }
176     report_error "#{e.class}: #{e.message}", :internal_server_error
177   end
178
179   ##
180   # wrap an api call in a timeout
181   def api_call_timeout(&block)
182     Timeout.timeout(Settings.api_timeout, &block)
183   rescue ActionView::Template::Error => e
184     e = e.cause
185
186     if e.is_a?(Timeout::Error) ||
187        (e.is_a?(ActiveRecord::StatementInvalid) && e.message.include?("execution expired"))
188       ActiveRecord::Base.connection.raw_connection.cancel
189       raise OSM::APITimeoutError
190     else
191       raise
192     end
193   rescue Timeout::Error
194     ActiveRecord::Base.connection.raw_connection.cancel
195     raise OSM::APITimeoutError
196   end
197
198   ##
199   # check the api change rate limit
200   def check_rate_limit(new_changes = 1)
201     max_changes = ActiveRecord::Base.connection.select_value(
202       "SELECT api_rate_limit($1)", "api_rate_limit", [current_user.id]
203     )
204
205     raise OSM::APIRateLimitExceeded if new_changes > max_changes
206   end
207 end