]> git.openstreetmap.org Git - rails.git/blob - config/initializers/doorkeeper.rb
Enable access token reuse for OAuth 2
[rails.git] / config / initializers / doorkeeper.rb
1 # frozen_string_literal: true
2
3 Doorkeeper.configure do
4   # Change the ORM that doorkeeper will use (requires ORM extensions installed).
5   # Check the list of supported ORMs here: https://github.com/doorkeeper-gem/doorkeeper#orms
6   orm :active_record
7
8   # This block will be called to check whether the resource owner is authenticated or not.
9   resource_owner_authenticator do
10     current_user
11   end
12
13   # If you didn't skip applications controller from Doorkeeper routes in your application routes.rb
14   # file then you need to declare this block in order to restrict access to the web interface for
15   # adding oauth authorized applications. In other case it will return 403 Forbidden response
16   # every time somebody will try to access the admin web interface.
17
18   admin_authenticator do
19     current_user
20   end
21
22   # You can use your own model classes if you need to extend (or even override) default
23   # Doorkeeper models such as `Application`, `AccessToken` and `AccessGrant.
24   #
25   # Be default Doorkeeper ActiveRecord ORM uses it's own classes:
26   #
27   # access_token_class "Doorkeeper::AccessToken"
28   # access_grant_class "Doorkeeper::AccessGrant"
29   # application_class "Doorkeeper::Application"
30   #
31   # Don't forget to include Doorkeeper ORM mixins into your custom models:
32   #
33   #   *  ::Doorkeeper::Orm::ActiveRecord::Mixins::AccessToken - for access token
34   #   *  ::Doorkeeper::Orm::ActiveRecord::Mixins::AccessGrant - for access grant
35   #   *  ::Doorkeeper::Orm::ActiveRecord::Mixins::Application - for application (OAuth2 clients)
36   #
37   # For example:
38   #
39   # access_token_class "MyAccessToken"
40   #
41   # class MyAccessToken < ApplicationRecord
42   #   include ::Doorkeeper::Orm::ActiveRecord::Mixins::AccessToken
43   #
44   #   self.table_name = "hey_i_wanna_my_name"
45   #
46   #   def destroy_me!
47   #     destroy
48   #   end
49   # end
50
51   # Enables polymorphic Resource Owner association for Access Tokens and Access Grants.
52   # By default this option is disabled.
53   #
54   # Make sure you properly setup you database and have all the required columns (run
55   # `bundle exec rails generate doorkeeper:enable_polymorphic_resource_owner` and execute Rails
56   # migrations).
57   #
58   # If this option enabled, Doorkeeper will store not only Resource Owner primary key
59   # value, but also it's type (class name). See "Polymorphic Associations" section of
60   # Rails guides: https://guides.rubyonrails.org/association_basics.html#polymorphic-associations
61   #
62   # [NOTE] If you apply this option on already existing project don't forget to manually
63   # update `resource_owner_type` column in the database and fix migration template as it will
64   # set NOT NULL constraint for Access Grants table.
65   #
66   # use_polymorphic_resource_owner
67
68   # If you are planning to use Doorkeeper in Rails 5 API-only application, then you might
69   # want to use API mode that will skip all the views management and change the way how
70   # Doorkeeper responds to a requests.
71   #
72   # api_only
73
74   # Enforce token request content type to application/x-www-form-urlencoded.
75   # It is not enabled by default to not break prior versions of the gem.
76
77   enforce_content_type
78
79   # Authorization Code expiration time (default: 10 minutes).
80   #
81   # authorization_code_expires_in 10.minutes
82
83   # Access token expiration time (default: 2 hours).
84   # If you want to disable expiration, set this to `nil`.
85
86   access_token_expires_in nil
87
88   # Assign custom TTL for access tokens. Will be used instead of access_token_expires_in
89   # option if defined. In case the block returns `nil` value Doorkeeper fallbacks to
90   # +access_token_expires_in+ configuration option value. If you really need to issue a
91   # non-expiring access token (which is not recommended) then you need to return
92   # Float::INFINITY from this block.
93   #
94   # `context` has the following properties available:
95   #
96   #   * `client` - the OAuth client application (see Doorkeeper::OAuth::Client)
97   #   * `grant_type` - the grant type of the request (see Doorkeeper::OAuth)
98   #   * `scopes` - the requested scopes (see Doorkeeper::OAuth::Scopes)
99   #   * `resource_owner` - authorized resource owner instance (if present)
100   #
101   # custom_access_token_expires_in do |context|
102   #   context.client.additional_settings.implicit_oauth_expiration
103   # end
104
105   # Use a custom class for generating the access token.
106   # See https://doorkeeper.gitbook.io/guides/configuration/other-configurations#custom-access-token-generator
107   #
108   # access_token_generator '::Doorkeeper::JWT'
109
110   # The controller +Doorkeeper::ApplicationController+ inherits from.
111   # Defaults to +ActionController::Base+ unless +api_only+ is set, which changes the default to
112   # +ActionController::API+. The return value of this option must be a stringified class name.
113   # See https://doorkeeper.gitbook.io/guides/configuration/other-configurations#custom-controllers
114
115   base_controller "ApplicationController"
116
117   # Reuse access token for the same resource owner within an application (disabled by default).
118   #
119   # This option protects your application from creating new tokens before old valid one becomes
120   # expired so your database doesn't bloat. Keep in mind that when this option is `on` Doorkeeper
121   # doesn't updates existing token expiration time, it will create a new token instead.
122   # Rationale: https://github.com/doorkeeper-gem/doorkeeper/issues/383
123   #
124   # You can not enable this option together with +hash_token_secrets+.
125
126   reuse_access_token
127
128   # In case you enabled `reuse_access_token` option Doorkeeper will try to find matching
129   # token using `matching_token_for` Access Token API that searches for valid records
130   # in batches in order not to pollute the memory with all the database records. By default
131   # Doorkeeper uses batch size of 10 000 records. You can increase or decrease this value
132   # depending on your needs and server capabilities.
133   #
134   # token_lookup_batch_size 10_000
135
136   # Set a limit for token_reuse if using reuse_access_token option
137   #
138   # This option limits token_reusability to some extent.
139   # If not set then access_token will be reused unless it expires.
140   # Rationale: https://github.com/doorkeeper-gem/doorkeeper/issues/1189
141   #
142   # This option should be a percentage(i.e. (0,100])
143   #
144   # token_reuse_limit 100
145
146   # Only allow one valid access token obtained via client credentials
147   # per client. If a new access token is obtained before the old one
148   # expired, the old one gets revoked (disabled by default)
149   #
150   # When enabling this option, make sure that you do not expect multiple processes
151   # using the same credentials at the same time (e.g. web servers spanning
152   # multiple machines and/or processes).
153   #
154   # revoke_previous_client_credentials_token
155
156   # Hash access and refresh tokens before persisting them.
157   # This will disable the possibility to use +reuse_access_token+
158   # since plain values can no longer be retrieved.
159   #
160   # Note: If you are already a user of doorkeeper and have existing tokens
161   # in your installation, they will be invalid without adding 'fallback: :plain'.
162   #
163   # hash_token_secrets
164   # By default, token secrets will be hashed using the
165   # +Doorkeeper::Hashing::SHA256+ strategy.
166   #
167   # If you wish to use another hashing implementation, you can override
168   # this strategy as follows:
169
170   hash_token_secrets :using => "::Doorkeeper::SecretStoring::Plain",
171                      :fallback => "::Doorkeeper::SecretStoring::Sha256Hash"
172
173   # Keep in mind that changing the hashing function will invalidate all existing
174   # secrets, if there are any.
175
176   # Hash application secrets before persisting them.
177
178   hash_application_secrets
179
180   # By default, applications will be hashed
181   # with the +Doorkeeper::SecretStoring::SHA256+ strategy.
182   #
183   # If you wish to use bcrypt for application secret hashing, uncomment
184   # this line instead:
185   #
186   # hash_application_secrets using: '::Doorkeeper::SecretStoring::BCrypt'
187
188   # When the above option is enabled, and a hashed token or secret is not found,
189   # you can allow to fall back to another strategy. For users upgrading
190   # doorkeeper and wishing to enable hashing, you will probably want to enable
191   # the fallback to plain tokens.
192   #
193   # This will ensure that old access tokens and secrets
194   # will remain valid even if the hashing above is enabled.
195   #
196   # This can be done by adding 'fallback: plain', e.g. :
197   #
198   # hash_application_secrets using: '::Doorkeeper::SecretStoring::BCrypt', fallback: :plain
199
200   # Issue access tokens with refresh token (disabled by default), you may also
201   # pass a block which accepts `context` to customize when to give a refresh
202   # token or not. Similar to +custom_access_token_expires_in+, `context` has
203   # the following properties:
204   #
205   # `client` - the OAuth client application (see Doorkeeper::OAuth::Client)
206   # `grant_type` - the grant type of the request (see Doorkeeper::OAuth)
207   # `scopes` - the requested scopes (see Doorkeeper::OAuth::Scopes)
208   #
209   # use_refresh_token
210
211   # Provide support for an owner to be assigned to each registered application (disabled by default)
212   # Optional parameter confirmation: true (default: false) if you want to enforce ownership of
213   # a registered application
214   # NOTE: you must also run the rails g doorkeeper:application_owner generator
215   # to provide the necessary support
216
217   enable_application_owner :confirmation => true
218
219   # Define access token scopes for your provider
220   # For more information go to
221   # https://doorkeeper.gitbook.io/guides/ruby-on-rails/scopes
222
223   # default_scopes  :public
224   optional_scopes(*Oauth::SCOPES)
225
226   # Allows to restrict only certain scopes for grant_type.
227   # By default, all the scopes will be available for all the grant types.
228   #
229   # Keys to this hash should be the name of grant_type and
230   # values should be the array of scopes for that grant type.
231   # Note: scopes should be from configured_scopes (i.e. default or optional)
232   #
233   # scopes_by_grant_type password: [:write], client_credentials: [:update]
234
235   # Forbids creating/updating applications with arbitrary scopes that are
236   # not in configuration, i.e. +default_scopes+ or +optional_scopes+.
237   # (disabled by default)
238
239   enforce_configured_scopes
240
241   # Change the way client credentials are retrieved from the request object.
242   # By default it retrieves first from the `HTTP_AUTHORIZATION` header, then
243   # falls back to the `:client_id` and `:client_secret` params from the `params` object.
244   # Check out https://github.com/doorkeeper-gem/doorkeeper/wiki/Changing-how-clients-are-authenticated
245   # for more information on customization
246   #
247   # client_credentials :from_basic, :from_params
248
249   # Change the way access token is authenticated from the request object.
250   # By default it retrieves first from the `HTTP_AUTHORIZATION` header, then
251   # falls back to the `:access_token` or `:bearer_token` params from the `params` object.
252   # Check out https://github.com/doorkeeper-gem/doorkeeper/wiki/Changing-how-clients-are-authenticated
253   # for more information on customization
254
255   access_token_methods :from_bearer_authorization
256
257   # Forces the usage of the HTTPS protocol in non-native redirect uris (enabled
258   # by default in non-development environments). OAuth2 delegates security in
259   # communication to the HTTPS protocol so it is wise to keep this enabled.
260   #
261   # Callable objects such as proc, lambda, block or any object that responds to
262   # #call can be used in order to allow conditional checks (to allow non-SSL
263   # redirects to localhost for example).
264
265   force_ssl_in_redirect_uri do |uri|
266     !Rails.env.development? && uri.host != "127.0.0.1"
267   end
268
269   # Specify what redirect URI's you want to block during Application creation.
270   # Any redirect URI is whitelisted by default.
271   #
272   # You can use this option in order to forbid URI's with 'javascript' scheme
273   # for example.
274   #
275   # forbid_redirect_uri { |uri| uri.scheme.to_s.downcase == 'javascript' }
276
277   # Allows to set blank redirect URIs for Applications in case Doorkeeper configured
278   # to use URI-less OAuth grant flows like Client Credentials or Resource Owner
279   # Password Credentials. The option is on by default and checks configured grant
280   # types, but you **need** to manually drop `NOT NULL` constraint from `redirect_uri`
281   # column for `oauth_applications` database table.
282   #
283   # You can completely disable this feature with:
284   #
285   # allow_blank_redirect_uri false
286   #
287   # Or you can define your custom check:
288   #
289   # allow_blank_redirect_uri do |grant_flows, client|
290   #   client.superapp?
291   # end
292
293   # Specify how authorization errors should be handled.
294   # By default, doorkeeper renders json errors when access token
295   # is invalid, expired, revoked or has invalid scopes.
296   #
297   # If you want to render error response yourself (i.e. rescue exceptions),
298   # set +handle_auth_errors+ to `:raise` and rescue Doorkeeper::Errors::InvalidToken
299   # or following specific errors:
300   #
301   #   Doorkeeper::Errors::TokenForbidden, Doorkeeper::Errors::TokenExpired,
302   #   Doorkeeper::Errors::TokenRevoked, Doorkeeper::Errors::TokenUnknown
303   #
304   # handle_auth_errors :raise
305
306   # Customize token introspection response.
307   # Allows to add your own fields to default one that are required by the OAuth spec
308   # for the introspection response. It could be `sub`, `aud` and so on.
309   # This configuration option can be a proc, lambda or any Ruby object responds
310   # to `.call` method and result of it's invocation must be a Hash.
311   #
312   # custom_introspection_response do |token, context|
313   #   {
314   #     "sub": "Z5O3upPC88QrAjx00dis",
315   #     "aud": "https://protected.example.net/resource",
316   #     "username": User.find(token.resource_owner_id).username
317   #   }
318   # end
319   #
320   # or
321   #
322   # custom_introspection_response CustomIntrospectionResponder
323
324   # Specify what grant flows are enabled in array of Strings. The valid
325   # strings and the flows they enable are:
326   #
327   # "authorization_code" => Authorization Code Grant Flow
328   # "implicit"           => Implicit Grant Flow
329   # "password"           => Resource Owner Password Credentials Grant Flow
330   # "client_credentials" => Client Credentials Grant Flow
331   #
332   # If not specified, Doorkeeper enables authorization_code and
333   # client_credentials.
334   #
335   # implicit and password grant flows have risks that you should understand
336   # before enabling:
337   #   http://tools.ietf.org/html/rfc6819#section-4.4.2
338   #   http://tools.ietf.org/html/rfc6819#section-4.4.3
339
340   grant_flows %w[authorization_code]
341
342   # Allows to customize OAuth grant flows that +each+ application support.
343   # You can configure a custom block (or use a class respond to `#call`) that must
344   # return `true` in case Application instance supports requested OAuth grant flow
345   # during the authorization request to the server. This configuration +doesn't+
346   # set flows per application, it only allows to check if application supports
347   # specific grant flow.
348   #
349   # For example you can add an additional database column to `oauth_applications` table,
350   # say `t.array :grant_flows, default: []`, and store allowed grant flows that can
351   # be used with this application there. Then when authorization requested Doorkeeper
352   # will call this block to check if specific Application (passed with client_id and/or
353   # client_secret) is allowed to perform the request for the specific grant type
354   # (authorization, password, client_credentials, etc).
355   #
356   # Example of the block:
357   #
358   #   ->(flow, client) { client.grant_flows.include?(flow) }
359   #
360   # In case this option invocation result is `false`, Doorkeeper server returns
361   # :unauthorized_client error and stops the request.
362   #
363   # @param allow_grant_flow_for_client [Proc] Block or any object respond to #call
364   # @return [Boolean] `true` if allow or `false` if forbid the request
365   #
366   # allow_grant_flow_for_client do |grant_flow, client|
367   #   # `grant_flows` is an Array column with grant
368   #   # flows that application supports
369   #
370   #   client.grant_flows.include?(grant_flow)
371   # end
372
373   # If you need arbitrary Resource Owner-Client authorization you can enable this option
374   # and implement the check your need. Config option must respond to #call and return
375   # true in case resource owner authorized for the specific application or false in other
376   # cases.
377   #
378   # Be default all Resource Owners are authorized to any Client (application).
379   #
380   # authorize_resource_owner_for_client do |client, resource_owner|
381   #   resource_owner.admin? || client.owners_whitelist.include?(resource_owner)
382   # end
383
384   # Hook into the strategies' request & response life-cycle in case your
385   # application needs advanced customization or logging:
386   #
387   # before_successful_strategy_response do |request|
388   #   puts "BEFORE HOOK FIRED! #{request}"
389   # end
390   #
391   # after_successful_strategy_response do |request, response|
392   #   puts "AFTER HOOK FIRED! #{request}, #{response}"
393   # end
394
395   # Hook into Authorization flow in order to implement Single Sign Out
396   # or add any other functionality. Inside the block you have an access
397   # to `controller` (authorizations controller instance) and `context`
398   # (Doorkeeper::OAuth::Hooks::Context instance) which provides pre auth
399   # or auth objects with issued token based on hook type (before or after).
400   #
401   # before_successful_authorization do |controller, context|
402   #   Rails.logger.info(controller.request.params.inspect)
403   #
404   #   Rails.logger.info(context.pre_auth.inspect)
405   # end
406   #
407   # after_successful_authorization do |controller, context|
408   #   controller.session[:logout_urls] <<
409   #     Doorkeeper::Application
410   #       .find_by(controller.request.params.slice(:redirect_uri))
411   #       .logout_uri
412   #
413   #   Rails.logger.info(context.auth.inspect)
414   #   Rails.logger.info(context.issued_token)
415   # end
416
417   # Under some circumstances you might want to have applications auto-approved,
418   # so that the user skips the authorization step.
419   # For example if dealing with a trusted application.
420   #
421   # skip_authorization do |resource_owner, client|
422   #   client.superapp? or resource_owner.admin?
423   # end
424
425   # Configure custom constraints for the Token Introspection request.
426   # By default this configuration option allows to introspect a token by another
427   # token of the same application, OR to introspect the token that belongs to
428   # authorized client (from authenticated client) OR when token doesn't
429   # belong to any client (public token). Otherwise requester has no access to the
430   # introspection and it will return response as stated in the RFC.
431   #
432   # Block arguments:
433   #
434   # @param token [Doorkeeper::AccessToken]
435   #   token to be introspected
436   #
437   # @param authorized_client [Doorkeeper::Application]
438   #   authorized client (if request is authorized using Basic auth with
439   #   Client Credentials for example)
440   #
441   # @param authorized_token [Doorkeeper::AccessToken]
442   #   Bearer token used to authorize the request
443   #
444   # In case the block returns `nil` or `false` introspection responses with 401 status code
445   # when using authorized token to introspect, or you'll get 200 with { "active": false } body
446   # when using authorized client to introspect as stated in the
447   # RFC 7662 section 2.2. Introspection Response.
448   #
449   # Using with caution:
450   # Keep in mind that these three parameters pass to block can be nil as following case:
451   #  `authorized_client` is nil if and only if `authorized_token` is present, and vice versa.
452   #  `token` will be nil if and only if `authorized_token` is present.
453   # So remember to use `&` or check if it is present before calling method on
454   # them to make sure you doesn't get NoMethodError exception.
455   #
456   # You can define your custom check:
457   #
458   # allow_token_introspection do |token, authorized_client, authorized_token|
459   #   if authorized_token
460   #     # customize: require `introspection` scope
461   #     authorized_token.application == token&.application ||
462   #       authorized_token.scopes.include?("introspection")
463   #   elsif token.application
464   #     # `protected_resource` is a new database boolean column, for example
465   #     authorized_client == token.application || authorized_client.protected_resource?
466   #   else
467   #     # public token (when token.application is nil, token doesn't belong to any application)
468   #     true
469   #   end
470   # end
471   #
472   # Or you can completely disable any token introspection:
473   #
474   # allow_token_introspection false
475   #
476   # If you need to block the request at all, then configure your routes.rb or web-server
477   # like nginx to forbid the request.
478
479   # WWW-Authenticate Realm (default: "Doorkeeper").
480   #
481   # realm "Doorkeeper"
482 end