doorkeeper 4.4.0 → 5.6.6

Sign up to get free protection for your applications and to get access to all the features.
Files changed (284) hide show
  1. checksums.yaml +5 -5
  2. data/{NEWS.md → CHANGELOG.md} +471 -16
  3. data/README.md +108 -403
  4. data/app/assets/stylesheets/doorkeeper/admin/application.css +2 -2
  5. data/app/controllers/doorkeeper/application_controller.rb +8 -5
  6. data/app/controllers/doorkeeper/application_metal_controller.rb +7 -11
  7. data/app/controllers/doorkeeper/applications_controller.rb +62 -27
  8. data/app/controllers/doorkeeper/authorizations_controller.rb +112 -18
  9. data/app/controllers/doorkeeper/authorized_applications_controller.rb +22 -3
  10. data/app/controllers/doorkeeper/token_info_controller.rb +16 -4
  11. data/app/controllers/doorkeeper/tokens_controller.rb +104 -35
  12. data/app/helpers/doorkeeper/dashboard_helper.rb +9 -7
  13. data/app/views/doorkeeper/applications/_delete_form.html.erb +3 -1
  14. data/app/views/doorkeeper/applications/_form.html.erb +27 -26
  15. data/app/views/doorkeeper/applications/edit.html.erb +1 -1
  16. data/app/views/doorkeeper/applications/index.html.erb +17 -7
  17. data/app/views/doorkeeper/applications/new.html.erb +1 -1
  18. data/app/views/doorkeeper/applications/show.html.erb +38 -17
  19. data/app/views/doorkeeper/authorizations/error.html.erb +4 -2
  20. data/app/views/doorkeeper/authorizations/form_post.html.erb +15 -0
  21. data/app/views/doorkeeper/authorizations/new.html.erb +16 -10
  22. data/app/views/layouts/doorkeeper/admin.html.erb +16 -14
  23. data/config/locales/en.yml +28 -5
  24. data/lib/doorkeeper/config/abstract_builder.rb +28 -0
  25. data/lib/doorkeeper/config/option.rb +82 -0
  26. data/lib/doorkeeper/config/validations.rb +53 -0
  27. data/lib/doorkeeper/config.rb +477 -142
  28. data/lib/doorkeeper/engine.rb +17 -4
  29. data/lib/doorkeeper/errors.rb +25 -16
  30. data/lib/doorkeeper/grant_flow/fallback_flow.rb +15 -0
  31. data/lib/doorkeeper/grant_flow/flow.rb +44 -0
  32. data/lib/doorkeeper/grant_flow/registry.rb +50 -0
  33. data/lib/doorkeeper/grant_flow.rb +45 -0
  34. data/lib/doorkeeper/grape/authorization_decorator.rb +6 -4
  35. data/lib/doorkeeper/grape/helpers.rb +13 -7
  36. data/lib/doorkeeper/helpers/controller.rb +43 -10
  37. data/lib/doorkeeper/models/access_grant_mixin.rb +97 -3
  38. data/lib/doorkeeper/models/access_token_mixin.rb +273 -67
  39. data/lib/doorkeeper/models/application_mixin.rb +50 -5
  40. data/lib/doorkeeper/models/concerns/accessible.rb +2 -0
  41. data/lib/doorkeeper/models/concerns/expirable.rb +7 -3
  42. data/lib/doorkeeper/models/concerns/expiration_time_sql_math.rb +88 -0
  43. data/lib/doorkeeper/models/concerns/orderable.rb +2 -0
  44. data/lib/doorkeeper/models/concerns/ownership.rb +4 -7
  45. data/lib/doorkeeper/models/concerns/polymorphic_resource_owner.rb +30 -0
  46. data/lib/doorkeeper/models/concerns/resource_ownerable.rb +47 -0
  47. data/lib/doorkeeper/models/concerns/reusable.rb +19 -0
  48. data/lib/doorkeeper/models/concerns/revocable.rb +3 -27
  49. data/lib/doorkeeper/models/concerns/scopes.rb +12 -2
  50. data/lib/doorkeeper/models/concerns/secret_storable.rb +106 -0
  51. data/lib/doorkeeper/oauth/authorization/code.rb +54 -12
  52. data/lib/doorkeeper/oauth/authorization/context.rb +17 -0
  53. data/lib/doorkeeper/oauth/authorization/token.rb +64 -24
  54. data/lib/doorkeeper/oauth/authorization/uri_builder.rb +7 -5
  55. data/lib/doorkeeper/oauth/authorization_code_request.rb +69 -11
  56. data/lib/doorkeeper/oauth/base_request.rb +36 -24
  57. data/lib/doorkeeper/oauth/base_response.rb +2 -0
  58. data/lib/doorkeeper/oauth/client/credentials.rb +5 -5
  59. data/lib/doorkeeper/oauth/client.rb +10 -11
  60. data/lib/doorkeeper/oauth/client_credentials/creator.rb +44 -4
  61. data/lib/doorkeeper/oauth/client_credentials/issuer.rb +16 -9
  62. data/lib/doorkeeper/oauth/client_credentials/validator.rb +55 -0
  63. data/lib/doorkeeper/oauth/client_credentials_request.rb +10 -11
  64. data/lib/doorkeeper/oauth/code_request.rb +8 -12
  65. data/lib/doorkeeper/oauth/code_response.rb +27 -15
  66. data/lib/doorkeeper/oauth/error.rb +3 -1
  67. data/lib/doorkeeper/oauth/error_response.rb +34 -14
  68. data/lib/doorkeeper/oauth/forbidden_token_response.rb +11 -3
  69. data/lib/doorkeeper/oauth/helpers/scope_checker.rb +23 -18
  70. data/lib/doorkeeper/oauth/helpers/unique_token.rb +20 -3
  71. data/lib/doorkeeper/oauth/helpers/uri_checker.rb +42 -6
  72. data/lib/doorkeeper/oauth/hooks/context.rb +21 -0
  73. data/lib/doorkeeper/oauth/invalid_request_response.rb +43 -0
  74. data/lib/doorkeeper/oauth/invalid_token_response.rb +29 -4
  75. data/lib/doorkeeper/oauth/nonstandard.rb +39 -0
  76. data/lib/doorkeeper/oauth/password_access_token_request.rb +43 -10
  77. data/lib/doorkeeper/oauth/pre_authorization.rb +136 -26
  78. data/lib/doorkeeper/oauth/refresh_token_request.rb +67 -31
  79. data/lib/doorkeeper/oauth/scopes.rb +8 -4
  80. data/lib/doorkeeper/oauth/token.rb +12 -8
  81. data/lib/doorkeeper/oauth/token_introspection.rb +99 -25
  82. data/lib/doorkeeper/oauth/token_request.rb +8 -20
  83. data/lib/doorkeeper/oauth/token_response.rb +13 -10
  84. data/lib/doorkeeper/oauth.rb +13 -0
  85. data/lib/doorkeeper/orm/active_record/access_grant.rb +5 -30
  86. data/lib/doorkeeper/orm/active_record/access_token.rb +5 -43
  87. data/lib/doorkeeper/orm/active_record/application.rb +6 -57
  88. data/lib/doorkeeper/orm/active_record/mixins/access_grant.rb +63 -0
  89. data/lib/doorkeeper/orm/active_record/mixins/access_token.rb +77 -0
  90. data/lib/doorkeeper/orm/active_record/mixins/application.rb +210 -0
  91. data/lib/doorkeeper/orm/active_record/redirect_uri_validator.rb +66 -0
  92. data/lib/doorkeeper/orm/active_record/stale_records_cleaner.rb +36 -0
  93. data/lib/doorkeeper/orm/active_record.rb +31 -20
  94. data/lib/doorkeeper/rails/helpers.rb +10 -8
  95. data/lib/doorkeeper/rails/routes/abstract_router.rb +35 -0
  96. data/lib/doorkeeper/rails/routes/mapper.rb +4 -2
  97. data/lib/doorkeeper/rails/routes/mapping.rb +9 -7
  98. data/lib/doorkeeper/rails/routes/registry.rb +45 -0
  99. data/lib/doorkeeper/rails/routes.rb +45 -25
  100. data/lib/doorkeeper/rake/db.rake +40 -0
  101. data/lib/doorkeeper/rake/setup.rake +6 -0
  102. data/lib/doorkeeper/rake.rb +14 -0
  103. data/lib/doorkeeper/request/authorization_code.rb +6 -4
  104. data/lib/doorkeeper/request/client_credentials.rb +3 -3
  105. data/lib/doorkeeper/request/code.rb +1 -1
  106. data/lib/doorkeeper/request/password.rb +4 -3
  107. data/lib/doorkeeper/request/refresh_token.rb +6 -5
  108. data/lib/doorkeeper/request/strategy.rb +4 -2
  109. data/lib/doorkeeper/request/token.rb +1 -1
  110. data/lib/doorkeeper/request.rb +61 -34
  111. data/lib/doorkeeper/secret_storing/base.rb +64 -0
  112. data/lib/doorkeeper/secret_storing/bcrypt.rb +60 -0
  113. data/lib/doorkeeper/secret_storing/plain.rb +33 -0
  114. data/lib/doorkeeper/secret_storing/sha256_hash.rb +26 -0
  115. data/lib/doorkeeper/server.rb +9 -11
  116. data/lib/doorkeeper/stale_records_cleaner.rb +24 -0
  117. data/lib/doorkeeper/validations.rb +2 -0
  118. data/lib/doorkeeper/version.rb +7 -29
  119. data/lib/doorkeeper.rb +180 -65
  120. data/lib/generators/doorkeeper/application_owner_generator.rb +24 -18
  121. data/lib/generators/doorkeeper/confidential_applications_generator.rb +33 -0
  122. data/lib/generators/doorkeeper/enable_polymorphic_resource_owner_generator.rb +39 -0
  123. data/lib/generators/doorkeeper/install_generator.rb +19 -9
  124. data/lib/generators/doorkeeper/migration_generator.rb +23 -18
  125. data/lib/generators/doorkeeper/pkce_generator.rb +33 -0
  126. data/lib/generators/doorkeeper/previous_refresh_token_generator.rb +28 -22
  127. data/{spec/dummy/db/migrate/20180210183654_add_confidential_to_application.rb → lib/generators/doorkeeper/templates/add_confidential_to_applications.rb.erb} +2 -2
  128. data/lib/generators/doorkeeper/templates/add_owner_to_application_migration.rb.erb +3 -1
  129. data/lib/generators/doorkeeper/templates/add_previous_refresh_token_to_access_tokens.rb.erb +2 -0
  130. data/lib/generators/doorkeeper/templates/enable_pkce_migration.rb.erb +8 -0
  131. data/lib/generators/doorkeeper/templates/enable_polymorphic_resource_owner_migration.rb.erb +17 -0
  132. data/lib/generators/doorkeeper/templates/initializer.rb +402 -32
  133. data/lib/generators/doorkeeper/templates/migration.rb.erb +47 -18
  134. data/lib/generators/doorkeeper/views_generator.rb +8 -4
  135. data/vendor/assets/stylesheets/doorkeeper/bootstrap.min.css +4 -5
  136. metadata +97 -309
  137. data/.coveralls.yml +0 -1
  138. data/.github/ISSUE_TEMPLATE.md +0 -25
  139. data/.github/PULL_REQUEST_TEMPLATE.md +0 -17
  140. data/.gitignore +0 -19
  141. data/.hound.yml +0 -2
  142. data/.rspec +0 -1
  143. data/.rubocop.yml +0 -17
  144. data/.travis.yml +0 -38
  145. data/Appraisals +0 -18
  146. data/CODE_OF_CONDUCT.md +0 -46
  147. data/CONTRIBUTING.md +0 -47
  148. data/Gemfile +0 -10
  149. data/RELEASING.md +0 -10
  150. data/Rakefile +0 -20
  151. data/SECURITY.md +0 -15
  152. data/app/validators/redirect_uri_validator.rb +0 -44
  153. data/doorkeeper.gemspec +0 -32
  154. data/gemfiles/rails_4_2.gemfile +0 -13
  155. data/gemfiles/rails_5_0.gemfile +0 -12
  156. data/gemfiles/rails_5_1.gemfile +0 -12
  157. data/gemfiles/rails_5_2.gemfile +0 -12
  158. data/gemfiles/rails_master.gemfile +0 -14
  159. data/lib/doorkeeper/oauth/client_credentials/validation.rb +0 -45
  160. data/lib/generators/doorkeeper/add_client_confidentiality_generator.rb +0 -31
  161. data/lib/generators/doorkeeper/templates/add_confidential_to_application_migration.rb.erb +0 -11
  162. data/spec/controllers/application_metal_controller.rb +0 -10
  163. data/spec/controllers/applications_controller_spec.rb +0 -69
  164. data/spec/controllers/authorizations_controller_spec.rb +0 -218
  165. data/spec/controllers/protected_resources_controller_spec.rb +0 -309
  166. data/spec/controllers/token_info_controller_spec.rb +0 -56
  167. data/spec/controllers/tokens_controller_spec.rb +0 -274
  168. data/spec/dummy/Rakefile +0 -7
  169. data/spec/dummy/app/controllers/application_controller.rb +0 -3
  170. data/spec/dummy/app/controllers/custom_authorizations_controller.rb +0 -7
  171. data/spec/dummy/app/controllers/full_protected_resources_controller.rb +0 -12
  172. data/spec/dummy/app/controllers/home_controller.rb +0 -17
  173. data/spec/dummy/app/controllers/metal_controller.rb +0 -11
  174. data/spec/dummy/app/controllers/semi_protected_resources_controller.rb +0 -11
  175. data/spec/dummy/app/helpers/application_helper.rb +0 -5
  176. data/spec/dummy/app/models/user.rb +0 -5
  177. data/spec/dummy/app/views/home/index.html.erb +0 -0
  178. data/spec/dummy/app/views/layouts/application.html.erb +0 -14
  179. data/spec/dummy/config/application.rb +0 -23
  180. data/spec/dummy/config/boot.rb +0 -9
  181. data/spec/dummy/config/database.yml +0 -15
  182. data/spec/dummy/config/environment.rb +0 -5
  183. data/spec/dummy/config/environments/development.rb +0 -29
  184. data/spec/dummy/config/environments/production.rb +0 -62
  185. data/spec/dummy/config/environments/test.rb +0 -44
  186. data/spec/dummy/config/initializers/backtrace_silencers.rb +0 -7
  187. data/spec/dummy/config/initializers/doorkeeper.rb +0 -107
  188. data/spec/dummy/config/initializers/new_framework_defaults.rb +0 -6
  189. data/spec/dummy/config/initializers/secret_token.rb +0 -8
  190. data/spec/dummy/config/initializers/session_store.rb +0 -8
  191. data/spec/dummy/config/initializers/wrap_parameters.rb +0 -14
  192. data/spec/dummy/config/locales/doorkeeper.en.yml +0 -5
  193. data/spec/dummy/config/routes.rb +0 -52
  194. data/spec/dummy/config.ru +0 -4
  195. data/spec/dummy/db/migrate/20111122132257_create_users.rb +0 -11
  196. data/spec/dummy/db/migrate/20120312140401_add_password_to_users.rb +0 -7
  197. data/spec/dummy/db/migrate/20151223192035_create_doorkeeper_tables.rb +0 -62
  198. data/spec/dummy/db/migrate/20151223200000_add_owner_to_application.rb +0 -9
  199. data/spec/dummy/db/migrate/20160320211015_add_previous_refresh_token_to_access_tokens.rb +0 -13
  200. data/spec/dummy/db/schema.rb +0 -68
  201. data/spec/dummy/public/404.html +0 -26
  202. data/spec/dummy/public/422.html +0 -26
  203. data/spec/dummy/public/500.html +0 -26
  204. data/spec/dummy/public/favicon.ico +0 -0
  205. data/spec/dummy/script/rails +0 -6
  206. data/spec/factories.rb +0 -28
  207. data/spec/generators/application_owner_generator_spec.rb +0 -41
  208. data/spec/generators/install_generator_spec.rb +0 -31
  209. data/spec/generators/migration_generator_spec.rb +0 -41
  210. data/spec/generators/previous_refresh_token_generator_spec.rb +0 -57
  211. data/spec/generators/templates/routes.rb +0 -3
  212. data/spec/generators/views_generator_spec.rb +0 -27
  213. data/spec/grape/grape_integration_spec.rb +0 -135
  214. data/spec/helpers/doorkeeper/dashboard_helper_spec.rb +0 -24
  215. data/spec/lib/config_spec.rb +0 -437
  216. data/spec/lib/doorkeeper_spec.rb +0 -150
  217. data/spec/lib/models/expirable_spec.rb +0 -50
  218. data/spec/lib/models/revocable_spec.rb +0 -59
  219. data/spec/lib/models/scopes_spec.rb +0 -43
  220. data/spec/lib/oauth/authorization/uri_builder_spec.rb +0 -41
  221. data/spec/lib/oauth/authorization_code_request_spec.rb +0 -108
  222. data/spec/lib/oauth/base_request_spec.rb +0 -155
  223. data/spec/lib/oauth/base_response_spec.rb +0 -45
  224. data/spec/lib/oauth/client/credentials_spec.rb +0 -90
  225. data/spec/lib/oauth/client_credentials/creator_spec.rb +0 -44
  226. data/spec/lib/oauth/client_credentials/issuer_spec.rb +0 -86
  227. data/spec/lib/oauth/client_credentials/validation_spec.rb +0 -54
  228. data/spec/lib/oauth/client_credentials_integration_spec.rb +0 -27
  229. data/spec/lib/oauth/client_credentials_request_spec.rb +0 -105
  230. data/spec/lib/oauth/client_spec.rb +0 -39
  231. data/spec/lib/oauth/code_request_spec.rb +0 -43
  232. data/spec/lib/oauth/code_response_spec.rb +0 -34
  233. data/spec/lib/oauth/error_response_spec.rb +0 -61
  234. data/spec/lib/oauth/error_spec.rb +0 -23
  235. data/spec/lib/oauth/forbidden_token_response_spec.rb +0 -23
  236. data/spec/lib/oauth/helpers/scope_checker_spec.rb +0 -64
  237. data/spec/lib/oauth/helpers/unique_token_spec.rb +0 -20
  238. data/spec/lib/oauth/helpers/uri_checker_spec.rb +0 -213
  239. data/spec/lib/oauth/invalid_token_response_spec.rb +0 -56
  240. data/spec/lib/oauth/password_access_token_request_spec.rb +0 -96
  241. data/spec/lib/oauth/pre_authorization_spec.rb +0 -155
  242. data/spec/lib/oauth/refresh_token_request_spec.rb +0 -166
  243. data/spec/lib/oauth/scopes_spec.rb +0 -149
  244. data/spec/lib/oauth/token_request_spec.rb +0 -96
  245. data/spec/lib/oauth/token_response_spec.rb +0 -85
  246. data/spec/lib/oauth/token_spec.rb +0 -116
  247. data/spec/lib/request/strategy_spec.rb +0 -53
  248. data/spec/lib/server_spec.rb +0 -59
  249. data/spec/models/doorkeeper/access_grant_spec.rb +0 -36
  250. data/spec/models/doorkeeper/access_token_spec.rb +0 -418
  251. data/spec/models/doorkeeper/application_spec.rb +0 -286
  252. data/spec/requests/applications/applications_request_spec.rb +0 -94
  253. data/spec/requests/applications/authorized_applications_spec.rb +0 -30
  254. data/spec/requests/endpoints/authorization_spec.rb +0 -71
  255. data/spec/requests/endpoints/token_spec.rb +0 -71
  256. data/spec/requests/flows/authorization_code_errors_spec.rb +0 -76
  257. data/spec/requests/flows/authorization_code_spec.rb +0 -149
  258. data/spec/requests/flows/client_credentials_spec.rb +0 -86
  259. data/spec/requests/flows/implicit_grant_errors_spec.rb +0 -32
  260. data/spec/requests/flows/implicit_grant_spec.rb +0 -61
  261. data/spec/requests/flows/password_spec.rb +0 -197
  262. data/spec/requests/flows/refresh_token_spec.rb +0 -174
  263. data/spec/requests/flows/revoke_token_spec.rb +0 -157
  264. data/spec/requests/flows/skip_authorization_spec.rb +0 -59
  265. data/spec/requests/protected_resources/metal_spec.rb +0 -14
  266. data/spec/requests/protected_resources/private_api_spec.rb +0 -81
  267. data/spec/routing/custom_controller_routes_spec.rb +0 -75
  268. data/spec/routing/default_routes_spec.rb +0 -39
  269. data/spec/routing/scoped_routes_spec.rb +0 -31
  270. data/spec/spec_helper.rb +0 -4
  271. data/spec/spec_helper_integration.rb +0 -74
  272. data/spec/support/dependencies/factory_girl.rb +0 -2
  273. data/spec/support/helpers/access_token_request_helper.rb +0 -11
  274. data/spec/support/helpers/authorization_request_helper.rb +0 -41
  275. data/spec/support/helpers/config_helper.rb +0 -9
  276. data/spec/support/helpers/model_helper.rb +0 -72
  277. data/spec/support/helpers/request_spec_helper.rb +0 -88
  278. data/spec/support/helpers/url_helper.rb +0 -56
  279. data/spec/support/http_method_shim.rb +0 -38
  280. data/spec/support/orm/active_record.rb +0 -3
  281. data/spec/support/shared/controllers_shared_context.rb +0 -65
  282. data/spec/support/shared/models_shared_examples.rb +0 -52
  283. data/spec/validators/redirect_uri_validator_spec.rb +0 -123
  284. data/spec/version/version_spec.rb +0 -15
@@ -1,54 +1,18 @@
1
- module Doorkeeper
2
- class MissingConfiguration < StandardError
3
- # Defines a MissingConfiguration error for a missing Doorkeeper
4
- # configuration
5
- def initialize
6
- super('Configuration for doorkeeper missing. Do you have doorkeeper initializer?')
7
- end
8
- end
1
+ # frozen_string_literal: true
9
2
 
10
- def self.configure(&block)
11
- @config = Config::Builder.new(&block).build
12
- setup_orm_adapter
13
- setup_orm_models
14
- setup_application_owner if @config.enable_application_owner?
15
- end
16
-
17
- def self.configuration
18
- @config || (fail MissingConfiguration)
19
- end
20
-
21
- def self.setup_orm_adapter
22
- @orm_adapter = "doorkeeper/orm/#{configuration.orm}".classify.constantize
23
- rescue NameError => e
24
- fail e, "ORM adapter not found (#{configuration.orm})", <<-ERROR_MSG.squish
25
- [doorkeeper] ORM adapter not found (#{configuration.orm}), or there was an error
26
- trying to load it.
27
-
28
- You probably need to add the related gem for this adapter to work with
29
- doorkeeper.
30
- ERROR_MSG
31
- end
32
-
33
- def self.setup_orm_models
34
- @orm_adapter.initialize_models!
35
- end
36
-
37
- def self.setup_application_owner
38
- @orm_adapter.initialize_application_owner!
39
- end
3
+ require "doorkeeper/config/abstract_builder"
4
+ require "doorkeeper/config/option"
5
+ require "doorkeeper/config/validations"
40
6
 
7
+ module Doorkeeper
8
+ # Doorkeeper option DSL could be reused in extensions to build their own
9
+ # configurations. To use the Option DSL gems need to define `builder_class` method
10
+ # that returns configuration Builder class. This exception raises when they don't
11
+ # define it.
12
+ #
41
13
  class Config
42
- class Builder
43
- def initialize(&block)
44
- @config = Config.new
45
- instance_eval(&block)
46
- end
47
-
48
- def build
49
- @config
50
- end
51
-
14
+ # Default Doorkeeper configuration builder
15
+ class Builder < AbstractBuilder
52
16
  # Provide support for an owner to be assigned to each registered
53
17
  # application (disabled by default)
54
18
  # Optional parameter confirmation: true (default false) if you want
@@ -83,6 +47,13 @@ doorkeeper.
83
47
  @config.instance_variable_set(:@optional_scopes, OAuth::Scopes.from_array(scopes))
84
48
  end
85
49
 
50
+ # Define scopes_by_grant_type to limit certain scope to certain grant_type
51
+ # @param { Hash } with grant_types as keys.
52
+ # Default set to {} i.e. no limitation on scopes usage
53
+ def scopes_by_grant_type(hash = {})
54
+ @config.instance_variable_set(:@scopes_by_grant_type, hash)
55
+ end
56
+
86
57
  # Change the way client credentials are retrieved from the request object.
87
58
  # By default it retrieves first from the `HTTP_AUTHORIZATION` header, then
88
59
  # falls back to the `:client_id` and `:client_secret` params from the
@@ -90,7 +61,7 @@ doorkeeper.
90
61
  #
91
62
  # @param methods [Array] Define client credentials
92
63
  def client_credentials(*methods)
93
- @config.instance_variable_set(:@client_credentials, methods)
64
+ @config.instance_variable_set(:@client_credentials_methods, methods)
94
65
  end
95
66
 
96
67
  # Change the way access token is authenticated from the request object.
@@ -103,9 +74,12 @@ doorkeeper.
103
74
  @config.instance_variable_set(:@access_token_methods, methods)
104
75
  end
105
76
 
106
- # Issue access tokens with refresh token (disabled by default)
107
- def use_refresh_token
108
- @config.instance_variable_set(:@refresh_token_enabled, true)
77
+ # Issue access tokens with refresh token (disabled if not set)
78
+ def use_refresh_token(enabled = true, &block)
79
+ @config.instance_variable_set(
80
+ :@refresh_token_enabled,
81
+ block || enabled,
82
+ )
109
83
  end
110
84
 
111
85
  # Reuse access token for the same resource owner within an application
@@ -114,95 +88,201 @@ doorkeeper.
114
88
  def reuse_access_token
115
89
  @config.instance_variable_set(:@reuse_access_token, true)
116
90
  end
117
- end
118
91
 
119
- module Option
120
- # Defines configuration option
121
- #
122
- # When you call option, it defines two methods. One method will take place
123
- # in the +Config+ class and the other method will take place in the
124
- # +Builder+ class.
125
- #
126
- # The +name+ parameter will set both builder method and config attribute.
127
- # If the +:as+ option is defined, the builder method will be the specified
128
- # option while the config attribute will be the +name+ parameter.
129
- #
130
- # If you want to introduce another level of config DSL you can
131
- # define +builder_class+ parameter.
132
- # Builder should take a block as the initializer parameter and respond to function +build+
133
- # that returns the value of the config attribute.
134
- #
135
- # ==== Options
136
- #
137
- # * [:+as+] Set the builder method that goes inside +configure+ block
138
- # * [+:default+] The default value in case no option was set
139
- #
140
- # ==== Examples
92
+ # Choose to use the url path for native autorization codes
93
+ # Enabling this flag sets the authorization code response route for
94
+ # native redirect uris to oauth/authorize/<code>. The default is
95
+ # oauth/authorize/native?code=<code>.
96
+ # Rationale: https://github.com/doorkeeper-gem/doorkeeper/issues/1143
97
+ def use_url_path_for_native_authorization
98
+ @config.instance_variable_set(:@use_url_path_for_native_authorization, true)
99
+ end
100
+
101
+ # TODO: maybe make it more generic for other flows too?
102
+ # Only allow one valid access token obtained via client credentials
103
+ # per client. If a new access token is obtained before the old one
104
+ # expired, the old one gets revoked (disabled by default)
105
+ def revoke_previous_client_credentials_token
106
+ @config.instance_variable_set(:@revoke_previous_client_credentials_token, true)
107
+ end
108
+
109
+ # Use an API mode for applications generated with --api argument
110
+ # It will skip applications controller, disable forgery protection
111
+ def api_only
112
+ @config.instance_variable_set(:@api_only, true)
113
+ end
114
+
115
+ # Enables polymorphic Resource Owner association for Access Grant and
116
+ # Access Token models. Requires additional database columns to be setup.
117
+ def use_polymorphic_resource_owner
118
+ @config.instance_variable_set(:@polymorphic_resource_owner, true)
119
+ end
120
+
121
+ # Forbids creating/updating applications with arbitrary scopes that are
122
+ # not in configuration, i.e. `default_scopes` or `optional_scopes`.
123
+ # (disabled by default)
124
+ def enforce_configured_scopes
125
+ @config.instance_variable_set(:@enforce_configured_scopes, true)
126
+ end
127
+
128
+ # Enforce request content type as the spec requires:
129
+ # disabled by default for backward compatibility.
130
+ def enforce_content_type
131
+ @config.instance_variable_set(:@enforce_content_type, true)
132
+ end
133
+
134
+ # Allow optional hashing of input tokens before persisting them.
135
+ # Will be used for hashing of input token and grants.
141
136
  #
142
- # option :name
143
- # option :name, as: :set_name
144
- # option :name, default: 'My Name'
145
- # option :scopes builder_class: ScopesBuilder
137
+ # @param using
138
+ # Provide a different secret storage implementation class for tokens
139
+ # @param fallback
140
+ # Provide a fallback secret storage implementation class for tokens
141
+ # or use :plain to fallback to plain tokens
142
+ def hash_token_secrets(using: nil, fallback: nil)
143
+ default = "::Doorkeeper::SecretStoring::Sha256Hash"
144
+ configure_secrets_for :token,
145
+ using: using || default,
146
+ fallback: fallback
147
+ end
148
+
149
+ # Allow optional hashing of application secrets before persisting them.
150
+ # Will be used for hashing of input token and grants.
146
151
  #
147
- def option(name, options = {})
148
- attribute = options[:as] || name
149
- attribute_builder = options[:builder_class]
150
-
151
- Builder.instance_eval do
152
- remove_method name if method_defined?(name)
153
- define_method name do |*args, &block|
154
- # TODO: is builder_class option being used?
155
- value = if attribute_builder
156
- attribute_builder.new(&block).build
157
- else
158
- block ? block : args.first
159
- end
160
-
161
- @config.instance_variable_set(:"@#{attribute}", value)
162
- end
163
- end
152
+ # @param using
153
+ # Provide a different secret storage implementation for applications
154
+ # @param fallback
155
+ # Provide a fallback secret storage implementation for applications
156
+ # or use :plain to fallback to plain application secrets
157
+ def hash_application_secrets(using: nil, fallback: nil)
158
+ default = "::Doorkeeper::SecretStoring::Sha256Hash"
159
+ configure_secrets_for :application,
160
+ using: using || default,
161
+ fallback: fallback
162
+ end
163
+
164
+ private
164
165
 
165
- define_method attribute do |*_args|
166
- if instance_variable_defined?(:"@#{attribute}")
167
- instance_variable_get(:"@#{attribute}")
168
- else
169
- options[:default]
170
- end
166
+ # Configure the secret storing functionality
167
+ def configure_secrets_for(type, using:, fallback:)
168
+ raise ArgumentError, "Invalid type #{type}" if %i[application token].exclude?(type)
169
+
170
+ @config.instance_variable_set(:"@#{type}_secret_strategy", using.constantize)
171
+
172
+ if fallback.nil?
173
+ return
174
+ elsif fallback.to_sym == :plain
175
+ fallback = "::Doorkeeper::SecretStoring::Plain"
171
176
  end
172
177
 
173
- public attribute
178
+ @config.instance_variable_set(:"@#{type}_secret_fallback_strategy", fallback.constantize)
174
179
  end
175
180
  end
176
181
 
182
+ # Replace with `default: Builder` when we drop support of Rails < 5.2
183
+ mattr_reader(:builder_class) { Builder }
184
+
177
185
  extend Option
186
+ include Validations
178
187
 
179
188
  option :resource_owner_authenticator,
180
189
  as: :authenticate_resource_owner,
181
190
  default: (lambda do |_routes|
182
- ::Rails.logger.warn(I18n.t('doorkeeper.errors.messages.resource_owner_authenticator_not_configured'))
191
+ ::Rails.logger.warn(
192
+ I18n.t("doorkeeper.errors.messages.resource_owner_authenticator_not_configured"),
193
+ )
194
+
183
195
  nil
184
196
  end)
185
197
 
186
198
  option :admin_authenticator,
187
199
  as: :authenticate_admin,
188
- default: ->(_routes) {}
200
+ default: (lambda do |_routes|
201
+ ::Rails.logger.warn(
202
+ I18n.t("doorkeeper.errors.messages.admin_authenticator_not_configured"),
203
+ )
204
+
205
+ head :forbidden
206
+ end)
189
207
 
190
208
  option :resource_owner_from_credentials,
191
209
  default: (lambda do |_routes|
192
- ::Rails.logger.warn(I18n.t('doorkeeper.errors.messages.credential_flow_not_configured'))
210
+ ::Rails.logger.warn(
211
+ I18n.t("doorkeeper.errors.messages.credential_flow_not_configured"),
212
+ )
213
+
193
214
  nil
194
215
  end)
195
- option :before_successful_strategy_response, default: ->(_request) {}
196
- option :after_successful_strategy_response,
197
- default: ->(_request, _response) {}
216
+
217
+ # Hooks for authorization
218
+ option :before_successful_authorization, default: ->(_controller, _context = nil) {}
219
+ option :after_successful_authorization, default: ->(_controller, _context = nil) {}
220
+ # Hooks for strategies responses
221
+ option :before_successful_strategy_response, default: ->(_request) {}
222
+ option :after_successful_strategy_response, default: ->(_request, _response) {}
223
+ # Allows to customize Token Introspection response
224
+ option :custom_introspection_response, default: ->(_token, _context) { {} }
225
+
198
226
  option :skip_authorization, default: ->(_routes) {}
199
227
  option :access_token_expires_in, default: 7200
200
- option :custom_access_token_expires_in, default: ->(_app) { nil }
228
+ option :custom_access_token_expires_in, default: ->(_context) { nil }
201
229
  option :authorization_code_expires_in, default: 600
202
230
  option :orm, default: :active_record
203
- option :native_redirect_uri, default: 'urn:ietf:wg:oauth:2.0:oob'
204
- option :active_record_options, default: {}
231
+ option :native_redirect_uri, default: "urn:ietf:wg:oauth:2.0:oob", deprecated: true
205
232
  option :grant_flows, default: %w[authorization_code client_credentials]
233
+ option :handle_auth_errors, default: :render
234
+ option :token_lookup_batch_size, default: 10_000
235
+ # Sets the token_reuse_limit
236
+ # It will be used only when reuse_access_token option in enabled
237
+ # By default it will be 100
238
+ # It will be used for token reusablity to some threshold percentage
239
+ # Rationale: https://github.com/doorkeeper-gem/doorkeeper/issues/1189
240
+ option :token_reuse_limit, default: 100
241
+
242
+ # Don't require client authentication for password grants. If client credentials
243
+ # are present they will still be validated, and the grant rejected if the credentials
244
+ # are invalid.
245
+ #
246
+ # This is discouraged. Spec says that password grants always require a client.
247
+ #
248
+ # See https://github.com/doorkeeper-gem/doorkeeper/issues/1412#issuecomment-632750422
249
+ # and https://github.com/doorkeeper-gem/doorkeeper/pull/1420
250
+ #
251
+ # Since many applications use this unsafe behavior in the wild, this is kept as a
252
+ # not-recommended option. You should be aware that you are not following the OAuth
253
+ # spec, and understand the security implications of doing so.
254
+ option :skip_client_authentication_for_password_grant,
255
+ default: false
256
+
257
+ # Hook to allow arbitrary user-client authorization
258
+ option :authorize_resource_owner_for_client,
259
+ default: ->(_client, _resource_owner) { true }
260
+
261
+ # Allows to customize OAuth grant flows that +each+ application support.
262
+ # You can configure a custom block (or use a class respond to `#call`) that must
263
+ # return `true` in case Application instance supports requested OAuth grant flow
264
+ # during the authorization request to the server. This configuration +doesn't+
265
+ # set flows per application, it only allows to check if application supports
266
+ # specific grant flow.
267
+ #
268
+ # For example you can add an additional database column to `oauth_applications` table,
269
+ # say `t.array :grant_flows, default: []`, and store allowed grant flows that can
270
+ # be used with this application there. Then when authorization requested Doorkeeper
271
+ # will call this block to check if specific Application (passed with client_id and/or
272
+ # client_secret) is allowed to perform the request for the specific grant type
273
+ # (authorization, password, client_credentials, etc).
274
+ #
275
+ # Example of the block:
276
+ #
277
+ # ->(flow, client) { client.grant_flows.include?(flow) }
278
+ #
279
+ # In case this option invocation result is `false`, Doorkeeper server returns
280
+ # :unauthorized_client error and stops the request.
281
+ #
282
+ # @param allow_grant_flow_for_client [Proc] Block or any object respond to #call
283
+ # @return [Boolean] `true` if allow or `false` if forbid the request
284
+ #
285
+ option :allow_grant_flow_for_client, default: ->(_grant_flow, _client) { true }
206
286
 
207
287
  # Allows to forbid specific Application redirect URI's by custom rules.
208
288
  # Doesn't forbid any URI by default.
@@ -215,7 +295,7 @@ doorkeeper.
215
295
  #
216
296
  # @param realm [String] ("Doorkeeper") Authentication realm
217
297
  #
218
- option :realm, default: 'Doorkeeper'
298
+ option :realm, default: "Doorkeeper"
219
299
 
220
300
  # Forces the usage of the HTTPS protocol in non-native redirect uris
221
301
  # (enabled by default in non-development environments). OAuth2
@@ -232,39 +312,205 @@ doorkeeper.
232
312
  #
233
313
  option :force_ssl_in_redirect_uri, default: !Rails.env.development?
234
314
 
235
-
236
315
  # Use a custom class for generating the access token.
237
- # https://github.com/doorkeeper-gem/doorkeeper#custom-access-token-generator
316
+ # https://doorkeeper.gitbook.io/guides/configuration/other-configurations#custom-access-token-generator
238
317
  #
239
318
  # @param access_token_generator [String]
240
319
  # the name of the access token generator class
241
320
  #
242
321
  option :access_token_generator,
243
- default: 'Doorkeeper::OAuth::Helpers::UniqueToken'
322
+ default: "Doorkeeper::OAuth::Helpers::UniqueToken"
323
+
324
+ # Allows additional data to be received when granting access to an Application, and for this
325
+ # additional data to be sent with subsequently generated access tokens. The access grant and
326
+ # access token models will both need to respond to the specified attribute names.
327
+ #
328
+ # @param attributes [Array] The array of custom attribute names to be saved
329
+ #
330
+ option :custom_access_token_attributes,
331
+ default: []
332
+
333
+ # Use a custom class for generating the application secret.
334
+ # https://doorkeeper.gitbook.io/guides/configuration/other-configurations#custom-application-secret-generator
335
+ #
336
+ # @param application_secret_generator [String]
337
+ # the name of the application secret generator class
338
+ #
339
+ option :application_secret_generator,
340
+ default: "Doorkeeper::OAuth::Helpers::UniqueToken"
341
+
342
+ # Default access token generator is a SecureRandom class from Ruby stdlib.
343
+ # This option defines which method will be used to generate a unique token value.
344
+ #
345
+ # @param default_generator_method [Symbol]
346
+ # the method name of the default access token generator
347
+ #
348
+ option :default_generator_method, default: :urlsafe_base64
244
349
 
245
350
  # The controller Doorkeeper::ApplicationController inherits from.
246
351
  # Defaults to ActionController::Base.
247
- # https://github.com/doorkeeper-gem/doorkeeper#custom-base-controller
352
+ # https://doorkeeper.gitbook.io/guides/configuration/other-configurations#custom-controllers
248
353
  #
249
354
  # @param base_controller [String] the name of the base controller
250
355
  option :base_controller,
251
- default: 'ActionController::Base'
356
+ default: (lambda do
357
+ api_only ? "ActionController::API" : "ActionController::Base"
358
+ end)
359
+
360
+ # The controller Doorkeeper::ApplicationMetalController inherits from.
361
+ # Defaults to ActionController::API.
362
+ #
363
+ # @param base_metal_controller [String] the name of the base controller
364
+ option :base_metal_controller,
365
+ default: "ActionController::API"
366
+
367
+ option :access_token_class,
368
+ default: "Doorkeeper::AccessToken"
369
+
370
+ option :access_grant_class,
371
+ default: "Doorkeeper::AccessGrant"
252
372
 
253
- attr_reader :reuse_access_token
373
+ option :application_class,
374
+ default: "Doorkeeper::Application"
375
+
376
+ # Allows to set blank redirect URIs for Applications in case
377
+ # server configured to use URI-less grant flows.
378
+ #
379
+ option :allow_blank_redirect_uri,
380
+ default: (lambda do |grant_flows, _application|
381
+ grant_flows.exclude?("authorization_code") &&
382
+ grant_flows.exclude?("implicit")
383
+ end)
384
+
385
+ # Configure protection of token introspection request.
386
+ # By default this configuration allows to introspect a token by
387
+ # another token of the same application, or to introspect the token
388
+ # that belongs to authorized client, or access token has been introspected
389
+ # is a public one (doesn't belong to any client)
390
+ #
391
+ # You can define any custom rule you need or just disable token
392
+ # introspection at all.
393
+ #
394
+ # @param token [Doorkeeper::AccessToken]
395
+ # token to be introspected
396
+ #
397
+ # @param authorized_client [Doorkeeper::Application]
398
+ # authorized client (if request is authorized using Basic auth with
399
+ # Client Credentials for example)
400
+ #
401
+ # @param authorized_token [Doorkeeper::AccessToken]
402
+ # Bearer token used to authorize the request
403
+ #
404
+ option :allow_token_introspection,
405
+ default: (lambda do |token, authorized_client, authorized_token|
406
+ if authorized_token
407
+ authorized_token.application == token&.application
408
+ elsif token.application
409
+ authorized_client == token.application
410
+ else
411
+ true
412
+ end
413
+ end)
414
+
415
+ attr_reader :reuse_access_token,
416
+ :token_secret_fallback_strategy,
417
+ :application_secret_fallback_strategy
418
+
419
+ def clear_cache!
420
+ %i[
421
+ application_model
422
+ access_token_model
423
+ access_grant_model
424
+ ].each do |var|
425
+ remove_instance_variable("@#{var}") if instance_variable_defined?("@#{var}")
426
+ end
427
+ end
428
+
429
+ # Doorkeeper Access Token model class.
430
+ #
431
+ # @return [ActiveRecord::Base, Mongoid::Document, Sequel::Model]
432
+ #
433
+ def access_token_model
434
+ @access_token_model ||= access_token_class.constantize
435
+ end
436
+
437
+ # Doorkeeper Access Grant model class.
438
+ #
439
+ # @return [ActiveRecord::Base, Mongoid::Document, Sequel::Model]
440
+ #
441
+ def access_grant_model
442
+ @access_grant_model ||= access_grant_class.constantize
443
+ end
444
+
445
+ # Doorkeeper Application model class.
446
+ #
447
+ # @return [ActiveRecord::Base, Mongoid::Document, Sequel::Model]
448
+ #
449
+ def application_model
450
+ @application_model ||= application_class.constantize
451
+ end
452
+
453
+ def api_only
454
+ @api_only ||= false
455
+ end
456
+
457
+ def enforce_content_type
458
+ @enforce_content_type ||= false
459
+ end
254
460
 
255
461
  def refresh_token_enabled?
256
- @refresh_token_enabled ||= false
257
- !!@refresh_token_enabled
462
+ if defined?(@refresh_token_enabled)
463
+ @refresh_token_enabled
464
+ else
465
+ false
466
+ end
467
+ end
468
+
469
+ def resolve_controller(name)
470
+ config_option = public_send(:"#{name}_controller")
471
+ controller_name = if config_option.respond_to?(:call)
472
+ instance_exec(&config_option)
473
+ else
474
+ config_option
475
+ end
476
+
477
+ controller_name.constantize
478
+ end
479
+
480
+ def revoke_previous_client_credentials_token?
481
+ option_set? :revoke_previous_client_credentials_token
482
+ end
483
+
484
+ def enforce_configured_scopes?
485
+ option_set? :enforce_configured_scopes
258
486
  end
259
487
 
260
488
  def enable_application_owner?
261
- @enable_application_owner ||= false
262
- !!@enable_application_owner
489
+ option_set? :enable_application_owner
490
+ end
491
+
492
+ def polymorphic_resource_owner?
493
+ option_set? :polymorphic_resource_owner
263
494
  end
264
495
 
265
496
  def confirm_application_owner?
266
- @confirm_application_owner ||= false
267
- !!@confirm_application_owner
497
+ option_set? :confirm_application_owner
498
+ end
499
+
500
+ def raise_on_errors?
501
+ handle_auth_errors == :raise
502
+ end
503
+
504
+ def application_secret_hashed?
505
+ instance_variable_defined?(:"@application_secret_strategy")
506
+ end
507
+
508
+ def token_secret_strategy
509
+ @token_secret_strategy ||= ::Doorkeeper::SecretStoring::Plain
510
+ end
511
+
512
+ def application_secret_strategy
513
+ @application_secret_strategy ||= ::Doorkeeper::SecretStoring::Plain
268
514
  end
269
515
 
270
516
  def default_scopes
@@ -279,41 +525,130 @@ doorkeeper.
279
525
  @scopes ||= default_scopes + optional_scopes
280
526
  end
281
527
 
528
+ def scopes_by_grant_type
529
+ @scopes_by_grant_type ||= {}
530
+ end
531
+
282
532
  def client_credentials_methods
283
- @client_credentials ||= %i[from_basic from_params]
533
+ @client_credentials_methods ||= %i[from_basic from_params]
284
534
  end
285
535
 
286
536
  def access_token_methods
287
- @access_token_methods ||= %i[from_bearer_authorization from_access_token_param from_bearer_param]
537
+ @access_token_methods ||= %i[
538
+ from_bearer_authorization
539
+ from_access_token_param
540
+ from_bearer_param
541
+ ]
542
+ end
543
+
544
+ def enabled_grant_flows
545
+ @enabled_grant_flows ||= calculate_grant_flows.map { |name| Doorkeeper::GrantFlow.get(name) }.compact
546
+ end
547
+
548
+ def authorization_response_flows
549
+ @authorization_response_flows ||= enabled_grant_flows.select(&:handles_response_type?) +
550
+ deprecated_authorization_flows
551
+ end
552
+
553
+ def token_grant_flows
554
+ @token_grant_flows ||= calculate_token_grant_flows
288
555
  end
289
556
 
290
557
  def authorization_response_types
291
- @authorization_response_types ||= calculate_authorization_response_types
558
+ authorization_response_flows.map(&:response_type_matches)
292
559
  end
293
560
 
294
561
  def token_grant_types
295
- @token_grant_types ||= calculate_token_grant_types
562
+ token_grant_flows.map(&:grant_type_matches)
296
563
  end
297
564
 
298
- private
565
+ # [NOTE]: deprecated and will be removed soon
566
+ def deprecated_token_grant_types_resolver
567
+ @deprecated_token_grant_types ||= calculate_token_grant_types
568
+ end
569
+
570
+ def native_authorization_code_route
571
+ @use_url_path_for_native_authorization = false unless defined?(@use_url_path_for_native_authorization)
572
+ @use_url_path_for_native_authorization ? '/:code' : '/native'
573
+ end
299
574
 
300
- # Determines what values are acceptable for 'response_type' param in
301
- # authorization request endpoint, and return them as an array of strings.
302
- #
575
+ # [NOTE]: deprecated and will be removed soon
576
+ def deprecated_authorization_flows
577
+ response_types = calculate_authorization_response_types
578
+
579
+ if response_types.any?
580
+ ::Kernel.warn <<~WARNING
581
+ Please, don't patch Doorkeeper::Config#calculate_authorization_response_types method.
582
+ Register your custom grant flows using the public API:
583
+ `Doorkeeper::GrantFlow.register(grant_flow_name, **options)`.
584
+ WARNING
585
+ end
586
+
587
+ response_types.map do |response_type|
588
+ Doorkeeper::GrantFlow::FallbackFlow.new(response_type, response_type_matches: response_type)
589
+ end
590
+ end
591
+
592
+ # [NOTE]: deprecated and will be removed soon
303
593
  def calculate_authorization_response_types
304
- types = []
305
- types << 'code' if grant_flows.include? 'authorization_code'
306
- types << 'token' if grant_flows.include? 'implicit'
307
- types
594
+ []
308
595
  end
309
596
 
310
- # Determines what values are acceptable for 'grant_type' param token
311
- # request endpoint, and return them in array.
312
- #
597
+ # [NOTE]: deprecated and will be removed soon
313
598
  def calculate_token_grant_types
314
- types = grant_flows - ['implicit']
315
- types << 'refresh_token' if refresh_token_enabled?
599
+ types = grant_flows - ["implicit"]
600
+ types << "refresh_token" if refresh_token_enabled?
316
601
  types
317
602
  end
603
+
604
+ # Calculates grant flows configured by the user in Doorkeeper
605
+ # configuration considering registered aliases that is exposed
606
+ # to single or multiple other flows.
607
+ #
608
+ def calculate_grant_flows
609
+ configured_flows = grant_flows.map(&:to_s)
610
+ aliases = Doorkeeper::GrantFlow.aliases.keys.map(&:to_s)
611
+
612
+ flows = configured_flows - aliases
613
+ aliases.each do |flow_alias|
614
+ next unless configured_flows.include?(flow_alias)
615
+
616
+ flows.concat(Doorkeeper::GrantFlow.expand_alias(flow_alias))
617
+ end
618
+
619
+ flows.flatten.uniq
620
+ end
621
+
622
+ def allow_blank_redirect_uri?(application = nil)
623
+ if allow_blank_redirect_uri.respond_to?(:call)
624
+ allow_blank_redirect_uri.call(grant_flows, application)
625
+ else
626
+ allow_blank_redirect_uri
627
+ end
628
+ end
629
+
630
+ def allow_grant_flow_for_client?(grant_flow, client)
631
+ return true unless option_defined?(:allow_grant_flow_for_client)
632
+
633
+ allow_grant_flow_for_client.call(grant_flow, client)
634
+ end
635
+
636
+ def option_defined?(name)
637
+ instance_variable_defined?("@#{name}")
638
+ end
639
+
640
+ private
641
+
642
+ # Helper to read boolearized configuration option
643
+ def option_set?(instance_key)
644
+ var = instance_variable_get("@#{instance_key}")
645
+ !!(defined?(var) && var)
646
+ end
647
+
648
+ def calculate_token_grant_flows
649
+ flows = enabled_grant_flows.select(&:handles_grant_type?)
650
+ flows << Doorkeeper::GrantFlow.get("refresh_token") if refresh_token_enabled?
651
+ flows
652
+ end
318
653
  end
319
654
  end