doorkeeper 5.1.0 → 5.5.0
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of doorkeeper might be problematic. Click here for more details.
- checksums.yaml +4 -4
- data/{NEWS.md → CHANGELOG.md} +234 -25
- data/README.md +21 -11
- data/app/controllers/doorkeeper/application_controller.rb +2 -2
- data/app/controllers/doorkeeper/application_metal_controller.rb +3 -2
- data/app/controllers/doorkeeper/applications_controller.rb +8 -7
- data/app/controllers/doorkeeper/authorizations_controller.rb +56 -19
- data/app/controllers/doorkeeper/authorized_applications_controller.rb +5 -5
- data/app/controllers/doorkeeper/token_info_controller.rb +12 -2
- data/app/controllers/doorkeeper/tokens_controller.rb +93 -25
- data/app/views/doorkeeper/applications/_form.html.erb +1 -7
- data/app/views/doorkeeper/applications/show.html.erb +35 -14
- data/app/views/doorkeeper/authorizations/form_post.html.erb +11 -0
- data/config/locales/en.yml +13 -3
- data/lib/doorkeeper/config/abstract_builder.rb +28 -0
- data/lib/doorkeeper/config/option.rb +20 -2
- data/lib/doorkeeper/config/validations.rb +53 -0
- data/lib/doorkeeper/config.rb +291 -121
- data/lib/doorkeeper/engine.rb +1 -1
- data/lib/doorkeeper/errors.rb +13 -18
- data/lib/doorkeeper/grant_flow/fallback_flow.rb +15 -0
- data/lib/doorkeeper/grant_flow/flow.rb +44 -0
- data/lib/doorkeeper/grant_flow/registry.rb +50 -0
- data/lib/doorkeeper/grant_flow.rb +45 -0
- data/lib/doorkeeper/grape/helpers.rb +7 -3
- data/lib/doorkeeper/helpers/controller.rb +36 -11
- data/lib/doorkeeper/models/access_grant_mixin.rb +22 -18
- data/lib/doorkeeper/models/access_token_mixin.rb +194 -51
- data/lib/doorkeeper/models/application_mixin.rb +8 -7
- data/lib/doorkeeper/models/concerns/ownership.rb +1 -1
- data/lib/doorkeeper/models/concerns/resource_ownerable.rb +47 -0
- data/lib/doorkeeper/models/concerns/reusable.rb +1 -1
- data/lib/doorkeeper/models/concerns/revocable.rb +1 -28
- data/lib/doorkeeper/models/concerns/scopes.rb +5 -1
- data/lib/doorkeeper/models/concerns/secret_storable.rb +1 -3
- data/lib/doorkeeper/oauth/authorization/code.rb +25 -14
- data/lib/doorkeeper/oauth/authorization/context.rb +5 -5
- data/lib/doorkeeper/oauth/authorization/token.rb +24 -19
- data/lib/doorkeeper/oauth/authorization/uri_builder.rb +4 -4
- data/lib/doorkeeper/oauth/authorization_code_request.rb +40 -21
- data/lib/doorkeeper/oauth/base_request.rb +21 -23
- data/lib/doorkeeper/oauth/client/credentials.rb +2 -4
- data/lib/doorkeeper/oauth/client.rb +8 -9
- data/lib/doorkeeper/oauth/client_credentials/creator.rb +45 -5
- data/lib/doorkeeper/oauth/client_credentials/issuer.rb +10 -8
- data/lib/doorkeeper/oauth/client_credentials/{validation.rb → validator.rb} +13 -3
- data/lib/doorkeeper/oauth/client_credentials_request.rb +8 -7
- data/lib/doorkeeper/oauth/code_request.rb +6 -12
- data/lib/doorkeeper/oauth/code_response.rb +24 -14
- data/lib/doorkeeper/oauth/error.rb +1 -1
- data/lib/doorkeeper/oauth/error_response.rb +10 -11
- data/lib/doorkeeper/oauth/helpers/scope_checker.rb +8 -12
- data/lib/doorkeeper/oauth/helpers/unique_token.rb +8 -5
- data/lib/doorkeeper/oauth/helpers/uri_checker.rb +19 -5
- data/lib/doorkeeper/oauth/hooks/context.rb +21 -0
- data/lib/doorkeeper/oauth/invalid_request_response.rb +43 -0
- data/lib/doorkeeper/oauth/invalid_token_response.rb +7 -4
- data/lib/doorkeeper/oauth/nonstandard.rb +39 -0
- data/lib/doorkeeper/oauth/password_access_token_request.rb +32 -10
- data/lib/doorkeeper/oauth/pre_authorization.rb +111 -42
- data/lib/doorkeeper/oauth/refresh_token_request.rb +45 -33
- data/lib/doorkeeper/oauth/token.rb +6 -7
- data/lib/doorkeeper/oauth/token_introspection.rb +24 -18
- data/lib/doorkeeper/oauth/token_request.rb +6 -20
- data/lib/doorkeeper/oauth/token_response.rb +1 -1
- data/lib/doorkeeper/orm/active_record/access_grant.rb +4 -43
- data/lib/doorkeeper/orm/active_record/access_token.rb +4 -35
- data/lib/doorkeeper/orm/active_record/application.rb +5 -83
- data/lib/doorkeeper/orm/active_record/mixins/access_grant.rb +68 -0
- data/lib/doorkeeper/orm/active_record/mixins/access_token.rb +59 -0
- data/lib/doorkeeper/orm/active_record/mixins/application.rb +198 -0
- data/lib/doorkeeper/orm/active_record/redirect_uri_validator.rb +66 -0
- data/lib/doorkeeper/orm/active_record.rb +20 -6
- data/lib/doorkeeper/rails/helpers.rb +4 -4
- data/lib/doorkeeper/rails/routes/abstract_router.rb +35 -0
- data/lib/doorkeeper/rails/routes/mapper.rb +2 -2
- data/lib/doorkeeper/rails/routes/registry.rb +45 -0
- data/lib/doorkeeper/rails/routes.rb +17 -25
- data/lib/doorkeeper/rake/db.rake +6 -6
- data/lib/doorkeeper/rake/setup.rake +5 -0
- data/lib/doorkeeper/request/authorization_code.rb +5 -3
- data/lib/doorkeeper/request/client_credentials.rb +2 -2
- data/lib/doorkeeper/request/password.rb +2 -2
- data/lib/doorkeeper/request/refresh_token.rb +5 -4
- data/lib/doorkeeper/request/strategy.rb +2 -2
- data/lib/doorkeeper/request.rb +49 -17
- data/lib/doorkeeper/server.rb +7 -11
- data/lib/doorkeeper/stale_records_cleaner.rb +6 -2
- data/lib/doorkeeper/version.rb +1 -5
- data/lib/doorkeeper.rb +114 -79
- data/lib/generators/doorkeeper/application_owner_generator.rb +1 -1
- data/lib/generators/doorkeeper/confidential_applications_generator.rb +2 -2
- data/lib/generators/doorkeeper/enable_polymorphic_resource_owner_generator.rb +39 -0
- data/lib/generators/doorkeeper/migration_generator.rb +1 -1
- data/lib/generators/doorkeeper/pkce_generator.rb +1 -1
- data/lib/generators/doorkeeper/previous_refresh_token_generator.rb +7 -7
- data/lib/generators/doorkeeper/templates/add_owner_to_application_migration.rb.erb +3 -1
- data/lib/generators/doorkeeper/templates/add_previous_refresh_token_to_access_tokens.rb.erb +2 -0
- data/lib/generators/doorkeeper/templates/enable_pkce_migration.rb.erb +2 -0
- data/lib/generators/doorkeeper/templates/enable_polymorphic_resource_owner_migration.rb.erb +17 -0
- data/lib/generators/doorkeeper/templates/initializer.rb +205 -43
- data/lib/generators/doorkeeper/templates/migration.rb.erb +18 -6
- metadata +43 -310
- data/.coveralls.yml +0 -1
- data/.github/ISSUE_TEMPLATE.md +0 -25
- data/.github/PULL_REQUEST_TEMPLATE.md +0 -17
- data/.gitignore +0 -20
- data/.gitlab-ci.yml +0 -16
- data/.hound.yml +0 -3
- data/.rspec +0 -1
- data/.rubocop.yml +0 -50
- data/.travis.yml +0 -35
- data/Appraisals +0 -40
- data/CODE_OF_CONDUCT.md +0 -46
- data/CONTRIBUTING.md +0 -47
- data/Dangerfile +0 -67
- data/Gemfile +0 -24
- data/RELEASING.md +0 -10
- data/Rakefile +0 -28
- data/SECURITY.md +0 -15
- data/UPGRADE.md +0 -2
- data/app/validators/redirect_uri_validator.rb +0 -50
- data/bin/console +0 -16
- data/doorkeeper.gemspec +0 -34
- data/gemfiles/rails_5_0.gemfile +0 -17
- data/gemfiles/rails_5_1.gemfile +0 -17
- data/gemfiles/rails_5_2.gemfile +0 -17
- data/gemfiles/rails_6_0.gemfile +0 -17
- data/gemfiles/rails_master.gemfile +0 -17
- data/spec/controllers/application_metal_controller_spec.rb +0 -64
- data/spec/controllers/applications_controller_spec.rb +0 -180
- data/spec/controllers/authorizations_controller_spec.rb +0 -527
- data/spec/controllers/protected_resources_controller_spec.rb +0 -353
- data/spec/controllers/token_info_controller_spec.rb +0 -50
- data/spec/controllers/tokens_controller_spec.rb +0 -330
- data/spec/dummy/Rakefile +0 -9
- data/spec/dummy/app/assets/config/manifest.js +0 -2
- data/spec/dummy/app/controllers/application_controller.rb +0 -5
- data/spec/dummy/app/controllers/custom_authorizations_controller.rb +0 -9
- data/spec/dummy/app/controllers/full_protected_resources_controller.rb +0 -14
- data/spec/dummy/app/controllers/home_controller.rb +0 -18
- data/spec/dummy/app/controllers/metal_controller.rb +0 -13
- data/spec/dummy/app/controllers/semi_protected_resources_controller.rb +0 -13
- data/spec/dummy/app/helpers/application_helper.rb +0 -7
- data/spec/dummy/app/models/user.rb +0 -7
- data/spec/dummy/app/views/home/index.html.erb +0 -0
- data/spec/dummy/app/views/layouts/application.html.erb +0 -14
- data/spec/dummy/config/application.rb +0 -47
- data/spec/dummy/config/boot.rb +0 -7
- data/spec/dummy/config/database.yml +0 -15
- data/spec/dummy/config/environment.rb +0 -5
- data/spec/dummy/config/environments/development.rb +0 -31
- data/spec/dummy/config/environments/production.rb +0 -64
- data/spec/dummy/config/environments/test.rb +0 -45
- data/spec/dummy/config/initializers/backtrace_silencers.rb +0 -9
- data/spec/dummy/config/initializers/doorkeeper.rb +0 -121
- data/spec/dummy/config/initializers/secret_token.rb +0 -10
- data/spec/dummy/config/initializers/session_store.rb +0 -10
- data/spec/dummy/config/initializers/wrap_parameters.rb +0 -16
- data/spec/dummy/config/locales/doorkeeper.en.yml +0 -5
- data/spec/dummy/config/routes.rb +0 -13
- data/spec/dummy/config.ru +0 -6
- data/spec/dummy/db/migrate/20111122132257_create_users.rb +0 -11
- data/spec/dummy/db/migrate/20120312140401_add_password_to_users.rb +0 -7
- data/spec/dummy/db/migrate/20151223192035_create_doorkeeper_tables.rb +0 -69
- data/spec/dummy/db/migrate/20151223200000_add_owner_to_application.rb +0 -9
- data/spec/dummy/db/migrate/20160320211015_add_previous_refresh_token_to_access_tokens.rb +0 -13
- data/spec/dummy/db/migrate/20170822064514_enable_pkce.rb +0 -8
- data/spec/dummy/db/migrate/20180210183654_add_confidential_to_applications.rb +0 -13
- data/spec/dummy/db/schema.rb +0 -68
- data/spec/dummy/public/404.html +0 -26
- data/spec/dummy/public/422.html +0 -26
- data/spec/dummy/public/500.html +0 -26
- data/spec/dummy/public/favicon.ico +0 -0
- data/spec/dummy/script/rails +0 -9
- data/spec/factories.rb +0 -30
- data/spec/generators/application_owner_generator_spec.rb +0 -28
- data/spec/generators/confidential_applications_generator_spec.rb +0 -29
- data/spec/generators/install_generator_spec.rb +0 -36
- data/spec/generators/migration_generator_spec.rb +0 -28
- data/spec/generators/pkce_generator_spec.rb +0 -28
- data/spec/generators/previous_refresh_token_generator_spec.rb +0 -44
- data/spec/generators/templates/routes.rb +0 -4
- data/spec/generators/views_generator_spec.rb +0 -29
- data/spec/grape/grape_integration_spec.rb +0 -137
- data/spec/helpers/doorkeeper/dashboard_helper_spec.rb +0 -26
- data/spec/lib/config_spec.rb +0 -697
- data/spec/lib/doorkeeper_spec.rb +0 -27
- data/spec/lib/models/expirable_spec.rb +0 -61
- data/spec/lib/models/reusable_spec.rb +0 -40
- data/spec/lib/models/revocable_spec.rb +0 -59
- data/spec/lib/models/scopes_spec.rb +0 -53
- data/spec/lib/models/secret_storable_spec.rb +0 -135
- data/spec/lib/oauth/authorization/uri_builder_spec.rb +0 -39
- data/spec/lib/oauth/authorization_code_request_spec.rb +0 -156
- data/spec/lib/oauth/base_request_spec.rb +0 -205
- data/spec/lib/oauth/base_response_spec.rb +0 -47
- data/spec/lib/oauth/client/credentials_spec.rb +0 -90
- data/spec/lib/oauth/client_credentials/creator_spec.rb +0 -94
- data/spec/lib/oauth/client_credentials/issuer_spec.rb +0 -112
- data/spec/lib/oauth/client_credentials/validation_spec.rb +0 -59
- data/spec/lib/oauth/client_credentials_integration_spec.rb +0 -29
- data/spec/lib/oauth/client_credentials_request_spec.rb +0 -109
- data/spec/lib/oauth/client_spec.rb +0 -38
- data/spec/lib/oauth/code_request_spec.rb +0 -47
- data/spec/lib/oauth/code_response_spec.rb +0 -36
- data/spec/lib/oauth/error_response_spec.rb +0 -66
- data/spec/lib/oauth/error_spec.rb +0 -23
- data/spec/lib/oauth/forbidden_token_response_spec.rb +0 -22
- data/spec/lib/oauth/helpers/scope_checker_spec.rb +0 -98
- data/spec/lib/oauth/helpers/unique_token_spec.rb +0 -21
- data/spec/lib/oauth/helpers/uri_checker_spec.rb +0 -247
- data/spec/lib/oauth/invalid_token_response_spec.rb +0 -55
- data/spec/lib/oauth/password_access_token_request_spec.rb +0 -192
- data/spec/lib/oauth/pre_authorization_spec.rb +0 -215
- data/spec/lib/oauth/refresh_token_request_spec.rb +0 -177
- data/spec/lib/oauth/scopes_spec.rb +0 -148
- data/spec/lib/oauth/token_request_spec.rb +0 -150
- data/spec/lib/oauth/token_response_spec.rb +0 -86
- data/spec/lib/oauth/token_spec.rb +0 -158
- data/spec/lib/request/strategy_spec.rb +0 -54
- data/spec/lib/secret_storing/base_spec.rb +0 -60
- data/spec/lib/secret_storing/bcrypt_spec.rb +0 -49
- data/spec/lib/secret_storing/plain_spec.rb +0 -44
- data/spec/lib/secret_storing/sha256_hash_spec.rb +0 -48
- data/spec/lib/server_spec.rb +0 -61
- data/spec/lib/stale_records_cleaner_spec.rb +0 -89
- data/spec/models/doorkeeper/access_grant_spec.rb +0 -144
- data/spec/models/doorkeeper/access_token_spec.rb +0 -591
- data/spec/models/doorkeeper/application_spec.rb +0 -367
- data/spec/requests/applications/applications_request_spec.rb +0 -259
- data/spec/requests/applications/authorized_applications_spec.rb +0 -32
- data/spec/requests/endpoints/authorization_spec.rb +0 -73
- data/spec/requests/endpoints/token_spec.rb +0 -75
- data/spec/requests/flows/authorization_code_errors_spec.rb +0 -78
- data/spec/requests/flows/authorization_code_spec.rb +0 -447
- data/spec/requests/flows/client_credentials_spec.rb +0 -128
- data/spec/requests/flows/implicit_grant_errors_spec.rb +0 -34
- data/spec/requests/flows/implicit_grant_spec.rb +0 -90
- data/spec/requests/flows/password_spec.rb +0 -259
- data/spec/requests/flows/refresh_token_spec.rb +0 -233
- data/spec/requests/flows/revoke_token_spec.rb +0 -143
- data/spec/requests/flows/skip_authorization_spec.rb +0 -66
- data/spec/requests/protected_resources/metal_spec.rb +0 -16
- data/spec/requests/protected_resources/private_api_spec.rb +0 -83
- data/spec/routing/custom_controller_routes_spec.rb +0 -133
- data/spec/routing/default_routes_spec.rb +0 -41
- data/spec/routing/scoped_routes_spec.rb +0 -47
- data/spec/spec_helper.rb +0 -57
- data/spec/spec_helper_integration.rb +0 -4
- data/spec/support/dependencies/factory_bot.rb +0 -4
- data/spec/support/doorkeeper_rspec.rb +0 -22
- data/spec/support/helpers/access_token_request_helper.rb +0 -13
- data/spec/support/helpers/authorization_request_helper.rb +0 -43
- data/spec/support/helpers/config_helper.rb +0 -11
- data/spec/support/helpers/model_helper.rb +0 -78
- data/spec/support/helpers/request_spec_helper.rb +0 -98
- data/spec/support/helpers/url_helper.rb +0 -62
- data/spec/support/http_method_shim.rb +0 -29
- data/spec/support/orm/active_record.rb +0 -5
- data/spec/support/shared/controllers_shared_context.rb +0 -123
- data/spec/support/shared/hashing_shared_context.rb +0 -36
- data/spec/support/shared/models_shared_examples.rb +0 -54
- data/spec/validators/redirect_uri_validator_spec.rb +0 -158
- data/spec/version/version_spec.rb +0 -17
@@ -0,0 +1,198 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Doorkeeper::Orm::ActiveRecord::Mixins
|
4
|
+
module Application
|
5
|
+
extend ActiveSupport::Concern
|
6
|
+
|
7
|
+
included do
|
8
|
+
self.table_name = compute_doorkeeper_table_name
|
9
|
+
|
10
|
+
include ::Doorkeeper::ApplicationMixin
|
11
|
+
|
12
|
+
has_many :access_grants,
|
13
|
+
foreign_key: :application_id,
|
14
|
+
dependent: :delete_all,
|
15
|
+
class_name: Doorkeeper.config.access_grant_class.to_s
|
16
|
+
|
17
|
+
has_many :access_tokens,
|
18
|
+
foreign_key: :application_id,
|
19
|
+
dependent: :delete_all,
|
20
|
+
class_name: Doorkeeper.config.access_token_class.to_s
|
21
|
+
|
22
|
+
validates :name, :secret, :uid, presence: true
|
23
|
+
validates :uid, uniqueness: { case_sensitive: true }
|
24
|
+
validates :redirect_uri, "doorkeeper/redirect_uri": true
|
25
|
+
validates :confidential, inclusion: { in: [true, false] }
|
26
|
+
|
27
|
+
validate :scopes_match_configured, if: :enforce_scopes?
|
28
|
+
|
29
|
+
before_validation :generate_uid, :generate_secret, on: :create
|
30
|
+
|
31
|
+
has_many :authorized_tokens,
|
32
|
+
-> { where(revoked_at: nil) },
|
33
|
+
foreign_key: :application_id,
|
34
|
+
class_name: Doorkeeper.config.access_token_class.to_s
|
35
|
+
|
36
|
+
has_many :authorized_applications,
|
37
|
+
through: :authorized_tokens,
|
38
|
+
source: :application
|
39
|
+
|
40
|
+
# Generates a new secret for this application, intended to be used
|
41
|
+
# for rotating the secret or in case of compromise.
|
42
|
+
#
|
43
|
+
# @return [String] new transformed secret value
|
44
|
+
#
|
45
|
+
def renew_secret
|
46
|
+
@raw_secret = Doorkeeper::OAuth::Helpers::UniqueToken.generate
|
47
|
+
secret_strategy.store_secret(self, :secret, @raw_secret)
|
48
|
+
end
|
49
|
+
|
50
|
+
# We keep a volatile copy of the raw secret for initial communication
|
51
|
+
# The stored refresh_token may be mapped and not available in cleartext.
|
52
|
+
#
|
53
|
+
# Some strategies allow restoring stored secrets (e.g. symmetric encryption)
|
54
|
+
# while hashing strategies do not, so you cannot rely on this value
|
55
|
+
# returning a present value for persisted tokens.
|
56
|
+
def plaintext_secret
|
57
|
+
if secret_strategy.allows_restoring_secrets?
|
58
|
+
secret_strategy.restore_secret(self, :secret)
|
59
|
+
else
|
60
|
+
@raw_secret
|
61
|
+
end
|
62
|
+
end
|
63
|
+
|
64
|
+
# Represents client as set of it's attributes in JSON format.
|
65
|
+
# This is the right way how we want to override ActiveRecord #to_json.
|
66
|
+
#
|
67
|
+
# Respects privacy settings and serializes minimum set of attributes
|
68
|
+
# for public/private clients and full set for authorized owners.
|
69
|
+
#
|
70
|
+
# @return [Hash] entity attributes for JSON
|
71
|
+
#
|
72
|
+
def as_json(options = {})
|
73
|
+
# if application belongs to some owner we need to check if it's the same as
|
74
|
+
# the one passed in the options or check if we render the client as an owner
|
75
|
+
if (respond_to?(:owner) && owner && owner == options[:current_resource_owner]) ||
|
76
|
+
options[:as_owner]
|
77
|
+
# Owners can see all the client attributes, fallback to ActiveModel serialization
|
78
|
+
super
|
79
|
+
else
|
80
|
+
# if application has no owner or it's owner doesn't match one from the options
|
81
|
+
# we render only minimum set of attributes that could be exposed to a public
|
82
|
+
only = extract_serializable_attributes(options)
|
83
|
+
super(options.merge(only: only))
|
84
|
+
end
|
85
|
+
end
|
86
|
+
|
87
|
+
def authorized_for_resource_owner?(resource_owner)
|
88
|
+
Doorkeeper.configuration.authorize_resource_owner_for_client.call(self, resource_owner)
|
89
|
+
end
|
90
|
+
|
91
|
+
# We need to hook into this method to allow serializing plan-text secrets
|
92
|
+
# when secrets hashing enabled.
|
93
|
+
#
|
94
|
+
# @param key [String] attribute name
|
95
|
+
#
|
96
|
+
def read_attribute_for_serialization(key)
|
97
|
+
return super unless key.to_s == "secret"
|
98
|
+
|
99
|
+
plaintext_secret || secret
|
100
|
+
end
|
101
|
+
|
102
|
+
private
|
103
|
+
|
104
|
+
def generate_uid
|
105
|
+
self.uid = Doorkeeper::OAuth::Helpers::UniqueToken.generate if uid.blank?
|
106
|
+
end
|
107
|
+
|
108
|
+
def generate_secret
|
109
|
+
return if secret.present?
|
110
|
+
|
111
|
+
renew_secret
|
112
|
+
end
|
113
|
+
|
114
|
+
def scopes_match_configured
|
115
|
+
if scopes.present? && !Doorkeeper::OAuth::Helpers::ScopeChecker.valid?(
|
116
|
+
scope_str: scopes.to_s,
|
117
|
+
server_scopes: Doorkeeper.config.scopes,
|
118
|
+
)
|
119
|
+
errors.add(:scopes, :not_match_configured)
|
120
|
+
end
|
121
|
+
end
|
122
|
+
|
123
|
+
def enforce_scopes?
|
124
|
+
Doorkeeper.config.enforce_configured_scopes?
|
125
|
+
end
|
126
|
+
|
127
|
+
# Helper method to extract collection of serializable attribute names
|
128
|
+
# considering serialization options (like `only`, `except` and so on).
|
129
|
+
#
|
130
|
+
# @param options [Hash] serialization options
|
131
|
+
#
|
132
|
+
# @return [Array<String>]
|
133
|
+
# collection of attributes to be serialized using #as_json
|
134
|
+
#
|
135
|
+
def extract_serializable_attributes(options = {})
|
136
|
+
opts = options.try(:dup) || {}
|
137
|
+
only = Array.wrap(opts[:only]).map(&:to_s)
|
138
|
+
|
139
|
+
only = if only.blank?
|
140
|
+
client_serializable_attributes
|
141
|
+
else
|
142
|
+
only & client_serializable_attributes
|
143
|
+
end
|
144
|
+
|
145
|
+
only -= Array.wrap(opts[:except]).map(&:to_s) if opts.key?(:except)
|
146
|
+
only.uniq
|
147
|
+
end
|
148
|
+
|
149
|
+
# Collection of attributes that could be serialized for public.
|
150
|
+
# Override this method if you need additional attributes to be serialized.
|
151
|
+
#
|
152
|
+
# @return [Array<String>] collection of serializable attributes
|
153
|
+
#
|
154
|
+
# NOTE: `serializable_attributes` method already taken by Rails >= 6
|
155
|
+
#
|
156
|
+
def client_serializable_attributes
|
157
|
+
attributes = %w[id name created_at]
|
158
|
+
attributes << "uid" unless confidential?
|
159
|
+
attributes
|
160
|
+
end
|
161
|
+
end
|
162
|
+
|
163
|
+
module ClassMethods
|
164
|
+
# Returns Applications associated with active (not revoked) Access Tokens
|
165
|
+
# that are owned by the specific Resource Owner.
|
166
|
+
#
|
167
|
+
# @param resource_owner [ActiveRecord::Base]
|
168
|
+
# Resource Owner model instance
|
169
|
+
#
|
170
|
+
# @return [ActiveRecord::Relation]
|
171
|
+
# Applications authorized for the Resource Owner
|
172
|
+
#
|
173
|
+
def authorized_for(resource_owner)
|
174
|
+
resource_access_tokens = Doorkeeper.config.access_token_model.active_for(resource_owner)
|
175
|
+
where(id: resource_access_tokens.select(:application_id).distinct)
|
176
|
+
end
|
177
|
+
|
178
|
+
# Revokes AccessToken and AccessGrant records that have not been revoked and
|
179
|
+
# associated with the specific Application and Resource Owner.
|
180
|
+
#
|
181
|
+
# @param resource_owner [ActiveRecord::Base]
|
182
|
+
# instance of the Resource Owner model
|
183
|
+
#
|
184
|
+
def revoke_tokens_and_grants_for(id, resource_owner)
|
185
|
+
Doorkeeper.config.access_token_model.revoke_all_for(id, resource_owner)
|
186
|
+
Doorkeeper.config.access_grant_model.revoke_all_for(id, resource_owner)
|
187
|
+
end
|
188
|
+
|
189
|
+
private
|
190
|
+
|
191
|
+
def compute_doorkeeper_table_name
|
192
|
+
table_name = "oauth_application"
|
193
|
+
table_name = table_name.pluralize if pluralize_table_names
|
194
|
+
"#{table_name_prefix}#{table_name}#{table_name_suffix}"
|
195
|
+
end
|
196
|
+
end
|
197
|
+
end
|
198
|
+
end
|
@@ -0,0 +1,66 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require "uri"
|
4
|
+
|
5
|
+
module Doorkeeper
|
6
|
+
# ActiveModel validator for redirect URI validation in according
|
7
|
+
# to OAuth standards and Doorkeeper configuration.
|
8
|
+
class RedirectUriValidator < ActiveModel::EachValidator
|
9
|
+
def validate_each(record, attribute, value)
|
10
|
+
if value.blank?
|
11
|
+
return if Doorkeeper.config.allow_blank_redirect_uri?(record)
|
12
|
+
|
13
|
+
record.errors.add(attribute, :blank)
|
14
|
+
else
|
15
|
+
value.split.each do |val|
|
16
|
+
next if oob_redirect_uri?(val)
|
17
|
+
|
18
|
+
uri = ::URI.parse(val)
|
19
|
+
record.errors.add(attribute, :forbidden_uri) if forbidden_uri?(uri)
|
20
|
+
record.errors.add(attribute, :fragment_present) unless uri.fragment.nil?
|
21
|
+
record.errors.add(attribute, :unspecified_scheme) if unspecified_scheme?(uri)
|
22
|
+
record.errors.add(attribute, :relative_uri) if relative_uri?(uri)
|
23
|
+
record.errors.add(attribute, :secured_uri) if invalid_ssl_uri?(uri)
|
24
|
+
record.errors.add(attribute, :invalid_uri) if unspecified_host?(uri)
|
25
|
+
end
|
26
|
+
end
|
27
|
+
rescue URI::InvalidURIError
|
28
|
+
record.errors.add(attribute, :invalid_uri)
|
29
|
+
end
|
30
|
+
|
31
|
+
private
|
32
|
+
|
33
|
+
def oob_redirect_uri?(uri)
|
34
|
+
Doorkeeper::OAuth::NonStandard::IETF_WG_OAUTH2_OOB_METHODS.include?(uri)
|
35
|
+
end
|
36
|
+
|
37
|
+
def forbidden_uri?(uri)
|
38
|
+
Doorkeeper.config.forbid_redirect_uri.call(uri)
|
39
|
+
end
|
40
|
+
|
41
|
+
def unspecified_scheme?(uri)
|
42
|
+
return true if uri.opaque.present?
|
43
|
+
|
44
|
+
%w[localhost].include?(uri.try(:scheme))
|
45
|
+
end
|
46
|
+
|
47
|
+
def unspecified_host?(uri)
|
48
|
+
uri.is_a?(URI::HTTP) && uri.host.nil?
|
49
|
+
end
|
50
|
+
|
51
|
+
def relative_uri?(uri)
|
52
|
+
uri.scheme.nil? && uri.host.nil?
|
53
|
+
end
|
54
|
+
|
55
|
+
def invalid_ssl_uri?(uri)
|
56
|
+
forces_ssl = Doorkeeper.config.force_ssl_in_redirect_uri
|
57
|
+
non_https = uri.try(:scheme) == "http"
|
58
|
+
|
59
|
+
if forces_ssl.respond_to?(:call)
|
60
|
+
forces_ssl.call(uri) && non_https
|
61
|
+
else
|
62
|
+
forces_ssl && non_https
|
63
|
+
end
|
64
|
+
end
|
65
|
+
end
|
66
|
+
end
|
@@ -2,20 +2,26 @@
|
|
2
2
|
|
3
3
|
require "active_support/lazy_load_hooks"
|
4
4
|
|
5
|
-
require "doorkeeper/orm/active_record/stale_records_cleaner"
|
6
|
-
|
7
5
|
module Doorkeeper
|
8
6
|
module Orm
|
7
|
+
# ActiveRecord ORM for Doorkeeper entity models.
|
8
|
+
# Consists of three main OAuth entities:
|
9
|
+
# * Access Token
|
10
|
+
# * Access Grant
|
11
|
+
# * Application (client)
|
12
|
+
#
|
13
|
+
# Do a lazy loading of all the required and configured stuff.
|
14
|
+
#
|
9
15
|
module ActiveRecord
|
10
16
|
def self.initialize_models!
|
11
17
|
lazy_load do
|
18
|
+
require "doorkeeper/orm/active_record/stale_records_cleaner"
|
12
19
|
require "doorkeeper/orm/active_record/access_grant"
|
13
20
|
require "doorkeeper/orm/active_record/access_token"
|
14
21
|
require "doorkeeper/orm/active_record/application"
|
15
22
|
|
16
|
-
if Doorkeeper.
|
17
|
-
|
18
|
-
options = Doorkeeper.configuration.active_record_options[:establish_connection]
|
23
|
+
if (options = Doorkeeper.config.active_record_options[:establish_connection])
|
24
|
+
Doorkeeper::Orm::ActiveRecord.models.each do |model|
|
19
25
|
model.establish_connection(options)
|
20
26
|
end
|
21
27
|
end
|
@@ -26,13 +32,21 @@ module Doorkeeper
|
|
26
32
|
lazy_load do
|
27
33
|
require "doorkeeper/models/concerns/ownership"
|
28
34
|
|
29
|
-
Doorkeeper
|
35
|
+
Doorkeeper.config.application_model.include(Doorkeeper::Models::Ownership)
|
30
36
|
end
|
31
37
|
end
|
32
38
|
|
33
39
|
def self.lazy_load(&block)
|
34
40
|
ActiveSupport.on_load(:active_record, {}, &block)
|
35
41
|
end
|
42
|
+
|
43
|
+
def self.models
|
44
|
+
[
|
45
|
+
Doorkeeper.config.access_grant_model,
|
46
|
+
Doorkeeper.config.access_token_model,
|
47
|
+
Doorkeeper.config.application_model,
|
48
|
+
]
|
49
|
+
end
|
36
50
|
end
|
37
51
|
end
|
38
52
|
end
|
@@ -4,7 +4,7 @@ module Doorkeeper
|
|
4
4
|
module Rails
|
5
5
|
module Helpers
|
6
6
|
def doorkeeper_authorize!(*scopes)
|
7
|
-
@_doorkeeper_scopes = scopes.presence || Doorkeeper.
|
7
|
+
@_doorkeeper_scopes = scopes.presence || Doorkeeper.config.default_scopes
|
8
8
|
|
9
9
|
doorkeeper_render_error unless valid_doorkeeper_token?
|
10
10
|
end
|
@@ -21,7 +21,7 @@ module Doorkeeper
|
|
21
21
|
|
22
22
|
def doorkeeper_render_error
|
23
23
|
error = doorkeeper_error
|
24
|
-
error.raise_exception! if Doorkeeper.
|
24
|
+
error.raise_exception! if Doorkeeper.config.raise_on_errors?
|
25
25
|
|
26
26
|
headers.merge!(error.headers.reject { |k| k == "Content-Type" })
|
27
27
|
doorkeeper_render_error_with(error)
|
@@ -30,7 +30,7 @@ module Doorkeeper
|
|
30
30
|
def doorkeeper_render_error_with(error)
|
31
31
|
options = doorkeeper_render_options(error) || {}
|
32
32
|
status = doorkeeper_status_for_error(
|
33
|
-
error, options.delete(:respond_not_found_when_forbidden)
|
33
|
+
error, options.delete(:respond_not_found_when_forbidden),
|
34
34
|
)
|
35
35
|
if options.blank?
|
36
36
|
head status
|
@@ -72,7 +72,7 @@ module Doorkeeper
|
|
72
72
|
def doorkeeper_token
|
73
73
|
@doorkeeper_token ||= OAuth::Token.authenticate(
|
74
74
|
request,
|
75
|
-
*Doorkeeper.
|
75
|
+
*Doorkeeper.config.access_token_methods,
|
76
76
|
)
|
77
77
|
end
|
78
78
|
end
|
@@ -0,0 +1,35 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Doorkeeper
|
4
|
+
module Rails
|
5
|
+
# Abstract router module that implements base behavior
|
6
|
+
# for generating and mapping Rails routes.
|
7
|
+
#
|
8
|
+
# Could be reused in Doorkeeper extensions.
|
9
|
+
#
|
10
|
+
module AbstractRouter
|
11
|
+
extend ActiveSupport::Concern
|
12
|
+
|
13
|
+
attr_reader :routes
|
14
|
+
|
15
|
+
def initialize(routes, mapper = Mapper.new, &block)
|
16
|
+
@routes = routes
|
17
|
+
@mapping = mapper.map(&block)
|
18
|
+
end
|
19
|
+
|
20
|
+
def generate_routes!(**_options)
|
21
|
+
raise NotImplementedError, "must be redefined for #{self.class.name}!"
|
22
|
+
end
|
23
|
+
|
24
|
+
private
|
25
|
+
|
26
|
+
def map_route(name, method)
|
27
|
+
return if @mapping.skipped?(name)
|
28
|
+
|
29
|
+
send(method, @mapping[name])
|
30
|
+
|
31
|
+
mapping[name] = @mapping[name]
|
32
|
+
end
|
33
|
+
end
|
34
|
+
end
|
35
|
+
end
|
@@ -0,0 +1,45 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Doorkeeper
|
4
|
+
module Rails
|
5
|
+
class Routes
|
6
|
+
# Thread-safe registry of any Doorkeeper additional routes.
|
7
|
+
# Used to allow implementing of Doorkeeper extensions that must
|
8
|
+
# use their own routes.
|
9
|
+
#
|
10
|
+
module Registry
|
11
|
+
ROUTES_ACCESS_LOCK = Mutex.new
|
12
|
+
ROUTES_DEFINITION_LOCK = Mutex.new
|
13
|
+
|
14
|
+
InvalidRouterClass = Class.new(StandardError)
|
15
|
+
|
16
|
+
# Collection of additional registered routes for Doorkeeper.
|
17
|
+
#
|
18
|
+
# @return [Array<Object>] set of registered routes
|
19
|
+
#
|
20
|
+
def registered_routes
|
21
|
+
ROUTES_DEFINITION_LOCK.synchronize do
|
22
|
+
@registered_routes ||= Set.new
|
23
|
+
end
|
24
|
+
end
|
25
|
+
|
26
|
+
# Registers additional routes in the Doorkeeper registry
|
27
|
+
#
|
28
|
+
# @param [Object] routes
|
29
|
+
# routes class
|
30
|
+
#
|
31
|
+
def register_routes(routes)
|
32
|
+
if !routes.is_a?(Module) || !(routes < AbstractRouter)
|
33
|
+
raise InvalidRouterClass, "routes class must include Doorkeeper::Rails::AbstractRouter"
|
34
|
+
end
|
35
|
+
|
36
|
+
ROUTES_ACCESS_LOCK.synchronize do
|
37
|
+
registered_routes << routes
|
38
|
+
end
|
39
|
+
end
|
40
|
+
|
41
|
+
alias register register_routes
|
42
|
+
end
|
43
|
+
end
|
44
|
+
end
|
45
|
+
end
|
@@ -2,33 +2,33 @@
|
|
2
2
|
|
3
3
|
require "doorkeeper/rails/routes/mapping"
|
4
4
|
require "doorkeeper/rails/routes/mapper"
|
5
|
+
require "doorkeeper/rails/routes/abstract_router"
|
6
|
+
require "doorkeeper/rails/routes/registry"
|
5
7
|
|
6
8
|
module Doorkeeper
|
7
9
|
module Rails
|
8
10
|
class Routes # :nodoc:
|
9
|
-
mattr_reader :mapping do
|
10
|
-
{}
|
11
|
-
end
|
12
|
-
|
13
11
|
module Helper
|
14
12
|
def use_doorkeeper(options = {}, &block)
|
15
13
|
Doorkeeper::Rails::Routes.new(self, &block).generate_routes!(options)
|
16
14
|
end
|
17
15
|
end
|
18
16
|
|
19
|
-
|
20
|
-
|
17
|
+
include AbstractRouter
|
18
|
+
extend Registry
|
19
|
+
|
20
|
+
mattr_reader :mapping do
|
21
|
+
{}
|
21
22
|
end
|
22
23
|
|
23
|
-
|
24
|
+
def self.install!
|
25
|
+
ActionDispatch::Routing::Mapper.include Doorkeeper::Rails::Routes::Helper
|
24
26
|
|
25
|
-
|
26
|
-
|
27
|
-
@mapping = Mapper.new.map(&block)
|
27
|
+
registered_routes.each(&:install!)
|
28
|
+
end
|
28
29
|
|
29
|
-
|
30
|
-
|
31
|
-
end
|
30
|
+
def initialize(routes, mapper = Mapper.new, &block)
|
31
|
+
super
|
32
32
|
end
|
33
33
|
|
34
34
|
def generate_routes!(options)
|
@@ -36,7 +36,7 @@ module Doorkeeper
|
|
36
36
|
map_route(:authorizations, :authorization_routes)
|
37
37
|
map_route(:tokens, :token_routes)
|
38
38
|
map_route(:tokens, :revoke_routes)
|
39
|
-
map_route(:tokens, :introspect_routes)
|
39
|
+
map_route(:tokens, :introspect_routes) unless Doorkeeper.config.allow_token_introspection.is_a?(FalseClass)
|
40
40
|
map_route(:applications, :application_routes)
|
41
41
|
map_route(:authorized_applications, :authorized_applications_routes)
|
42
42
|
map_route(:token_info, :token_info_routes)
|
@@ -45,21 +45,13 @@ module Doorkeeper
|
|
45
45
|
|
46
46
|
private
|
47
47
|
|
48
|
-
def map_route(name, method)
|
49
|
-
return if @mapping.skipped?(name)
|
50
|
-
|
51
|
-
send(method, @mapping[name])
|
52
|
-
|
53
|
-
mapping[name] = @mapping[name]
|
54
|
-
end
|
55
|
-
|
56
48
|
def authorization_routes(mapping)
|
57
49
|
routes.resource(
|
58
50
|
:authorization,
|
59
51
|
path: "authorize",
|
60
52
|
only: %i[create destroy],
|
61
53
|
as: mapping[:as],
|
62
|
-
controller: mapping[:controllers]
|
54
|
+
controller: mapping[:controllers],
|
63
55
|
) do
|
64
56
|
routes.get "/native", action: :show, on: :member
|
65
57
|
routes.get "/", action: :new, on: :member
|
@@ -71,7 +63,7 @@ module Doorkeeper
|
|
71
63
|
:token,
|
72
64
|
path: "token",
|
73
65
|
only: [:create], as: mapping[:as],
|
74
|
-
controller: mapping[:controllers]
|
66
|
+
controller: mapping[:controllers],
|
75
67
|
)
|
76
68
|
end
|
77
69
|
|
@@ -88,7 +80,7 @@ module Doorkeeper
|
|
88
80
|
:token_info,
|
89
81
|
path: "token/info",
|
90
82
|
only: [:show], as: mapping[:as],
|
91
|
-
controller: mapping[:controllers]
|
83
|
+
controller: mapping[:controllers],
|
92
84
|
)
|
93
85
|
end
|
94
86
|
|
data/lib/doorkeeper/rake/db.rake
CHANGED
@@ -13,27 +13,27 @@ namespace :doorkeeper do
|
|
13
13
|
namespace :cleanup do
|
14
14
|
desc "Removes stale access tokens"
|
15
15
|
task revoked_tokens: "doorkeeper:setup" do
|
16
|
-
cleaner = Doorkeeper::StaleRecordsCleaner.new(Doorkeeper
|
16
|
+
cleaner = Doorkeeper::StaleRecordsCleaner.new(Doorkeeper.config.access_token_model)
|
17
17
|
cleaner.clean_revoked
|
18
18
|
end
|
19
19
|
|
20
20
|
desc "Removes expired (TTL passed) access tokens"
|
21
21
|
task expired_tokens: "doorkeeper:setup" do
|
22
|
-
expirable_tokens = Doorkeeper
|
22
|
+
expirable_tokens = Doorkeeper.config.access_token_model.where(refresh_token: nil)
|
23
23
|
cleaner = Doorkeeper::StaleRecordsCleaner.new(expirable_tokens)
|
24
|
-
cleaner.clean_expired(Doorkeeper.
|
24
|
+
cleaner.clean_expired(Doorkeeper.config.access_token_expires_in)
|
25
25
|
end
|
26
26
|
|
27
27
|
desc "Removes stale access grants"
|
28
28
|
task revoked_grants: "doorkeeper:setup" do
|
29
|
-
cleaner = Doorkeeper::StaleRecordsCleaner.new(Doorkeeper
|
29
|
+
cleaner = Doorkeeper::StaleRecordsCleaner.new(Doorkeeper.config.access_grant_model)
|
30
30
|
cleaner.clean_revoked
|
31
31
|
end
|
32
32
|
|
33
33
|
desc "Removes expired (TTL passed) access grants"
|
34
34
|
task expired_grants: "doorkeeper:setup" do
|
35
|
-
cleaner = Doorkeeper::StaleRecordsCleaner.new(Doorkeeper
|
36
|
-
cleaner.clean_expired(Doorkeeper.
|
35
|
+
cleaner = Doorkeeper::StaleRecordsCleaner.new(Doorkeeper.config.access_grant_model)
|
36
|
+
cleaner.clean_expired(Doorkeeper.config.authorization_code_expires_in)
|
37
37
|
end
|
38
38
|
end
|
39
39
|
end
|
@@ -2,5 +2,10 @@
|
|
2
2
|
|
3
3
|
namespace :doorkeeper do
|
4
4
|
task setup: :environment do
|
5
|
+
# Dirty hack to manually initialize AR because of lazy auto-loading,
|
6
|
+
# in other case we'll see NameError: uninitialized constant Doorkeeper::AccessToken
|
7
|
+
if Doorkeeper.config.orm == :active_record && defined?(::ActiveRecord::Base)
|
8
|
+
Object.const_get("::ActiveRecord::Base")
|
9
|
+
end
|
5
10
|
end
|
6
11
|
end
|
@@ -7,17 +7,19 @@ module Doorkeeper
|
|
7
7
|
|
8
8
|
def request
|
9
9
|
@request ||= OAuth::AuthorizationCodeRequest.new(
|
10
|
-
Doorkeeper.
|
10
|
+
Doorkeeper.config,
|
11
11
|
grant,
|
12
12
|
client,
|
13
|
-
parameters
|
13
|
+
parameters,
|
14
14
|
)
|
15
15
|
end
|
16
16
|
|
17
17
|
private
|
18
18
|
|
19
19
|
def grant
|
20
|
-
|
20
|
+
raise Errors::MissingRequiredParameter, :code if parameters[:code].blank?
|
21
|
+
|
22
|
+
Doorkeeper.config.access_grant_model.by_token(parameters[:code])
|
21
23
|
end
|
22
24
|
end
|
23
25
|
end
|
@@ -6,14 +6,15 @@ module Doorkeeper
|
|
6
6
|
delegate :credentials, :parameters, to: :server
|
7
7
|
|
8
8
|
def refresh_token
|
9
|
-
|
9
|
+
Doorkeeper.config.access_token_model.by_refresh_token(parameters[:refresh_token])
|
10
10
|
end
|
11
11
|
|
12
12
|
def request
|
13
13
|
@request ||= OAuth::RefreshTokenRequest.new(
|
14
|
-
Doorkeeper.
|
15
|
-
refresh_token,
|
16
|
-
|
14
|
+
Doorkeeper.config,
|
15
|
+
refresh_token,
|
16
|
+
credentials,
|
17
|
+
parameters,
|
17
18
|
)
|
18
19
|
end
|
19
20
|
end
|