doorkeeper 4.4.0 → 5.6.6
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- data/{NEWS.md → CHANGELOG.md} +471 -16
- data/README.md +108 -403
- data/app/assets/stylesheets/doorkeeper/admin/application.css +2 -2
- data/app/controllers/doorkeeper/application_controller.rb +8 -5
- data/app/controllers/doorkeeper/application_metal_controller.rb +7 -11
- data/app/controllers/doorkeeper/applications_controller.rb +62 -27
- data/app/controllers/doorkeeper/authorizations_controller.rb +112 -18
- data/app/controllers/doorkeeper/authorized_applications_controller.rb +22 -3
- data/app/controllers/doorkeeper/token_info_controller.rb +16 -4
- data/app/controllers/doorkeeper/tokens_controller.rb +104 -35
- data/app/helpers/doorkeeper/dashboard_helper.rb +9 -7
- data/app/views/doorkeeper/applications/_delete_form.html.erb +3 -1
- data/app/views/doorkeeper/applications/_form.html.erb +27 -26
- data/app/views/doorkeeper/applications/edit.html.erb +1 -1
- data/app/views/doorkeeper/applications/index.html.erb +17 -7
- data/app/views/doorkeeper/applications/new.html.erb +1 -1
- data/app/views/doorkeeper/applications/show.html.erb +38 -17
- data/app/views/doorkeeper/authorizations/error.html.erb +4 -2
- data/app/views/doorkeeper/authorizations/form_post.html.erb +15 -0
- data/app/views/doorkeeper/authorizations/new.html.erb +16 -10
- data/app/views/layouts/doorkeeper/admin.html.erb +16 -14
- data/config/locales/en.yml +28 -5
- data/lib/doorkeeper/config/abstract_builder.rb +28 -0
- data/lib/doorkeeper/config/option.rb +82 -0
- data/lib/doorkeeper/config/validations.rb +53 -0
- data/lib/doorkeeper/config.rb +477 -142
- data/lib/doorkeeper/engine.rb +17 -4
- data/lib/doorkeeper/errors.rb +25 -16
- 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/authorization_decorator.rb +6 -4
- data/lib/doorkeeper/grape/helpers.rb +13 -7
- data/lib/doorkeeper/helpers/controller.rb +43 -10
- data/lib/doorkeeper/models/access_grant_mixin.rb +97 -3
- data/lib/doorkeeper/models/access_token_mixin.rb +273 -67
- data/lib/doorkeeper/models/application_mixin.rb +50 -5
- data/lib/doorkeeper/models/concerns/accessible.rb +2 -0
- data/lib/doorkeeper/models/concerns/expirable.rb +7 -3
- data/lib/doorkeeper/models/concerns/expiration_time_sql_math.rb +88 -0
- data/lib/doorkeeper/models/concerns/orderable.rb +2 -0
- data/lib/doorkeeper/models/concerns/ownership.rb +4 -7
- data/lib/doorkeeper/models/concerns/polymorphic_resource_owner.rb +30 -0
- data/lib/doorkeeper/models/concerns/resource_ownerable.rb +47 -0
- data/lib/doorkeeper/models/concerns/reusable.rb +19 -0
- data/lib/doorkeeper/models/concerns/revocable.rb +3 -27
- data/lib/doorkeeper/models/concerns/scopes.rb +12 -2
- data/lib/doorkeeper/models/concerns/secret_storable.rb +106 -0
- data/lib/doorkeeper/oauth/authorization/code.rb +54 -12
- data/lib/doorkeeper/oauth/authorization/context.rb +17 -0
- data/lib/doorkeeper/oauth/authorization/token.rb +64 -24
- data/lib/doorkeeper/oauth/authorization/uri_builder.rb +7 -5
- data/lib/doorkeeper/oauth/authorization_code_request.rb +69 -11
- data/lib/doorkeeper/oauth/base_request.rb +36 -24
- data/lib/doorkeeper/oauth/base_response.rb +2 -0
- data/lib/doorkeeper/oauth/client/credentials.rb +5 -5
- data/lib/doorkeeper/oauth/client.rb +10 -11
- data/lib/doorkeeper/oauth/client_credentials/creator.rb +44 -4
- data/lib/doorkeeper/oauth/client_credentials/issuer.rb +16 -9
- data/lib/doorkeeper/oauth/client_credentials/validator.rb +55 -0
- data/lib/doorkeeper/oauth/client_credentials_request.rb +10 -11
- data/lib/doorkeeper/oauth/code_request.rb +8 -12
- data/lib/doorkeeper/oauth/code_response.rb +27 -15
- data/lib/doorkeeper/oauth/error.rb +3 -1
- data/lib/doorkeeper/oauth/error_response.rb +34 -14
- data/lib/doorkeeper/oauth/forbidden_token_response.rb +11 -3
- data/lib/doorkeeper/oauth/helpers/scope_checker.rb +23 -18
- data/lib/doorkeeper/oauth/helpers/unique_token.rb +20 -3
- data/lib/doorkeeper/oauth/helpers/uri_checker.rb +42 -6
- 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 +29 -4
- data/lib/doorkeeper/oauth/nonstandard.rb +39 -0
- data/lib/doorkeeper/oauth/password_access_token_request.rb +43 -10
- data/lib/doorkeeper/oauth/pre_authorization.rb +136 -26
- data/lib/doorkeeper/oauth/refresh_token_request.rb +67 -31
- data/lib/doorkeeper/oauth/scopes.rb +8 -4
- data/lib/doorkeeper/oauth/token.rb +12 -8
- data/lib/doorkeeper/oauth/token_introspection.rb +99 -25
- data/lib/doorkeeper/oauth/token_request.rb +8 -20
- data/lib/doorkeeper/oauth/token_response.rb +13 -10
- data/lib/doorkeeper/oauth.rb +13 -0
- data/lib/doorkeeper/orm/active_record/access_grant.rb +5 -30
- data/lib/doorkeeper/orm/active_record/access_token.rb +5 -43
- data/lib/doorkeeper/orm/active_record/application.rb +6 -57
- data/lib/doorkeeper/orm/active_record/mixins/access_grant.rb +63 -0
- data/lib/doorkeeper/orm/active_record/mixins/access_token.rb +77 -0
- data/lib/doorkeeper/orm/active_record/mixins/application.rb +210 -0
- data/lib/doorkeeper/orm/active_record/redirect_uri_validator.rb +66 -0
- data/lib/doorkeeper/orm/active_record/stale_records_cleaner.rb +36 -0
- data/lib/doorkeeper/orm/active_record.rb +31 -20
- data/lib/doorkeeper/rails/helpers.rb +10 -8
- data/lib/doorkeeper/rails/routes/abstract_router.rb +35 -0
- data/lib/doorkeeper/rails/routes/mapper.rb +4 -2
- data/lib/doorkeeper/rails/routes/mapping.rb +9 -7
- data/lib/doorkeeper/rails/routes/registry.rb +45 -0
- data/lib/doorkeeper/rails/routes.rb +45 -25
- data/lib/doorkeeper/rake/db.rake +40 -0
- data/lib/doorkeeper/rake/setup.rake +6 -0
- data/lib/doorkeeper/rake.rb +14 -0
- data/lib/doorkeeper/request/authorization_code.rb +6 -4
- data/lib/doorkeeper/request/client_credentials.rb +3 -3
- data/lib/doorkeeper/request/code.rb +1 -1
- data/lib/doorkeeper/request/password.rb +4 -3
- data/lib/doorkeeper/request/refresh_token.rb +6 -5
- data/lib/doorkeeper/request/strategy.rb +4 -2
- data/lib/doorkeeper/request/token.rb +1 -1
- data/lib/doorkeeper/request.rb +61 -34
- data/lib/doorkeeper/secret_storing/base.rb +64 -0
- data/lib/doorkeeper/secret_storing/bcrypt.rb +60 -0
- data/lib/doorkeeper/secret_storing/plain.rb +33 -0
- data/lib/doorkeeper/secret_storing/sha256_hash.rb +26 -0
- data/lib/doorkeeper/server.rb +9 -11
- data/lib/doorkeeper/stale_records_cleaner.rb +24 -0
- data/lib/doorkeeper/validations.rb +2 -0
- data/lib/doorkeeper/version.rb +7 -29
- data/lib/doorkeeper.rb +180 -65
- data/lib/generators/doorkeeper/application_owner_generator.rb +24 -18
- data/lib/generators/doorkeeper/confidential_applications_generator.rb +33 -0
- data/lib/generators/doorkeeper/enable_polymorphic_resource_owner_generator.rb +39 -0
- data/lib/generators/doorkeeper/install_generator.rb +19 -9
- data/lib/generators/doorkeeper/migration_generator.rb +23 -18
- data/lib/generators/doorkeeper/pkce_generator.rb +33 -0
- data/lib/generators/doorkeeper/previous_refresh_token_generator.rb +28 -22
- data/{spec/dummy/db/migrate/20180210183654_add_confidential_to_application.rb → lib/generators/doorkeeper/templates/add_confidential_to_applications.rb.erb} +2 -2
- 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 +8 -0
- data/lib/generators/doorkeeper/templates/enable_polymorphic_resource_owner_migration.rb.erb +17 -0
- data/lib/generators/doorkeeper/templates/initializer.rb +402 -32
- data/lib/generators/doorkeeper/templates/migration.rb.erb +47 -18
- data/lib/generators/doorkeeper/views_generator.rb +8 -4
- data/vendor/assets/stylesheets/doorkeeper/bootstrap.min.css +4 -5
- metadata +97 -309
- data/.coveralls.yml +0 -1
- data/.github/ISSUE_TEMPLATE.md +0 -25
- data/.github/PULL_REQUEST_TEMPLATE.md +0 -17
- data/.gitignore +0 -19
- data/.hound.yml +0 -2
- data/.rspec +0 -1
- data/.rubocop.yml +0 -17
- data/.travis.yml +0 -38
- data/Appraisals +0 -18
- data/CODE_OF_CONDUCT.md +0 -46
- data/CONTRIBUTING.md +0 -47
- data/Gemfile +0 -10
- data/RELEASING.md +0 -10
- data/Rakefile +0 -20
- data/SECURITY.md +0 -15
- data/app/validators/redirect_uri_validator.rb +0 -44
- data/doorkeeper.gemspec +0 -32
- data/gemfiles/rails_4_2.gemfile +0 -13
- data/gemfiles/rails_5_0.gemfile +0 -12
- data/gemfiles/rails_5_1.gemfile +0 -12
- data/gemfiles/rails_5_2.gemfile +0 -12
- data/gemfiles/rails_master.gemfile +0 -14
- data/lib/doorkeeper/oauth/client_credentials/validation.rb +0 -45
- data/lib/generators/doorkeeper/add_client_confidentiality_generator.rb +0 -31
- data/lib/generators/doorkeeper/templates/add_confidential_to_application_migration.rb.erb +0 -11
- data/spec/controllers/application_metal_controller.rb +0 -10
- data/spec/controllers/applications_controller_spec.rb +0 -69
- data/spec/controllers/authorizations_controller_spec.rb +0 -218
- data/spec/controllers/protected_resources_controller_spec.rb +0 -309
- data/spec/controllers/token_info_controller_spec.rb +0 -56
- data/spec/controllers/tokens_controller_spec.rb +0 -274
- data/spec/dummy/Rakefile +0 -7
- data/spec/dummy/app/controllers/application_controller.rb +0 -3
- data/spec/dummy/app/controllers/custom_authorizations_controller.rb +0 -7
- data/spec/dummy/app/controllers/full_protected_resources_controller.rb +0 -12
- data/spec/dummy/app/controllers/home_controller.rb +0 -17
- data/spec/dummy/app/controllers/metal_controller.rb +0 -11
- data/spec/dummy/app/controllers/semi_protected_resources_controller.rb +0 -11
- data/spec/dummy/app/helpers/application_helper.rb +0 -5
- data/spec/dummy/app/models/user.rb +0 -5
- 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 -23
- data/spec/dummy/config/boot.rb +0 -9
- data/spec/dummy/config/database.yml +0 -15
- data/spec/dummy/config/environment.rb +0 -5
- data/spec/dummy/config/environments/development.rb +0 -29
- data/spec/dummy/config/environments/production.rb +0 -62
- data/spec/dummy/config/environments/test.rb +0 -44
- data/spec/dummy/config/initializers/backtrace_silencers.rb +0 -7
- data/spec/dummy/config/initializers/doorkeeper.rb +0 -107
- data/spec/dummy/config/initializers/new_framework_defaults.rb +0 -6
- data/spec/dummy/config/initializers/secret_token.rb +0 -8
- data/spec/dummy/config/initializers/session_store.rb +0 -8
- data/spec/dummy/config/initializers/wrap_parameters.rb +0 -14
- data/spec/dummy/config/locales/doorkeeper.en.yml +0 -5
- data/spec/dummy/config/routes.rb +0 -52
- data/spec/dummy/config.ru +0 -4
- 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 -62
- 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/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 -6
- data/spec/factories.rb +0 -28
- data/spec/generators/application_owner_generator_spec.rb +0 -41
- data/spec/generators/install_generator_spec.rb +0 -31
- data/spec/generators/migration_generator_spec.rb +0 -41
- data/spec/generators/previous_refresh_token_generator_spec.rb +0 -57
- data/spec/generators/templates/routes.rb +0 -3
- data/spec/generators/views_generator_spec.rb +0 -27
- data/spec/grape/grape_integration_spec.rb +0 -135
- data/spec/helpers/doorkeeper/dashboard_helper_spec.rb +0 -24
- data/spec/lib/config_spec.rb +0 -437
- data/spec/lib/doorkeeper_spec.rb +0 -150
- data/spec/lib/models/expirable_spec.rb +0 -50
- data/spec/lib/models/revocable_spec.rb +0 -59
- data/spec/lib/models/scopes_spec.rb +0 -43
- data/spec/lib/oauth/authorization/uri_builder_spec.rb +0 -41
- data/spec/lib/oauth/authorization_code_request_spec.rb +0 -108
- data/spec/lib/oauth/base_request_spec.rb +0 -155
- data/spec/lib/oauth/base_response_spec.rb +0 -45
- data/spec/lib/oauth/client/credentials_spec.rb +0 -90
- data/spec/lib/oauth/client_credentials/creator_spec.rb +0 -44
- data/spec/lib/oauth/client_credentials/issuer_spec.rb +0 -86
- data/spec/lib/oauth/client_credentials/validation_spec.rb +0 -54
- data/spec/lib/oauth/client_credentials_integration_spec.rb +0 -27
- data/spec/lib/oauth/client_credentials_request_spec.rb +0 -105
- data/spec/lib/oauth/client_spec.rb +0 -39
- data/spec/lib/oauth/code_request_spec.rb +0 -43
- data/spec/lib/oauth/code_response_spec.rb +0 -34
- data/spec/lib/oauth/error_response_spec.rb +0 -61
- data/spec/lib/oauth/error_spec.rb +0 -23
- data/spec/lib/oauth/forbidden_token_response_spec.rb +0 -23
- data/spec/lib/oauth/helpers/scope_checker_spec.rb +0 -64
- data/spec/lib/oauth/helpers/unique_token_spec.rb +0 -20
- data/spec/lib/oauth/helpers/uri_checker_spec.rb +0 -213
- data/spec/lib/oauth/invalid_token_response_spec.rb +0 -56
- data/spec/lib/oauth/password_access_token_request_spec.rb +0 -96
- data/spec/lib/oauth/pre_authorization_spec.rb +0 -155
- data/spec/lib/oauth/refresh_token_request_spec.rb +0 -166
- data/spec/lib/oauth/scopes_spec.rb +0 -149
- data/spec/lib/oauth/token_request_spec.rb +0 -96
- data/spec/lib/oauth/token_response_spec.rb +0 -85
- data/spec/lib/oauth/token_spec.rb +0 -116
- data/spec/lib/request/strategy_spec.rb +0 -53
- data/spec/lib/server_spec.rb +0 -59
- data/spec/models/doorkeeper/access_grant_spec.rb +0 -36
- data/spec/models/doorkeeper/access_token_spec.rb +0 -418
- data/spec/models/doorkeeper/application_spec.rb +0 -286
- data/spec/requests/applications/applications_request_spec.rb +0 -94
- data/spec/requests/applications/authorized_applications_spec.rb +0 -30
- data/spec/requests/endpoints/authorization_spec.rb +0 -71
- data/spec/requests/endpoints/token_spec.rb +0 -71
- data/spec/requests/flows/authorization_code_errors_spec.rb +0 -76
- data/spec/requests/flows/authorization_code_spec.rb +0 -149
- data/spec/requests/flows/client_credentials_spec.rb +0 -86
- data/spec/requests/flows/implicit_grant_errors_spec.rb +0 -32
- data/spec/requests/flows/implicit_grant_spec.rb +0 -61
- data/spec/requests/flows/password_spec.rb +0 -197
- data/spec/requests/flows/refresh_token_spec.rb +0 -174
- data/spec/requests/flows/revoke_token_spec.rb +0 -157
- data/spec/requests/flows/skip_authorization_spec.rb +0 -59
- data/spec/requests/protected_resources/metal_spec.rb +0 -14
- data/spec/requests/protected_resources/private_api_spec.rb +0 -81
- data/spec/routing/custom_controller_routes_spec.rb +0 -75
- data/spec/routing/default_routes_spec.rb +0 -39
- data/spec/routing/scoped_routes_spec.rb +0 -31
- data/spec/spec_helper.rb +0 -4
- data/spec/spec_helper_integration.rb +0 -74
- data/spec/support/dependencies/factory_girl.rb +0 -2
- data/spec/support/helpers/access_token_request_helper.rb +0 -11
- data/spec/support/helpers/authorization_request_helper.rb +0 -41
- data/spec/support/helpers/config_helper.rb +0 -9
- data/spec/support/helpers/model_helper.rb +0 -72
- data/spec/support/helpers/request_spec_helper.rb +0 -88
- data/spec/support/helpers/url_helper.rb +0 -56
- data/spec/support/http_method_shim.rb +0 -38
- data/spec/support/orm/active_record.rb +0 -3
- data/spec/support/shared/controllers_shared_context.rb +0 -65
- data/spec/support/shared/models_shared_examples.rb +0 -52
- data/spec/validators/redirect_uri_validator_spec.rb +0 -123
- data/spec/version/version_spec.rb +0 -15
@@ -1,274 +0,0 @@
|
|
1
|
-
require 'spec_helper_integration'
|
2
|
-
|
3
|
-
describe Doorkeeper::TokensController do
|
4
|
-
describe 'when authorization has succeeded' do
|
5
|
-
let(:token) { double(:token, authorize: true) }
|
6
|
-
|
7
|
-
before do
|
8
|
-
allow(controller).to receive(:token) { token }
|
9
|
-
end
|
10
|
-
|
11
|
-
it 'returns the authorization' do
|
12
|
-
skip 'verify need of these specs'
|
13
|
-
|
14
|
-
expect(token).to receive(:authorization)
|
15
|
-
|
16
|
-
post :create
|
17
|
-
end
|
18
|
-
end
|
19
|
-
|
20
|
-
describe 'when authorization has failed' do
|
21
|
-
it 'returns the error response' do
|
22
|
-
token = double(:token, authorize: false)
|
23
|
-
allow(controller).to receive(:token) { token }
|
24
|
-
|
25
|
-
post :create
|
26
|
-
|
27
|
-
expect(response.status).to eq 401
|
28
|
-
expect(response.headers['WWW-Authenticate']).to match(/Bearer/)
|
29
|
-
end
|
30
|
-
end
|
31
|
-
|
32
|
-
describe 'when there is a failure due to a custom error' do
|
33
|
-
it 'returns the error response with a custom message' do
|
34
|
-
# I18n looks for `doorkeeper.errors.messages.custom_message` in locale files
|
35
|
-
custom_message = "my_message"
|
36
|
-
allow(I18n).to receive(:translate).
|
37
|
-
with(
|
38
|
-
custom_message,
|
39
|
-
hash_including(scope: %i[doorkeeper errors messages]),
|
40
|
-
).
|
41
|
-
and_return('Authorization custom message')
|
42
|
-
|
43
|
-
doorkeeper_error = Doorkeeper::Errors::DoorkeeperError.new(custom_message)
|
44
|
-
|
45
|
-
strategy = double(:strategy)
|
46
|
-
request = double(token_request: strategy)
|
47
|
-
allow(strategy).to receive(:authorize).and_raise(doorkeeper_error)
|
48
|
-
allow(controller).to receive(:server).and_return(request)
|
49
|
-
|
50
|
-
post :create
|
51
|
-
|
52
|
-
expected_response_body = {
|
53
|
-
"error" => custom_message,
|
54
|
-
"error_description" => "Authorization custom message"
|
55
|
-
}
|
56
|
-
expect(response.status).to eq 401
|
57
|
-
expect(response.headers['WWW-Authenticate']).to match(/Bearer/)
|
58
|
-
expect(JSON.parse(response.body)).to eq expected_response_body
|
59
|
-
end
|
60
|
-
end
|
61
|
-
|
62
|
-
# http://tools.ietf.org/html/rfc7009#section-2.2
|
63
|
-
describe 'revoking tokens' do
|
64
|
-
let(:client) { FactoryBot.create(:application) }
|
65
|
-
let(:access_token) { FactoryBot.create(:access_token, application: client) }
|
66
|
-
|
67
|
-
before(:each) do
|
68
|
-
allow(controller).to receive(:token) { access_token }
|
69
|
-
end
|
70
|
-
|
71
|
-
context 'when associated app is public' do
|
72
|
-
let(:client) { FactoryBot.create(:application, confidential: false) }
|
73
|
-
|
74
|
-
it 'returns 200' do
|
75
|
-
post :revoke
|
76
|
-
|
77
|
-
expect(response.status).to eq 200
|
78
|
-
end
|
79
|
-
|
80
|
-
it 'revokes the access token' do
|
81
|
-
post :revoke
|
82
|
-
|
83
|
-
expect(access_token.reload).to have_attributes(revoked?: true)
|
84
|
-
end
|
85
|
-
end
|
86
|
-
|
87
|
-
context 'when associated app is confidential' do
|
88
|
-
let(:client) { FactoryBot.create(:application, confidential: true) }
|
89
|
-
let(:oauth_client) { Doorkeeper::OAuth::Client.new(client) }
|
90
|
-
|
91
|
-
before(:each) do
|
92
|
-
allow_any_instance_of(Doorkeeper::Server).to receive(:client) { oauth_client }
|
93
|
-
end
|
94
|
-
|
95
|
-
it 'returns 200' do
|
96
|
-
post :revoke
|
97
|
-
|
98
|
-
expect(response.status).to eq 200
|
99
|
-
end
|
100
|
-
|
101
|
-
it 'revokes the access token' do
|
102
|
-
post :revoke
|
103
|
-
|
104
|
-
expect(access_token.reload).to have_attributes(revoked?: true)
|
105
|
-
end
|
106
|
-
|
107
|
-
context 'when authorization fails' do
|
108
|
-
let(:some_other_client) { FactoryBot.create(:application, confidential: true) }
|
109
|
-
let(:oauth_client) { Doorkeeper::OAuth::Client.new(some_other_client) }
|
110
|
-
|
111
|
-
it 'returns 200' do
|
112
|
-
post :revoke
|
113
|
-
|
114
|
-
expect(response.status).to eq 200
|
115
|
-
end
|
116
|
-
|
117
|
-
it 'does not revoke the access token' do
|
118
|
-
post :revoke
|
119
|
-
|
120
|
-
expect(access_token.reload).to have_attributes(revoked?: false)
|
121
|
-
end
|
122
|
-
end
|
123
|
-
end
|
124
|
-
end
|
125
|
-
|
126
|
-
describe 'authorize response memoization' do
|
127
|
-
it "memoizes the result of the authorization" do
|
128
|
-
strategy = double(:strategy, authorize: true)
|
129
|
-
expect(strategy).to receive(:authorize).once
|
130
|
-
allow(controller).to receive(:strategy) { strategy }
|
131
|
-
allow(controller).to receive(:create) do
|
132
|
-
controller.send :authorize_response
|
133
|
-
end
|
134
|
-
|
135
|
-
post :create
|
136
|
-
end
|
137
|
-
end
|
138
|
-
|
139
|
-
describe 'when requested token introspection' do
|
140
|
-
context 'authorized using Bearer token' do
|
141
|
-
let(:client) { FactoryBot.create(:application) }
|
142
|
-
let(:access_token) { FactoryBot.create(:access_token, application: client) }
|
143
|
-
|
144
|
-
it 'responds with full token introspection' do
|
145
|
-
request.headers['Authorization'] = "Bearer #{access_token.token}"
|
146
|
-
|
147
|
-
post :introspect, token: access_token.token
|
148
|
-
|
149
|
-
should_have_json 'active', true
|
150
|
-
expect(json_response).to include('client_id', 'token_type', 'exp', 'iat')
|
151
|
-
end
|
152
|
-
end
|
153
|
-
|
154
|
-
context 'authorized using Client Authentication' do
|
155
|
-
let(:client) { FactoryBot.create(:application) }
|
156
|
-
let(:access_token) { FactoryBot.create(:access_token, application: client) }
|
157
|
-
|
158
|
-
it 'responds with full token introspection' do
|
159
|
-
request.headers['Authorization'] = basic_auth_header_for_client(client)
|
160
|
-
|
161
|
-
post :introspect, token: access_token.token
|
162
|
-
|
163
|
-
should_have_json 'active', true
|
164
|
-
expect(json_response).to include('client_id', 'token_type', 'exp', 'iat')
|
165
|
-
should_have_json 'client_id', client.uid
|
166
|
-
end
|
167
|
-
end
|
168
|
-
|
169
|
-
context 'public access token' do
|
170
|
-
let(:client) { FactoryBot.create(:application) }
|
171
|
-
let(:access_token) { FactoryBot.create(:access_token, application: nil) }
|
172
|
-
|
173
|
-
it 'responds with full token introspection' do
|
174
|
-
request.headers['Authorization'] = basic_auth_header_for_client(client)
|
175
|
-
|
176
|
-
post :introspect, token: access_token.token
|
177
|
-
|
178
|
-
should_have_json 'active', true
|
179
|
-
expect(json_response).to include('client_id', 'token_type', 'exp', 'iat')
|
180
|
-
should_have_json 'client_id', nil
|
181
|
-
end
|
182
|
-
end
|
183
|
-
|
184
|
-
context 'token was issued to a different client than is making this request' do
|
185
|
-
let(:client) { FactoryBot.create(:application) }
|
186
|
-
let(:different_client) { FactoryBot.create(:application) }
|
187
|
-
let(:access_token) { FactoryBot.create(:access_token, application: client) }
|
188
|
-
|
189
|
-
it 'responds with only active state' do
|
190
|
-
request.headers['Authorization'] = basic_auth_header_for_client(different_client)
|
191
|
-
|
192
|
-
post :introspect, token: access_token.token
|
193
|
-
|
194
|
-
expect(response).to be_successful
|
195
|
-
|
196
|
-
should_have_json 'active', false
|
197
|
-
expect(json_response).not_to include('client_id', 'token_type', 'exp', 'iat')
|
198
|
-
end
|
199
|
-
end
|
200
|
-
|
201
|
-
context 'using invalid credentials to authorize' do
|
202
|
-
let(:client) { double(uid: '123123', secret: '666999') }
|
203
|
-
let(:access_token) { FactoryBot.create(:access_token) }
|
204
|
-
|
205
|
-
it 'responds with invalid_client error' do
|
206
|
-
request.headers['Authorization'] = basic_auth_header_for_client(client)
|
207
|
-
|
208
|
-
post :introspect, token: access_token.token
|
209
|
-
|
210
|
-
expect(response).not_to be_successful
|
211
|
-
response_status_should_be 401
|
212
|
-
|
213
|
-
should_not_have_json 'active'
|
214
|
-
should_have_json 'error', 'invalid_client'
|
215
|
-
end
|
216
|
-
end
|
217
|
-
|
218
|
-
context 'using wrong token value' do
|
219
|
-
let(:client) { FactoryBot.create(:application) }
|
220
|
-
let(:access_token) { FactoryBot.create(:access_token, application: client) }
|
221
|
-
|
222
|
-
it 'responds with only active state' do
|
223
|
-
request.headers['Authorization'] = basic_auth_header_for_client(client)
|
224
|
-
|
225
|
-
post :introspect, token: SecureRandom.hex(16)
|
226
|
-
|
227
|
-
should_have_json 'active', false
|
228
|
-
expect(json_response).not_to include('client_id', 'token_type', 'exp', 'iat')
|
229
|
-
end
|
230
|
-
end
|
231
|
-
|
232
|
-
context 'when requested Access Token expired' do
|
233
|
-
let(:client) { FactoryBot.create(:application) }
|
234
|
-
let(:access_token) { FactoryBot.create(:access_token, application: client, created_at: 1.year.ago) }
|
235
|
-
|
236
|
-
it 'responds with only active state' do
|
237
|
-
request.headers['Authorization'] = basic_auth_header_for_client(client)
|
238
|
-
|
239
|
-
post :introspect, token: access_token.token
|
240
|
-
|
241
|
-
should_have_json 'active', false
|
242
|
-
expect(json_response).not_to include('client_id', 'token_type', 'exp', 'iat')
|
243
|
-
end
|
244
|
-
end
|
245
|
-
|
246
|
-
context 'when requested Access Token revoked' do
|
247
|
-
let(:client) { FactoryBot.create(:application) }
|
248
|
-
let(:access_token) { FactoryBot.create(:access_token, application: client, revoked_at: 1.year.ago) }
|
249
|
-
|
250
|
-
it 'responds with only active state' do
|
251
|
-
request.headers['Authorization'] = basic_auth_header_for_client(client)
|
252
|
-
|
253
|
-
post :introspect, token: access_token.token
|
254
|
-
|
255
|
-
should_have_json 'active', false
|
256
|
-
expect(json_response).not_to include('client_id', 'token_type', 'exp', 'iat')
|
257
|
-
end
|
258
|
-
end
|
259
|
-
|
260
|
-
context 'unauthorized (no bearer token or client credentials)' do
|
261
|
-
let(:access_token) { FactoryBot.create(:access_token) }
|
262
|
-
|
263
|
-
it 'responds with invalid_request error' do
|
264
|
-
post :introspect, token: access_token.token
|
265
|
-
|
266
|
-
expect(response).not_to be_successful
|
267
|
-
response_status_should_be 401
|
268
|
-
|
269
|
-
should_not_have_json 'active'
|
270
|
-
should_have_json 'error', 'invalid_request'
|
271
|
-
end
|
272
|
-
end
|
273
|
-
end
|
274
|
-
end
|
data/spec/dummy/Rakefile
DELETED
@@ -1,7 +0,0 @@
|
|
1
|
-
#!/usr/bin/env rake
|
2
|
-
# Add your own tasks in files placed in lib/tasks ending in .rake,
|
3
|
-
# for example lib/tasks/capistrano.rake, and they will automatically be available to Rake.
|
4
|
-
|
5
|
-
require File.expand_path('../config/application', __FILE__)
|
6
|
-
|
7
|
-
Dummy::Application.load_tasks
|
@@ -1,12 +0,0 @@
|
|
1
|
-
class FullProtectedResourcesController < ApplicationController
|
2
|
-
before_action -> { doorkeeper_authorize! :write, :admin }, only: :show
|
3
|
-
before_action :doorkeeper_authorize!, only: :index
|
4
|
-
|
5
|
-
def index
|
6
|
-
render plain: 'index'
|
7
|
-
end
|
8
|
-
|
9
|
-
def show
|
10
|
-
render plain: 'show'
|
11
|
-
end
|
12
|
-
end
|
@@ -1,17 +0,0 @@
|
|
1
|
-
class HomeController < ApplicationController
|
2
|
-
def index
|
3
|
-
end
|
4
|
-
|
5
|
-
def sign_in
|
6
|
-
session[:user_id] = if Rails.env.development?
|
7
|
-
User.first || User.create!(name: 'Joe', password: 'sekret')
|
8
|
-
else
|
9
|
-
User.first
|
10
|
-
end
|
11
|
-
redirect_to '/'
|
12
|
-
end
|
13
|
-
|
14
|
-
def callback
|
15
|
-
render plain: 'ok'
|
16
|
-
end
|
17
|
-
end
|
@@ -1,11 +0,0 @@
|
|
1
|
-
class MetalController < ActionController::Metal
|
2
|
-
include AbstractController::Callbacks
|
3
|
-
include ActionController::Head
|
4
|
-
include Doorkeeper::Rails::Helpers
|
5
|
-
|
6
|
-
before_action :doorkeeper_authorize!
|
7
|
-
|
8
|
-
def index
|
9
|
-
self.response_body = { ok: true }.to_json
|
10
|
-
end
|
11
|
-
end
|
File without changes
|
@@ -1,23 +0,0 @@
|
|
1
|
-
require File.expand_path('../boot', __FILE__)
|
2
|
-
|
3
|
-
require 'rails/all'
|
4
|
-
|
5
|
-
Bundler.require(*Rails.groups)
|
6
|
-
|
7
|
-
require 'yaml'
|
8
|
-
|
9
|
-
orm = if DOORKEEPER_ORM =~ /mongoid/
|
10
|
-
Mongoid.load!(File.join(File.dirname(File.expand_path(__FILE__)), "#{DOORKEEPER_ORM}.yml"))
|
11
|
-
:mongoid
|
12
|
-
else
|
13
|
-
DOORKEEPER_ORM
|
14
|
-
end
|
15
|
-
require "#{orm}/railtie"
|
16
|
-
|
17
|
-
module Dummy
|
18
|
-
class Application < Rails::Application
|
19
|
-
# Settings in config/environments/* take precedence over those specified here.
|
20
|
-
# Application configuration should go into files in config/initializers
|
21
|
-
# -- all .rb files in that directory are automatically loaded.
|
22
|
-
end
|
23
|
-
end
|
data/spec/dummy/config/boot.rb
DELETED
@@ -1,9 +0,0 @@
|
|
1
|
-
require 'rubygems'
|
2
|
-
require 'bundler/setup'
|
3
|
-
|
4
|
-
orm = ENV['BUNDLE_GEMFILE'].match(/Gemfile\.(.+)\.rb/)
|
5
|
-
unless defined?(DOORKEEPER_ORM)
|
6
|
-
DOORKEEPER_ORM = (orm && orm[1]) || :active_record
|
7
|
-
end
|
8
|
-
|
9
|
-
$LOAD_PATH.unshift File.expand_path('../../../../lib', __FILE__)
|
@@ -1,29 +0,0 @@
|
|
1
|
-
Dummy::Application.configure do
|
2
|
-
# Settings specified here will take precedence over those in config/application.rb
|
3
|
-
|
4
|
-
# In the development environment your application's code is reloaded on
|
5
|
-
# every request. This slows down response time but is perfect for development
|
6
|
-
# since you don't have to restart the web server when you make code changes.
|
7
|
-
config.cache_classes = false
|
8
|
-
|
9
|
-
# Show full error reports and disable caching
|
10
|
-
config.consider_all_requests_local = true
|
11
|
-
config.action_controller.perform_caching = false
|
12
|
-
|
13
|
-
# Don't care if the mailer can't send
|
14
|
-
# config.action_mailer.raise_delivery_errors = false
|
15
|
-
|
16
|
-
# Print deprecation notices to the Rails logger
|
17
|
-
config.active_support.deprecation = :log
|
18
|
-
|
19
|
-
# Only use best-standards-support built into browsers
|
20
|
-
config.action_dispatch.best_standards_support = :builtin
|
21
|
-
|
22
|
-
# Do not compress assets
|
23
|
-
config.assets.compress = false
|
24
|
-
|
25
|
-
# Expands the lines which load the assets
|
26
|
-
config.assets.debug = true
|
27
|
-
|
28
|
-
config.eager_load = false
|
29
|
-
end
|
@@ -1,62 +0,0 @@
|
|
1
|
-
Dummy::Application.configure do
|
2
|
-
# Settings specified here will take precedence over those in config/application.rb
|
3
|
-
|
4
|
-
# Code is not reloaded between requests
|
5
|
-
config.cache_classes = true
|
6
|
-
|
7
|
-
# Full error reports are disabled and caching is turned on
|
8
|
-
config.consider_all_requests_local = false
|
9
|
-
config.action_controller.perform_caching = true
|
10
|
-
|
11
|
-
# Disable Rails's static asset server (Apache or nginx will already do this)
|
12
|
-
config.serve_static_assets = false
|
13
|
-
|
14
|
-
# Compress JavaScripts and CSS
|
15
|
-
config.assets.compress = true
|
16
|
-
|
17
|
-
# Don't fallback to assets pipeline if a precompiled asset is missed
|
18
|
-
config.assets.compile = false
|
19
|
-
|
20
|
-
# Generate digests for assets URLs
|
21
|
-
config.assets.digest = true
|
22
|
-
|
23
|
-
# Defaults to Rails.root.join("public/assets")
|
24
|
-
# config.assets.manifest = YOUR_PATH
|
25
|
-
|
26
|
-
# Specifies the header that your server uses for sending files
|
27
|
-
# config.action_dispatch.x_sendfile_header = "X-Sendfile" # for apache
|
28
|
-
# config.action_dispatch.x_sendfile_header = 'X-Accel-Redirect' # for nginx
|
29
|
-
|
30
|
-
# Force all access to the app over SSL, use Strict-Transport-Security, and use secure cookies.
|
31
|
-
# config.force_ssl = true
|
32
|
-
|
33
|
-
# See everything in the log (default is :info)
|
34
|
-
# config.log_level = :debug
|
35
|
-
|
36
|
-
# Use a different logger for distributed setups
|
37
|
-
# config.logger = SyslogLogger.new
|
38
|
-
|
39
|
-
# Use a different cache store in production
|
40
|
-
# config.cache_store = :mem_cache_store
|
41
|
-
|
42
|
-
# Enable serving of images, stylesheets, and JavaScripts from an asset server
|
43
|
-
# config.action_controller.asset_host = "http://assets.example.com"
|
44
|
-
|
45
|
-
# Precompile additional assets (application.js, application.css, and all non-JS/CSS are already added)
|
46
|
-
# config.assets.precompile += %w( search.js )
|
47
|
-
|
48
|
-
# Disable delivery errors, bad email addresses will be ignored
|
49
|
-
# config.action_mailer.raise_delivery_errors = false
|
50
|
-
|
51
|
-
# Enable threaded mode
|
52
|
-
# config.threadsafe!
|
53
|
-
|
54
|
-
# Enable locale fallbacks for I18n (makes lookups for any locale fall back to
|
55
|
-
# the I18n.default_locale when a translation can not be found)
|
56
|
-
config.i18n.fallbacks = true
|
57
|
-
|
58
|
-
# Send deprecation notices to registered listeners
|
59
|
-
config.active_support.deprecation = :notify
|
60
|
-
|
61
|
-
config.eager_load = true
|
62
|
-
end
|
@@ -1,44 +0,0 @@
|
|
1
|
-
Dummy::Application.configure do
|
2
|
-
# Settings specified here will take precedence over those in config/application.rb
|
3
|
-
|
4
|
-
# The test environment is used exclusively to run your application's
|
5
|
-
# test suite. You never need to work with it otherwise. Remember that
|
6
|
-
# your test database is "scratch space" for the test suite and is wiped
|
7
|
-
# and recreated between test runs. Don't rely on the data there!
|
8
|
-
config.cache_classes = true
|
9
|
-
|
10
|
-
# Do not eager load code on boot. This avoids loading your whole application
|
11
|
-
# just for the purpose of running a single test. If you are using a tool that
|
12
|
-
# preloads Rails for running tests, you may have to set it to true.
|
13
|
-
config.eager_load = false
|
14
|
-
|
15
|
-
# Show full error reports and disable caching
|
16
|
-
config.consider_all_requests_local = true
|
17
|
-
config.action_controller.perform_caching = false
|
18
|
-
|
19
|
-
# Raise exceptions instead of rendering exception templates
|
20
|
-
config.action_dispatch.show_exceptions = false
|
21
|
-
|
22
|
-
# Disable request forgery protection in test environment
|
23
|
-
config.action_controller.allow_forgery_protection = false
|
24
|
-
|
25
|
-
# Tell Action Mailer not to deliver emails to the real world.
|
26
|
-
# The :test delivery method accumulates sent emails in the
|
27
|
-
# ActionMailer::Base.deliveries array.
|
28
|
-
# config.action_mailer.delivery_method = :test
|
29
|
-
|
30
|
-
# Use SQL instead of Active Record's schema dumper when creating the test database.
|
31
|
-
# This is necessary if your schema can't be completely dumped by the schema dumper,
|
32
|
-
# like if you have constraints or database-specific column types
|
33
|
-
# config.active_record.schema_format = :sql
|
34
|
-
|
35
|
-
# Print deprecation notices to the stderr
|
36
|
-
config.active_support.deprecation = :stderr
|
37
|
-
|
38
|
-
config.eager_load = true
|
39
|
-
|
40
|
-
if DOORKEEPER_ORM == :active_record
|
41
|
-
config.active_record.table_name_prefix = TABLE_NAME_PREFIX.to_s
|
42
|
-
config.active_record.table_name_suffix = TABLE_NAME_SUFFIX.to_s
|
43
|
-
end
|
44
|
-
end
|
@@ -1,7 +0,0 @@
|
|
1
|
-
# Be sure to restart your server when you modify this file.
|
2
|
-
|
3
|
-
# You can add backtrace silencers for libraries that you're using but don't wish to see in your backtraces.
|
4
|
-
# Rails.backtrace_cleaner.add_silencer { |line| line =~ /my_noisy_library/ }
|
5
|
-
|
6
|
-
# You can also remove all the silencers if you're trying to debug a problem that might stem from framework code.
|
7
|
-
# Rails.backtrace_cleaner.remove_silencers!
|