omniauth-rails 0.5.0 → 0.6.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/app/controllers/omniauth/rails/authorization_concern.rb +26 -6
- data/app/models/omniauth/rails/authentication_request.rb +7 -0
- data/app/models/omniauth/rails/authentication_session.rb +11 -0
- data/lib/omniauth/rails/configuration.rb +1 -0
- data/lib/omniauth/rails/configurator.rb +7 -2
- data/lib/omniauth/rails/version.rb +1 -1
- data/spec/controllers/authorization_concern_spec.rb +57 -0
- data/spec/examples.txt +25 -23
- data/spec/test_app/app/views/layouts/application.html.erb +1 -1
- data/spec/test_app/log/test.log +1387 -0
- metadata +4 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 35a78d9ba027c9c8e84fd2f3003e05c15f352e34
|
4
|
+
data.tar.gz: 72262c2d3019099baa0b2a5f9baf43f42e0836ea
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b4c5129506da7a5d28599dac439cfd6ae780544e24223e0cf805fb3e4bc708bb86f5d848c536b59fa0221475a2c448e33b6713e40f24ee6cd8c165f306ae3ac7
|
7
|
+
data.tar.gz: 0f3a45548298a1d070c27c5f5f4ff1249feeed21185d90dbb532e1684dab868f409716bf76e53d802a7784e1b9d402214346d4b2ed6f76e23bf69f412846c218
|
@@ -9,14 +9,14 @@ module Omniauth
|
|
9
9
|
module ClassMethods
|
10
10
|
private
|
11
11
|
|
12
|
-
def require_authorization(params)
|
13
|
-
before_action { |c| c.
|
12
|
+
def require_authorization(params = {})
|
13
|
+
before_action { |c| c.omniauth_rails_require_authorization(params) }
|
14
14
|
end
|
15
15
|
end
|
16
16
|
|
17
17
|
protected
|
18
18
|
|
19
|
-
def
|
19
|
+
def omniauth_rails_require_authorization(params)
|
20
20
|
if Configuration.dev_mode
|
21
21
|
::Rails.logger.info "Omniauth::Rails: dev_mode is enabled. Skipping 'require_authorization'"
|
22
22
|
return
|
@@ -24,16 +24,36 @@ module Omniauth
|
|
24
24
|
|
25
25
|
require_authentication # Require authentication before authorization.
|
26
26
|
return if performed?
|
27
|
-
|
27
|
+
omniauth_rails_render_403_forbidden unless omniauth_rails_authorized_with_params?(params)
|
28
28
|
end
|
29
29
|
|
30
30
|
private
|
31
31
|
|
32
|
-
def
|
32
|
+
def omniauth_rails_authorized_with_params?(params)
|
33
|
+
if params.present?
|
34
|
+
omniauth_rails_authorization_checker_authorized?(params)
|
35
|
+
else
|
36
|
+
omniauth_rails_authorized?
|
37
|
+
end
|
38
|
+
end
|
39
|
+
|
40
|
+
def omniauth_rails_authorized?
|
41
|
+
raise(
|
42
|
+
NotImplementedError,
|
43
|
+
"Using 'require_authorization' without arguments requires a method named 'authorized?'.",
|
44
|
+
) unless authorized_method_defined?
|
45
|
+
authorized?
|
46
|
+
end
|
47
|
+
|
48
|
+
def authorized_method_defined?
|
49
|
+
respond_to?(:authorized?, true) && method(:authorized?).arity.zero?
|
50
|
+
end
|
51
|
+
|
52
|
+
def omniauth_rails_authorization_checker_authorized?(params)
|
33
53
|
AuthorizationChecker.new(email: authenticated_email, params: params).authorized?
|
34
54
|
end
|
35
55
|
|
36
|
-
def
|
56
|
+
def omniauth_rails_render_403_forbidden
|
37
57
|
render "omniauth/rails/forbidden", status: :forbidden, layout: false
|
38
58
|
end
|
39
59
|
end
|
@@ -8,6 +8,9 @@ module Omniauth
|
|
8
8
|
|
9
9
|
def persist(authentication_session)
|
10
10
|
authentication_session.email = email
|
11
|
+
extra_keys_to_store_in_session.each do |key|
|
12
|
+
authentication_session.send("#{key}=", info.send(key.to_sym))
|
13
|
+
end
|
11
14
|
authentication_session.expire_in(session_duration)
|
12
15
|
end
|
13
16
|
|
@@ -26,6 +29,10 @@ module Omniauth
|
|
26
29
|
def session_duration
|
27
30
|
Configuration.session_duration
|
28
31
|
end
|
32
|
+
|
33
|
+
def extra_keys_to_store_in_session
|
34
|
+
Configuration.extra_keys_to_store_in_session
|
35
|
+
end
|
29
36
|
end
|
30
37
|
end
|
31
38
|
end
|
@@ -4,6 +4,7 @@ module Omniauth
|
|
4
4
|
class AuthenticationSession
|
5
5
|
EMAIL_KEY = "email"
|
6
6
|
EXPIRE_AT_KEY = "expire_at"
|
7
|
+
EXTRA_KEYS = %w(name image).freeze
|
7
8
|
|
8
9
|
def initialize(session)
|
9
10
|
@session = session
|
@@ -13,6 +14,16 @@ module Omniauth
|
|
13
14
|
|
14
15
|
delegate :reset, to: :data_store
|
15
16
|
|
17
|
+
EXTRA_KEYS.each do |key|
|
18
|
+
define_method(key) do
|
19
|
+
data_store.get(key)
|
20
|
+
end
|
21
|
+
|
22
|
+
define_method("#{key}=") do |value|
|
23
|
+
data_store.set(key, value)
|
24
|
+
end
|
25
|
+
end
|
26
|
+
|
16
27
|
def authenticated?
|
17
28
|
email.present?
|
18
29
|
end
|
@@ -2,7 +2,7 @@
|
|
2
2
|
module Omniauth
|
3
3
|
module Rails
|
4
4
|
class Configurator
|
5
|
-
REQUIRED_SETTINGS = %i(providers authenticated_root
|
5
|
+
REQUIRED_SETTINGS = %i(providers authenticated_root).freeze
|
6
6
|
|
7
7
|
def self.default_config_file
|
8
8
|
"#{::Rails.root}/config/omniauth_rails.yml"
|
@@ -33,6 +33,7 @@ module Omniauth
|
|
33
33
|
Configuration.unauthenticated_root = unauthenticated_root
|
34
34
|
Configuration.include_concern_in_application_controller = include_concern_in_application_controller
|
35
35
|
Configuration.session_duration = session_duration.seconds if session_duration.present?
|
36
|
+
Configuration.extra_keys_to_store_in_session = extra_keys_to_store_in_session
|
36
37
|
Configuration.dev_mode = dev_mode
|
37
38
|
end
|
38
39
|
|
@@ -54,7 +55,7 @@ module Omniauth
|
|
54
55
|
raise "#{setting} is required" unless send(setting).present?
|
55
56
|
end
|
56
57
|
|
57
|
-
if dev_mode
|
58
|
+
if dev_mode # rubocop:disable Style/GuardClause
|
58
59
|
raise "dev_mode may not be used in #{::Rails.env}" unless dev_mode_allowed?
|
59
60
|
::Rails.logger.info "Omniauth::Rails: dev_mode is enabled. Authentication and " \
|
60
61
|
"authorization are disabled."
|
@@ -93,6 +94,10 @@ module Omniauth
|
|
93
94
|
data["autoload_in_application_controller"] != false
|
94
95
|
end
|
95
96
|
|
97
|
+
def extra_keys_to_store_in_session
|
98
|
+
data["extra_keys_to_store_in_session"] || %w(name image)
|
99
|
+
end
|
100
|
+
|
96
101
|
def configure_providers
|
97
102
|
providers.each do |provider, provider_config|
|
98
103
|
Provider.configure(provider, provider_config)
|
@@ -0,0 +1,57 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require "rails_helper_for_engine"
|
4
|
+
|
5
|
+
RSpec.describe Omniauth::Rails::AuthorizationConcern do
|
6
|
+
describe ".require_authorization" do
|
7
|
+
context "require_authorization with no params" do
|
8
|
+
controller(ApplicationController) do
|
9
|
+
require_authorization
|
10
|
+
|
11
|
+
def fake_action
|
12
|
+
head :ok
|
13
|
+
end
|
14
|
+
|
15
|
+
private
|
16
|
+
|
17
|
+
def real_authorized_method?
|
18
|
+
true
|
19
|
+
end
|
20
|
+
end
|
21
|
+
|
22
|
+
before do
|
23
|
+
routes.draw do
|
24
|
+
get "fake_action" => "anonymous#fake_action"
|
25
|
+
end
|
26
|
+
end
|
27
|
+
|
28
|
+
context "an 'authorized?' method is defined" do
|
29
|
+
before do
|
30
|
+
class << controller
|
31
|
+
private
|
32
|
+
|
33
|
+
def authorized?
|
34
|
+
real_authorized_method?
|
35
|
+
end
|
36
|
+
end
|
37
|
+
end
|
38
|
+
|
39
|
+
it "the 'authorized?' method is called" do
|
40
|
+
expect(controller).to receive(:authenticated?).and_return(true)
|
41
|
+
expect(controller).to receive(:real_authorized_method?).and_call_original
|
42
|
+
get :fake_action
|
43
|
+
end
|
44
|
+
end
|
45
|
+
|
46
|
+
context "an 'authorized?' method is NOT defined" do
|
47
|
+
it "the 'authorized?' method is called" do
|
48
|
+
expect(controller).to receive(:authenticated?).and_return(true)
|
49
|
+
expect(controller).not_to receive(:real_authorized_method?)
|
50
|
+
expect do
|
51
|
+
get :fake_action
|
52
|
+
end.to raise_error(NotImplementedError)
|
53
|
+
end
|
54
|
+
end
|
55
|
+
end
|
56
|
+
end
|
57
|
+
end
|
data/spec/examples.txt
CHANGED
@@ -1,26 +1,28 @@
|
|
1
1
|
example_id | status | run_time |
|
2
2
|
------------------------------------------------------------------------ | ------ | --------------- |
|
3
3
|
./spec/controllers/application_controller_spec.rb[1:1] | passed | 0.00035 seconds |
|
4
|
-
./spec/controllers/authentication_concern_spec.rb[1:1:1] | passed | 0.
|
5
|
-
./spec/controllers/authentication_concern_spec.rb[1:1:2:1] | passed | 0.
|
6
|
-
./spec/
|
7
|
-
./spec/
|
8
|
-
./spec/
|
9
|
-
./spec/
|
10
|
-
./spec/
|
11
|
-
./spec/models/omniauth/rails/authorization_types/
|
12
|
-
./spec/models/omniauth/rails/authorization_types/
|
13
|
-
./spec/
|
14
|
-
./spec/
|
15
|
-
./spec/
|
16
|
-
./spec/test_app/spec/
|
17
|
-
./spec/test_app/spec/requests/private_controller_spec.rb[1:1:
|
18
|
-
./spec/test_app/spec/requests/private_controller_spec.rb[1:1:
|
19
|
-
./spec/test_app/spec/requests/
|
20
|
-
./spec/test_app/spec/requests/
|
21
|
-
./spec/test_app/spec/requests/
|
22
|
-
./spec/test_app/spec/requests/sessions_controller_spec.rb[1:
|
23
|
-
./spec/test_app/spec/requests/sessions_controller_spec.rb[1:
|
24
|
-
./spec/test_app/spec/requests/sessions_controller_spec.rb[1:
|
25
|
-
./spec/test_app/spec/requests/sessions_controller_spec.rb[1:
|
26
|
-
./spec/test_app/spec/requests/sessions_controller_spec.rb[1:3:
|
4
|
+
./spec/controllers/authentication_concern_spec.rb[1:1:1] | passed | 0.00582 seconds |
|
5
|
+
./spec/controllers/authentication_concern_spec.rb[1:1:2:1] | passed | 0.00429 seconds |
|
6
|
+
./spec/controllers/authorization_concern_spec.rb[1:1:1:1:1] | passed | 0.02235 seconds |
|
7
|
+
./spec/controllers/authorization_concern_spec.rb[1:1:1:2:1] | passed | 0.00748 seconds |
|
8
|
+
./spec/helpers/application_helper_spec.rb[1:1:1:1] | passed | 0.00214 seconds |
|
9
|
+
./spec/helpers/application_helper_spec.rb[1:1:2:1] | passed | 0.00079 seconds |
|
10
|
+
./spec/lib/omniauth/rails/configurator_spec.rb[1:1:1:1:1] | passed | 0.00051 seconds |
|
11
|
+
./spec/models/omniauth/rails/authorization_types/emails_spec.rb[1:1:1:1] | passed | 0.00009 seconds |
|
12
|
+
./spec/models/omniauth/rails/authorization_types/emails_spec.rb[1:1:2:1] | passed | 0.0001 seconds |
|
13
|
+
./spec/models/omniauth/rails/authorization_types/regex_spec.rb[1:1:1:1] | passed | 0.00009 seconds |
|
14
|
+
./spec/models/omniauth/rails/authorization_types/regex_spec.rb[1:1:2:1] | passed | 0.00017 seconds |
|
15
|
+
./spec/omniauth_rails_spec.rb[1:1] | passed | 0.00069 seconds |
|
16
|
+
./spec/test_app/spec/controllers/private_controller_spec.rb[1:1:1:1] | passed | 0.00635 seconds |
|
17
|
+
./spec/test_app/spec/requests/private_controller_spec.rb[1:1:1:1] | passed | 0.01589 seconds |
|
18
|
+
./spec/test_app/spec/requests/private_controller_spec.rb[1:1:1:2:1] | passed | 0.00719 seconds |
|
19
|
+
./spec/test_app/spec/requests/private_controller_spec.rb[1:1:2:1:1] | passed | 0.19258 seconds |
|
20
|
+
./spec/test_app/spec/requests/private_controller_spec.rb[1:1:2:2:1] | passed | 0.01554 seconds |
|
21
|
+
./spec/test_app/spec/requests/public_controller_spec.rb[1:1:1] | passed | 0.00934 seconds |
|
22
|
+
./spec/test_app/spec/requests/sessions_controller_spec.rb[1:1:1] | passed | 0.00466 seconds |
|
23
|
+
./spec/test_app/spec/requests/sessions_controller_spec.rb[1:1:2:1] | passed | 0.00235 seconds |
|
24
|
+
./spec/test_app/spec/requests/sessions_controller_spec.rb[1:2:1:1] | passed | 0.00964 seconds |
|
25
|
+
./spec/test_app/spec/requests/sessions_controller_spec.rb[1:2:1:2:1] | passed | 0.00408 seconds |
|
26
|
+
./spec/test_app/spec/requests/sessions_controller_spec.rb[1:3:1:1] | passed | 0.00104 seconds |
|
27
|
+
./spec/test_app/spec/requests/sessions_controller_spec.rb[1:3:2:1] | passed | 0.00112 seconds |
|
28
|
+
./spec/test_app/spec/requests/sessions_controller_spec.rb[1:3:3:1] | passed | 0.00277 seconds |
|
data/spec/test_app/log/test.log
CHANGED
@@ -60383,3 +60383,1390 @@ Processing by Omniauth::Rails::SessionsController#destroy as HTML
|
|
60383
60383
|
Rendering /Users/danrabinowitz/code/omniauth-rails/app/views/omniauth/rails/sessions/destroy.html.erb
|
60384
60384
|
Rendered /Users/danrabinowitz/code/omniauth-rails/app/views/omniauth/rails/sessions/destroy.html.erb (0.6ms)
|
60385
60385
|
Completed 200 OK in 4ms (Views: 3.5ms)
|
60386
|
+
Omniauth::Rails::Configurator: Loading from default_config_file=/Users/danrabinowitz/code/omniauth-rails/spec/test_app/config/omniauth_rails.yml
|
60387
|
+
Mounting Omniauth::Rails::Engine in Rails.application.routes
|
60388
|
+
Autoloading Omniauth::Rails::ControllersConcern into ActionController::Base
|
60389
|
+
Started GET "/private" for 127.0.0.1 at 2016-10-06 16:16:38 -0600
|
60390
|
+
Processing by PrivateController#show as HTML
|
60391
|
+
Rendering /Users/danrabinowitz/code/omniauth-rails/app/views/omniauth/rails/forbidden.html
|
60392
|
+
Rendered /Users/danrabinowitz/code/omniauth-rails/app/views/omniauth/rails/forbidden.html (0.7ms)
|
60393
|
+
Filter chain halted as #<Proc:0x007fc71ac39478@/Users/danrabinowitz/code/omniauth-rails/app/controllers/omniauth/rails/authorization_concern.rb:13> rendered or redirected
|
60394
|
+
Completed 403 Forbidden in 17ms (Views: 15.0ms)
|
60395
|
+
Started GET "/private" for 127.0.0.1 at 2016-10-06 16:16:38 -0600
|
60396
|
+
Processing by PrivateController#show as HTML
|
60397
|
+
Rendering private/show.html.erb within layouts/application
|
60398
|
+
Rendered private/show.html.erb within layouts/application (0.3ms)
|
60399
|
+
Completed 200 OK in 149ms (Views: 148.2ms)
|
60400
|
+
Started GET "/private" for 127.0.0.1 at 2016-10-06 16:16:38 -0600
|
60401
|
+
Processing by PrivateController#show as HTML
|
60402
|
+
Redirected to http://www.example.com/auth/sign_in
|
60403
|
+
Filter chain halted as #<Proc:0x007fc71ac39478@/Users/danrabinowitz/code/omniauth-rails/app/controllers/omniauth/rails/authorization_concern.rb:13> rendered or redirected
|
60404
|
+
Completed 302 Found in 7ms
|
60405
|
+
Started GET "/private" for 127.0.0.1 at 2016-10-06 16:16:38 -0600
|
60406
|
+
Processing by PrivateController#show as HTML
|
60407
|
+
Omniauth::Rails: dev_mode is enabled. Skipping 'require_authorization'
|
60408
|
+
Rendering private/show.html.erb within layouts/application
|
60409
|
+
Rendered private/show.html.erb within layouts/application (0.3ms)
|
60410
|
+
Completed 200 OK in 4ms (Views: 3.5ms)
|
60411
|
+
Processing by PrivateController#show as HTML
|
60412
|
+
Rendering private/show.html.erb within layouts/application
|
60413
|
+
Rendered private/show.html.erb within layouts/application (0.1ms)
|
60414
|
+
Completed 200 OK in 5ms (Views: 3.9ms)
|
60415
|
+
Omniauth::Rails: dev_mode is enabled. Authentication and authorization are disabled.
|
60416
|
+
Started GET "/private" for 127.0.0.1 at 2016-10-06 16:16:39 -0600
|
60417
|
+
Processing by PrivateController#show as HTML
|
60418
|
+
Rendering private/show.html.erb within layouts/application
|
60419
|
+
Rendered private/show.html.erb within layouts/application (0.3ms)
|
60420
|
+
Completed 200 OK in 5ms (Views: 4.0ms)
|
60421
|
+
Started DELETE "/auth/sign_out" for 127.0.0.1 at 2016-10-06 16:16:39 -0600
|
60422
|
+
Processing by Omniauth::Rails::SessionsController#destroy as HTML
|
60423
|
+
Redirected to http://www.example.com/
|
60424
|
+
Completed 302 Found in 0ms
|
60425
|
+
Started GET "/private" for 127.0.0.1 at 2016-10-06 16:16:39 -0600
|
60426
|
+
Processing by PrivateController#show as HTML
|
60427
|
+
Redirected to http://www.example.com/auth/sign_in
|
60428
|
+
Filter chain halted as #<Proc:0x007fc71ac39478@/Users/danrabinowitz/code/omniauth-rails/app/controllers/omniauth/rails/authorization_concern.rb:13> rendered or redirected
|
60429
|
+
Completed 302 Found in 0ms
|
60430
|
+
Started DELETE "/auth/sign_out" for 127.0.0.1 at 2016-10-06 16:16:39 -0600
|
60431
|
+
Processing by Omniauth::Rails::SessionsController#destroy as HTML
|
60432
|
+
Rendering /Users/danrabinowitz/code/omniauth-rails/app/views/omniauth/rails/sessions/destroy.html.erb
|
60433
|
+
Rendered /Users/danrabinowitz/code/omniauth-rails/app/views/omniauth/rails/sessions/destroy.html.erb (0.5ms)
|
60434
|
+
Completed 200 OK in 2ms (Views: 2.3ms)
|
60435
|
+
Started GET "/auth/google_oauth2/callback" for 127.0.0.1 at 2016-10-06 16:16:39 -0600
|
60436
|
+
(google_oauth2) Authentication failure! invalid_credentials encountered.
|
60437
|
+
Started GET "/auth/google_oauth2/callback" for 127.0.0.1 at 2016-10-06 16:16:39 -0600
|
60438
|
+
(google_oauth2) Authentication failure! csrf_detected encountered.
|
60439
|
+
Started GET "/auth/google_oauth2/callback" for 127.0.0.1 at 2016-10-06 16:16:39 -0600
|
60440
|
+
Processing by Omniauth::Rails::SessionsController#create as HTML
|
60441
|
+
Parameters: {"provider"=>"google_oauth2"}
|
60442
|
+
Redirected to http://www.example.com/
|
60443
|
+
Completed 302 Found in 1ms
|
60444
|
+
Started GET "/auth/sign_in" for 127.0.0.1 at 2016-10-06 16:16:39 -0600
|
60445
|
+
Processing by Omniauth::Rails::SessionsController#new as HTML
|
60446
|
+
Redirected to http://www.example.com/auth/google_oauth2
|
60447
|
+
Completed 302 Found in 1ms
|
60448
|
+
Started GET "/auth/sign_in" for 127.0.0.1 at 2016-10-06 16:16:39 -0600
|
60449
|
+
Processing by Omniauth::Rails::SessionsController#new as HTML
|
60450
|
+
Redirected to http://www.example.com/
|
60451
|
+
Completed 302 Found in 0ms
|
60452
|
+
Processing by AnonymousController#fake_action as HTML
|
60453
|
+
Redirected to http://test.host/auth/sign_in
|
60454
|
+
Filter chain halted as :require_authentication rendered or redirected
|
60455
|
+
Completed 302 Found in 1ms
|
60456
|
+
Processing by AnonymousController#fake_action as HTML
|
60457
|
+
Omniauth::Rails: dev_mode is enabled. Skipping 'require_authentication'
|
60458
|
+
Completed 200 OK in 0ms
|
60459
|
+
Started GET "/public" for 127.0.0.1 at 2016-10-06 16:16:39 -0600
|
60460
|
+
Processing by PublicController#show as HTML
|
60461
|
+
Rendering public/show.html.erb within layouts/application
|
60462
|
+
Rendered public/show.html.erb within layouts/application (0.3ms)
|
60463
|
+
Completed 200 OK in 5ms (Views: 3.8ms)
|
60464
|
+
Omniauth::Rails::Configurator: Loading from default_config_file=/Users/danrabinowitz/code/omniauth-rails/spec/test_app/config/omniauth_rails.yml
|
60465
|
+
Mounting Omniauth::Rails::Engine in Rails.application.routes
|
60466
|
+
Autoloading Omniauth::Rails::ControllersConcern into ActionController::Base
|
60467
|
+
Started GET "/auth/sign_in" for 127.0.0.1 at 2016-10-06 16:16:41 -0600
|
60468
|
+
Processing by Omniauth::Rails::SessionsController#new as HTML
|
60469
|
+
Redirected to http://www.example.com/auth/google_oauth2
|
60470
|
+
Completed 302 Found in 10ms
|
60471
|
+
Started GET "/auth/sign_in" for 127.0.0.1 at 2016-10-06 16:16:41 -0600
|
60472
|
+
Processing by Omniauth::Rails::SessionsController#new as HTML
|
60473
|
+
Redirected to http://www.example.com/private
|
60474
|
+
Completed 302 Found in 0ms
|
60475
|
+
Started GET "/auth/google_oauth2/callback" for 127.0.0.1 at 2016-10-06 16:16:41 -0600
|
60476
|
+
(google_oauth2) Authentication failure! csrf_detected encountered.
|
60477
|
+
Started GET "/auth/google_oauth2/callback" for 127.0.0.1 at 2016-10-06 16:16:41 -0600
|
60478
|
+
(google_oauth2) Authentication failure! invalid_credentials encountered.
|
60479
|
+
Started GET "/auth/google_oauth2/callback" for 127.0.0.1 at 2016-10-06 16:16:41 -0600
|
60480
|
+
Processing by Omniauth::Rails::SessionsController#create as HTML
|
60481
|
+
Parameters: {"provider"=>"google_oauth2"}
|
60482
|
+
Redirected to http://www.example.com/private
|
60483
|
+
Completed 302 Found in 1ms
|
60484
|
+
Started GET "/private" for 127.0.0.1 at 2016-10-06 16:16:41 -0600
|
60485
|
+
Processing by PrivateController#show as HTML
|
60486
|
+
Rendering private/show.html.erb within layouts/application
|
60487
|
+
Rendered private/show.html.erb within layouts/application (0.8ms)
|
60488
|
+
Completed 200 OK in 152ms (Views: 149.9ms)
|
60489
|
+
Started DELETE "/auth/sign_out" for 127.0.0.1 at 2016-10-06 16:16:42 -0600
|
60490
|
+
Processing by Omniauth::Rails::SessionsController#destroy as HTML
|
60491
|
+
Redirected to http://www.example.com/public
|
60492
|
+
Completed 302 Found in 0ms
|
60493
|
+
Started GET "/private" for 127.0.0.1 at 2016-10-06 16:16:42 -0600
|
60494
|
+
Processing by PrivateController#show as HTML
|
60495
|
+
Redirected to http://www.example.com/auth/sign_in
|
60496
|
+
Filter chain halted as #<Proc:0x007fcd62c396c8@/Users/danrabinowitz/code/omniauth-rails/app/controllers/omniauth/rails/authorization_concern.rb:13> rendered or redirected
|
60497
|
+
Completed 302 Found in 1ms
|
60498
|
+
Started DELETE "/auth/sign_out" for 127.0.0.1 at 2016-10-06 16:16:42 -0600
|
60499
|
+
Processing by Omniauth::Rails::SessionsController#destroy as HTML
|
60500
|
+
Rendering /Users/danrabinowitz/code/omniauth-rails/app/views/omniauth/rails/sessions/destroy.html.erb
|
60501
|
+
Rendered /Users/danrabinowitz/code/omniauth-rails/app/views/omniauth/rails/sessions/destroy.html.erb (0.6ms)
|
60502
|
+
Completed 200 OK in 3ms (Views: 2.7ms)
|
60503
|
+
Started GET "/public" for 127.0.0.1 at 2016-10-06 16:16:42 -0600
|
60504
|
+
Processing by PublicController#show as HTML
|
60505
|
+
Rendering public/show.html.erb within layouts/application
|
60506
|
+
Rendered public/show.html.erb within layouts/application (0.3ms)
|
60507
|
+
Completed 200 OK in 5ms (Views: 3.9ms)
|
60508
|
+
Processing by AnonymousController#fake_action as HTML
|
60509
|
+
Redirected to http://test.host/auth/sign_in
|
60510
|
+
Filter chain halted as :require_authentication rendered or redirected
|
60511
|
+
Completed 302 Found in 1ms
|
60512
|
+
Processing by AnonymousController#fake_action as HTML
|
60513
|
+
Omniauth::Rails: dev_mode is enabled. Skipping 'require_authentication'
|
60514
|
+
Completed 200 OK in 0ms
|
60515
|
+
Omniauth::Rails: dev_mode is enabled. Authentication and authorization are disabled.
|
60516
|
+
Processing by PrivateController#show as HTML
|
60517
|
+
Rendering private/show.html.erb within layouts/application
|
60518
|
+
Rendered private/show.html.erb within layouts/application (0.2ms)
|
60519
|
+
Completed 200 OK in 6ms (Views: 3.9ms)
|
60520
|
+
Started GET "/private" for 127.0.0.1 at 2016-10-06 16:16:42 -0600
|
60521
|
+
Processing by PrivateController#show as HTML
|
60522
|
+
Redirected to http://www.example.com/auth/sign_in
|
60523
|
+
Filter chain halted as #<Proc:0x007fcd62c396c8@/Users/danrabinowitz/code/omniauth-rails/app/controllers/omniauth/rails/authorization_concern.rb:13> rendered or redirected
|
60524
|
+
Completed 302 Found in 1ms
|
60525
|
+
Started GET "/private" for 127.0.0.1 at 2016-10-06 16:16:42 -0600
|
60526
|
+
Processing by PrivateController#show as HTML
|
60527
|
+
Omniauth::Rails: dev_mode is enabled. Skipping 'require_authorization'
|
60528
|
+
Rendering private/show.html.erb within layouts/application
|
60529
|
+
Rendered private/show.html.erb within layouts/application (0.3ms)
|
60530
|
+
Completed 200 OK in 5ms (Views: 3.7ms)
|
60531
|
+
Started GET "/private" for 127.0.0.1 at 2016-10-06 16:16:42 -0600
|
60532
|
+
Processing by PrivateController#show as HTML
|
60533
|
+
Rendering private/show.html.erb within layouts/application
|
60534
|
+
Rendered private/show.html.erb within layouts/application (0.4ms)
|
60535
|
+
Completed 200 OK in 7ms (Views: 6.1ms)
|
60536
|
+
Started GET "/private" for 127.0.0.1 at 2016-10-06 16:16:42 -0600
|
60537
|
+
Processing by PrivateController#show as HTML
|
60538
|
+
Rendering /Users/danrabinowitz/code/omniauth-rails/app/views/omniauth/rails/forbidden.html
|
60539
|
+
Rendered /Users/danrabinowitz/code/omniauth-rails/app/views/omniauth/rails/forbidden.html (0.2ms)
|
60540
|
+
Filter chain halted as #<Proc:0x007fcd62c396c8@/Users/danrabinowitz/code/omniauth-rails/app/controllers/omniauth/rails/authorization_concern.rb:13> rendered or redirected
|
60541
|
+
Completed 403 Forbidden in 13ms (Views: 12.4ms)
|
60542
|
+
Omniauth::Rails::Configurator: Loading from default_config_file=/Users/danrabinowitz/code/omniauth-rails/spec/test_app/config/omniauth_rails.yml
|
60543
|
+
Mounting Omniauth::Rails::Engine in Rails.application.routes
|
60544
|
+
Autoloading Omniauth::Rails::ControllersConcern into ActionController::Base
|
60545
|
+
Processing by PrivateController#show as HTML
|
60546
|
+
Rendering private/show.html.erb within layouts/application
|
60547
|
+
Rendered private/show.html.erb within layouts/application (0.3ms)
|
60548
|
+
Completed 200 OK in 10ms (Views: 7.6ms)
|
60549
|
+
Started GET "/private" for 127.0.0.1 at 2016-11-18 14:48:05 -0700
|
60550
|
+
Processing by PrivateController#show as HTML
|
60551
|
+
Redirected to http://www.example.com/auth/sign_in
|
60552
|
+
Filter chain halted as #<Proc:0x007f8a3347a850@/Users/danrabinowitz/code/omniauth-rails/app/controllers/omniauth/rails/authorization_concern.rb:13> rendered or redirected
|
60553
|
+
Completed 302 Found in 15ms
|
60554
|
+
Started GET "/private" for 127.0.0.1 at 2016-11-18 14:48:05 -0700
|
60555
|
+
Processing by PrivateController#show as HTML
|
60556
|
+
Omniauth::Rails: dev_mode is enabled. Skipping 'require_authorization'
|
60557
|
+
Rendering private/show.html.erb within layouts/application
|
60558
|
+
Rendered private/show.html.erb within layouts/application (1.5ms)
|
60559
|
+
Completed 200 OK in 176ms (Views: 174.3ms)
|
60560
|
+
Started GET "/private" for 127.0.0.1 at 2016-11-18 14:48:06 -0700
|
60561
|
+
Processing by PrivateController#show as HTML
|
60562
|
+
Rendering /Users/danrabinowitz/code/omniauth-rails/app/views/omniauth/rails/forbidden.html
|
60563
|
+
Rendered /Users/danrabinowitz/code/omniauth-rails/app/views/omniauth/rails/forbidden.html (0.3ms)
|
60564
|
+
Filter chain halted as #<Proc:0x007f8a3347a850@/Users/danrabinowitz/code/omniauth-rails/app/controllers/omniauth/rails/authorization_concern.rb:13> rendered or redirected
|
60565
|
+
Completed 403 Forbidden in 14ms (Views: 13.6ms)
|
60566
|
+
Started GET "/private" for 127.0.0.1 at 2016-11-18 14:48:06 -0700
|
60567
|
+
Processing by PrivateController#show as HTML
|
60568
|
+
Rendering private/show.html.erb within layouts/application
|
60569
|
+
Rendered private/show.html.erb within layouts/application (0.3ms)
|
60570
|
+
Completed 200 OK in 5ms (Views: 3.7ms)
|
60571
|
+
Processing by AnonymousController#fake_action as HTML
|
60572
|
+
Redirected to http://test.host/auth/sign_in
|
60573
|
+
Filter chain halted as :require_authentication rendered or redirected
|
60574
|
+
Completed 302 Found in 1ms
|
60575
|
+
Processing by AnonymousController#fake_action as HTML
|
60576
|
+
Omniauth::Rails: dev_mode is enabled. Skipping 'require_authentication'
|
60577
|
+
Completed 200 OK in 0ms
|
60578
|
+
Started GET "/public" for 127.0.0.1 at 2016-11-18 14:48:06 -0700
|
60579
|
+
Processing by PublicController#show as HTML
|
60580
|
+
Rendering public/show.html.erb within layouts/application
|
60581
|
+
Rendered public/show.html.erb within layouts/application (0.3ms)
|
60582
|
+
Completed 200 OK in 5ms (Views: 3.7ms)
|
60583
|
+
Started GET "/auth/sign_in" for 127.0.0.1 at 2016-11-18 14:48:06 -0700
|
60584
|
+
Processing by Omniauth::Rails::SessionsController#new as HTML
|
60585
|
+
Redirected to http://www.example.com/auth/google_oauth2
|
60586
|
+
Completed 302 Found in 1ms
|
60587
|
+
Started GET "/auth/sign_in" for 127.0.0.1 at 2016-11-18 14:48:06 -0700
|
60588
|
+
Processing by Omniauth::Rails::SessionsController#new as HTML
|
60589
|
+
Redirected to http://www.example.com/private
|
60590
|
+
Completed 302 Found in 0ms
|
60591
|
+
Started GET "/private" for 127.0.0.1 at 2016-11-18 14:48:06 -0700
|
60592
|
+
Processing by PrivateController#show as HTML
|
60593
|
+
Rendering private/show.html.erb within layouts/application
|
60594
|
+
Rendered private/show.html.erb within layouts/application (0.3ms)
|
60595
|
+
Completed 200 OK in 5ms (Views: 4.1ms)
|
60596
|
+
Started DELETE "/auth/sign_out" for 127.0.0.1 at 2016-11-18 14:48:06 -0700
|
60597
|
+
Processing by Omniauth::Rails::SessionsController#destroy as HTML
|
60598
|
+
Redirected to http://www.example.com/public
|
60599
|
+
Completed 302 Found in 0ms
|
60600
|
+
Started GET "/private" for 127.0.0.1 at 2016-11-18 14:48:06 -0700
|
60601
|
+
Processing by PrivateController#show as HTML
|
60602
|
+
Redirected to http://www.example.com/auth/sign_in
|
60603
|
+
Filter chain halted as #<Proc:0x007f8a3347a850@/Users/danrabinowitz/code/omniauth-rails/app/controllers/omniauth/rails/authorization_concern.rb:13> rendered or redirected
|
60604
|
+
Completed 302 Found in 1ms
|
60605
|
+
Started DELETE "/auth/sign_out" for 127.0.0.1 at 2016-11-18 14:48:06 -0700
|
60606
|
+
Processing by Omniauth::Rails::SessionsController#destroy as HTML
|
60607
|
+
Rendering /Users/danrabinowitz/code/omniauth-rails/app/views/omniauth/rails/sessions/destroy.html.erb
|
60608
|
+
Rendered /Users/danrabinowitz/code/omniauth-rails/app/views/omniauth/rails/sessions/destroy.html.erb (0.5ms)
|
60609
|
+
Completed 200 OK in 2ms (Views: 2.3ms)
|
60610
|
+
Started GET "/auth/google_oauth2/callback" for 127.0.0.1 at 2016-11-18 14:48:06 -0700
|
60611
|
+
Processing by Omniauth::Rails::SessionsController#create as HTML
|
60612
|
+
Parameters: {"provider"=>"google_oauth2"}
|
60613
|
+
Redirected to http://www.example.com/private
|
60614
|
+
Completed 302 Found in 1ms
|
60615
|
+
Started GET "/auth/google_oauth2/callback" for 127.0.0.1 at 2016-11-18 14:48:06 -0700
|
60616
|
+
(google_oauth2) Authentication failure! csrf_detected encountered.
|
60617
|
+
Started GET "/auth/google_oauth2/callback" for 127.0.0.1 at 2016-11-18 14:48:06 -0700
|
60618
|
+
(google_oauth2) Authentication failure! invalid_credentials encountered.
|
60619
|
+
Omniauth::Rails: dev_mode is enabled. Authentication and authorization are disabled.
|
60620
|
+
Omniauth::Rails::Configurator: Loading from default_config_file=/Users/danrabinowitz/code/omniauth-rails/spec/test_app/config/omniauth_rails.yml
|
60621
|
+
Mounting Omniauth::Rails::Engine in Rails.application.routes
|
60622
|
+
Autoloading Omniauth::Rails::ControllersConcern into ActionController::Base
|
60623
|
+
Omniauth::Rails: dev_mode is enabled. Authentication and authorization are disabled.
|
60624
|
+
Started GET "/public" for 127.0.0.1 at 2016-11-18 14:49:32 -0700
|
60625
|
+
Processing by PublicController#show as HTML
|
60626
|
+
Rendering public/show.html.erb within layouts/application
|
60627
|
+
Rendered public/show.html.erb within layouts/application (0.8ms)
|
60628
|
+
Completed 200 OK in 173ms (Views: 172.0ms)
|
60629
|
+
Processing by PrivateController#show as HTML
|
60630
|
+
Rendering private/show.html.erb within layouts/application
|
60631
|
+
Rendered private/show.html.erb within layouts/application (0.2ms)
|
60632
|
+
Completed 200 OK in 6ms (Views: 4.1ms)
|
60633
|
+
Started GET "/private" for 127.0.0.1 at 2016-11-18 14:49:32 -0700
|
60634
|
+
Processing by PrivateController#show as HTML
|
60635
|
+
Rendering private/show.html.erb within layouts/application
|
60636
|
+
Rendered private/show.html.erb within layouts/application (0.2ms)
|
60637
|
+
Completed 200 OK in 5ms (Views: 4.4ms)
|
60638
|
+
Started DELETE "/auth/sign_out" for 127.0.0.1 at 2016-11-18 14:49:32 -0700
|
60639
|
+
Processing by Omniauth::Rails::SessionsController#destroy as HTML
|
60640
|
+
Redirected to http://www.example.com/
|
60641
|
+
Completed 302 Found in 0ms
|
60642
|
+
Started GET "/private" for 127.0.0.1 at 2016-11-18 14:49:32 -0700
|
60643
|
+
Processing by PrivateController#show as HTML
|
60644
|
+
Redirected to http://www.example.com/auth/sign_in
|
60645
|
+
Filter chain halted as #<Proc:0x007ffe04453e40@/Users/danrabinowitz/code/omniauth-rails/app/controllers/omniauth/rails/authorization_concern.rb:13> rendered or redirected
|
60646
|
+
Completed 302 Found in 1ms
|
60647
|
+
Started DELETE "/auth/sign_out" for 127.0.0.1 at 2016-11-18 14:49:32 -0700
|
60648
|
+
Processing by Omniauth::Rails::SessionsController#destroy as HTML
|
60649
|
+
Rendering /Users/danrabinowitz/code/omniauth-rails/app/views/omniauth/rails/sessions/destroy.html.erb
|
60650
|
+
Rendered /Users/danrabinowitz/code/omniauth-rails/app/views/omniauth/rails/sessions/destroy.html.erb (0.5ms)
|
60651
|
+
Completed 200 OK in 2ms (Views: 2.2ms)
|
60652
|
+
Started GET "/auth/sign_in" for 127.0.0.1 at 2016-11-18 14:49:32 -0700
|
60653
|
+
Processing by Omniauth::Rails::SessionsController#new as HTML
|
60654
|
+
Redirected to http://www.example.com/auth/google_oauth2
|
60655
|
+
Completed 302 Found in 1ms
|
60656
|
+
Started GET "/auth/sign_in" for 127.0.0.1 at 2016-11-18 14:49:32 -0700
|
60657
|
+
Processing by Omniauth::Rails::SessionsController#new as HTML
|
60658
|
+
Redirected to http://www.example.com/
|
60659
|
+
Completed 302 Found in 0ms
|
60660
|
+
Started GET "/auth/google_oauth2/callback" for 127.0.0.1 at 2016-11-18 14:49:32 -0700
|
60661
|
+
(google_oauth2) Authentication failure! invalid_credentials encountered.
|
60662
|
+
Started GET "/auth/google_oauth2/callback" for 127.0.0.1 at 2016-11-18 14:49:32 -0700
|
60663
|
+
Processing by Omniauth::Rails::SessionsController#create as HTML
|
60664
|
+
Parameters: {"provider"=>"google_oauth2"}
|
60665
|
+
Redirected to http://www.example.com/
|
60666
|
+
Completed 302 Found in 1ms
|
60667
|
+
Started GET "/auth/google_oauth2/callback" for 127.0.0.1 at 2016-11-18 14:49:32 -0700
|
60668
|
+
(google_oauth2) Authentication failure! csrf_detected encountered.
|
60669
|
+
Started GET "/private" for 127.0.0.1 at 2016-11-18 14:49:32 -0700
|
60670
|
+
Processing by PrivateController#show as HTML
|
60671
|
+
Rendering /Users/danrabinowitz/code/omniauth-rails/app/views/omniauth/rails/forbidden.html
|
60672
|
+
Rendered /Users/danrabinowitz/code/omniauth-rails/app/views/omniauth/rails/forbidden.html (0.3ms)
|
60673
|
+
Filter chain halted as #<Proc:0x007ffe04453e40@/Users/danrabinowitz/code/omniauth-rails/app/controllers/omniauth/rails/authorization_concern.rb:13> rendered or redirected
|
60674
|
+
Completed 403 Forbidden in 17ms (Views: 16.3ms)
|
60675
|
+
Started GET "/private" for 127.0.0.1 at 2016-11-18 14:49:32 -0700
|
60676
|
+
Processing by PrivateController#show as HTML
|
60677
|
+
Rendering private/show.html.erb within layouts/application
|
60678
|
+
Rendered private/show.html.erb within layouts/application (0.3ms)
|
60679
|
+
Completed 200 OK in 5ms (Views: 4.1ms)
|
60680
|
+
Started GET "/private" for 127.0.0.1 at 2016-11-18 14:49:32 -0700
|
60681
|
+
Processing by PrivateController#show as HTML
|
60682
|
+
Redirected to http://www.example.com/auth/sign_in
|
60683
|
+
Filter chain halted as #<Proc:0x007ffe04453e40@/Users/danrabinowitz/code/omniauth-rails/app/controllers/omniauth/rails/authorization_concern.rb:13> rendered or redirected
|
60684
|
+
Completed 302 Found in 1ms
|
60685
|
+
Started GET "/private" for 127.0.0.1 at 2016-11-18 14:49:32 -0700
|
60686
|
+
Processing by PrivateController#show as HTML
|
60687
|
+
Omniauth::Rails: dev_mode is enabled. Skipping 'require_authorization'
|
60688
|
+
Rendering private/show.html.erb within layouts/application
|
60689
|
+
Rendered private/show.html.erb within layouts/application (0.3ms)
|
60690
|
+
Completed 200 OK in 5ms (Views: 3.7ms)
|
60691
|
+
Processing by AnonymousController#fake_action as HTML
|
60692
|
+
Redirected to http://test.host/auth/sign_in
|
60693
|
+
Filter chain halted as :require_authentication rendered or redirected
|
60694
|
+
Completed 302 Found in 0ms
|
60695
|
+
Processing by AnonymousController#fake_action as HTML
|
60696
|
+
Omniauth::Rails: dev_mode is enabled. Skipping 'require_authentication'
|
60697
|
+
Completed 200 OK in 0ms
|
60698
|
+
Omniauth::Rails::Configurator: Loading from default_config_file=/Users/danrabinowitz/code/omniauth-rails/spec/test_app/config/omniauth_rails.yml
|
60699
|
+
Mounting Omniauth::Rails::Engine in Rails.application.routes
|
60700
|
+
Autoloading Omniauth::Rails::ControllersConcern into ActionController::Base
|
60701
|
+
Started GET "/public" for 127.0.0.1 at 2016-11-18 14:49:51 -0700
|
60702
|
+
Processing by PublicController#show as HTML
|
60703
|
+
Rendering public/show.html.erb within layouts/application
|
60704
|
+
Rendered public/show.html.erb within layouts/application (1.0ms)
|
60705
|
+
Completed 200 OK in 173ms (Views: 171.8ms)
|
60706
|
+
Started GET "/auth/sign_in" for 127.0.0.1 at 2016-11-18 14:49:52 -0700
|
60707
|
+
Processing by Omniauth::Rails::SessionsController#new as HTML
|
60708
|
+
Redirected to http://www.example.com/auth/google_oauth2
|
60709
|
+
Completed 302 Found in 1ms
|
60710
|
+
Started GET "/auth/sign_in" for 127.0.0.1 at 2016-11-18 14:49:52 -0700
|
60711
|
+
Processing by Omniauth::Rails::SessionsController#new as HTML
|
60712
|
+
Redirected to http://www.example.com/private
|
60713
|
+
Completed 302 Found in 1ms
|
60714
|
+
Started GET "/private" for 127.0.0.1 at 2016-11-18 14:49:52 -0700
|
60715
|
+
Processing by PrivateController#show as HTML
|
60716
|
+
Rendering private/show.html.erb within layouts/application
|
60717
|
+
Rendered private/show.html.erb within layouts/application (0.3ms)
|
60718
|
+
Completed 200 OK in 7ms (Views: 4.9ms)
|
60719
|
+
Started DELETE "/auth/sign_out" for 127.0.0.1 at 2016-11-18 14:49:52 -0700
|
60720
|
+
Processing by Omniauth::Rails::SessionsController#destroy as HTML
|
60721
|
+
Redirected to http://www.example.com/public
|
60722
|
+
Completed 302 Found in 0ms
|
60723
|
+
Started GET "/private" for 127.0.0.1 at 2016-11-18 14:49:52 -0700
|
60724
|
+
Processing by PrivateController#show as HTML
|
60725
|
+
Redirected to http://www.example.com/auth/sign_in
|
60726
|
+
Filter chain halted as #<Proc:0x007fa6bc47a878@/Users/danrabinowitz/code/omniauth-rails/app/controllers/omniauth/rails/authorization_concern.rb:13> rendered or redirected
|
60727
|
+
Completed 302 Found in 1ms
|
60728
|
+
Started DELETE "/auth/sign_out" for 127.0.0.1 at 2016-11-18 14:49:52 -0700
|
60729
|
+
Processing by Omniauth::Rails::SessionsController#destroy as HTML
|
60730
|
+
Rendering /Users/danrabinowitz/code/omniauth-rails/app/views/omniauth/rails/sessions/destroy.html.erb
|
60731
|
+
Rendered /Users/danrabinowitz/code/omniauth-rails/app/views/omniauth/rails/sessions/destroy.html.erb (0.7ms)
|
60732
|
+
Completed 200 OK in 3ms (Views: 2.7ms)
|
60733
|
+
Started GET "/auth/google_oauth2/callback" for 127.0.0.1 at 2016-11-18 14:49:52 -0700
|
60734
|
+
(google_oauth2) Authentication failure! csrf_detected encountered.
|
60735
|
+
Started GET "/auth/google_oauth2/callback" for 127.0.0.1 at 2016-11-18 14:49:52 -0700
|
60736
|
+
Processing by Omniauth::Rails::SessionsController#create as HTML
|
60737
|
+
Parameters: {"provider"=>"google_oauth2"}
|
60738
|
+
Redirected to http://www.example.com/private
|
60739
|
+
Completed 302 Found in 1ms
|
60740
|
+
Started GET "/auth/google_oauth2/callback" for 127.0.0.1 at 2016-11-18 14:49:52 -0700
|
60741
|
+
(google_oauth2) Authentication failure! invalid_credentials encountered.
|
60742
|
+
Omniauth::Rails: dev_mode is enabled. Authentication and authorization are disabled.
|
60743
|
+
Processing by PrivateController#show as HTML
|
60744
|
+
Rendering private/show.html.erb within layouts/application
|
60745
|
+
Rendered private/show.html.erb within layouts/application (0.3ms)
|
60746
|
+
Completed 200 OK in 6ms (Views: 4.5ms)
|
60747
|
+
Processing by AnonymousController#fake_action as HTML
|
60748
|
+
Redirected to http://test.host/auth/sign_in
|
60749
|
+
Filter chain halted as :require_authentication rendered or redirected
|
60750
|
+
Completed 302 Found in 1ms
|
60751
|
+
Processing by AnonymousController#fake_action as HTML
|
60752
|
+
Omniauth::Rails: dev_mode is enabled. Skipping 'require_authentication'
|
60753
|
+
Completed 200 OK in 0ms
|
60754
|
+
Started GET "/private" for 127.0.0.1 at 2016-11-18 14:49:52 -0700
|
60755
|
+
Processing by PrivateController#show as HTML
|
60756
|
+
Redirected to http://www.example.com/auth/sign_in
|
60757
|
+
Filter chain halted as #<Proc:0x007fa6bc47a878@/Users/danrabinowitz/code/omniauth-rails/app/controllers/omniauth/rails/authorization_concern.rb:13> rendered or redirected
|
60758
|
+
Completed 302 Found in 1ms
|
60759
|
+
Started GET "/private" for 127.0.0.1 at 2016-11-18 14:49:52 -0700
|
60760
|
+
Processing by PrivateController#show as HTML
|
60761
|
+
Omniauth::Rails: dev_mode is enabled. Skipping 'require_authorization'
|
60762
|
+
Rendering private/show.html.erb within layouts/application
|
60763
|
+
Rendered private/show.html.erb within layouts/application (0.3ms)
|
60764
|
+
Completed 200 OK in 5ms (Views: 3.5ms)
|
60765
|
+
Started GET "/private" for 127.0.0.1 at 2016-11-18 14:49:52 -0700
|
60766
|
+
Processing by PrivateController#show as HTML
|
60767
|
+
Rendering /Users/danrabinowitz/code/omniauth-rails/app/views/omniauth/rails/forbidden.html
|
60768
|
+
Rendered /Users/danrabinowitz/code/omniauth-rails/app/views/omniauth/rails/forbidden.html (0.3ms)
|
60769
|
+
Filter chain halted as #<Proc:0x007fa6bc47a878@/Users/danrabinowitz/code/omniauth-rails/app/controllers/omniauth/rails/authorization_concern.rb:13> rendered or redirected
|
60770
|
+
Completed 403 Forbidden in 13ms (Views: 12.9ms)
|
60771
|
+
Started GET "/private" for 127.0.0.1 at 2016-11-18 14:49:52 -0700
|
60772
|
+
Processing by PrivateController#show as HTML
|
60773
|
+
Rendering private/show.html.erb within layouts/application
|
60774
|
+
Rendered private/show.html.erb within layouts/application (0.2ms)
|
60775
|
+
Completed 200 OK in 5ms (Views: 3.6ms)
|
60776
|
+
Omniauth::Rails::Configurator: Loading from default_config_file=/Users/danrabinowitz/code/omniauth-rails/spec/test_app/config/omniauth_rails.yml
|
60777
|
+
Mounting Omniauth::Rails::Engine in Rails.application.routes
|
60778
|
+
Autoloading Omniauth::Rails::ControllersConcern into ActionController::Base
|
60779
|
+
Started GET "/public" for 127.0.0.1 at 2016-11-18 14:59:11 -0700
|
60780
|
+
Processing by PublicController#show as HTML
|
60781
|
+
Rendering public/show.html.erb within layouts/application
|
60782
|
+
Rendered public/show.html.erb within layouts/application (0.9ms)
|
60783
|
+
Completed 200 OK in 166ms (Views: 165.0ms)
|
60784
|
+
Processing by AnonymousController#fake_action as HTML
|
60785
|
+
Redirected to http://test.host/auth/sign_in
|
60786
|
+
Filter chain halted as #<Proc:0x007f83259a2a68@/Users/danrabinowitz/code/omniauth-rails/app/controllers/omniauth/rails/authorization_concern.rb:13> rendered or redirected
|
60787
|
+
Completed 302 Found in 2ms
|
60788
|
+
Processing by AnonymousController#fake_action as HTML
|
60789
|
+
Redirected to http://test.host/auth/sign_in
|
60790
|
+
Filter chain halted as #<Proc:0x007f832599aed0@/Users/danrabinowitz/code/omniauth-rails/app/controllers/omniauth/rails/authorization_concern.rb:13> rendered or redirected
|
60791
|
+
Completed 302 Found in 0ms
|
60792
|
+
Processing by PrivateController#show as HTML
|
60793
|
+
Rendering private/show.html.erb within layouts/application
|
60794
|
+
Rendered private/show.html.erb within layouts/application (0.1ms)
|
60795
|
+
Completed 200 OK in 6ms (Views: 3.9ms)
|
60796
|
+
Omniauth::Rails: dev_mode is enabled. Authentication and authorization are disabled.
|
60797
|
+
Started GET "/auth/google_oauth2/callback" for 127.0.0.1 at 2016-11-18 14:59:11 -0700
|
60798
|
+
Processing by Omniauth::Rails::SessionsController#create as HTML
|
60799
|
+
Parameters: {"provider"=>"google_oauth2"}
|
60800
|
+
Redirected to http://www.example.com/
|
60801
|
+
Completed 302 Found in 1ms
|
60802
|
+
Started GET "/auth/google_oauth2/callback" for 127.0.0.1 at 2016-11-18 14:59:11 -0700
|
60803
|
+
(google_oauth2) Authentication failure! csrf_detected encountered.
|
60804
|
+
Started GET "/auth/google_oauth2/callback" for 127.0.0.1 at 2016-11-18 14:59:11 -0700
|
60805
|
+
(google_oauth2) Authentication failure! invalid_credentials encountered.
|
60806
|
+
Started GET "/private" for 127.0.0.1 at 2016-11-18 14:59:11 -0700
|
60807
|
+
Processing by PrivateController#show as HTML
|
60808
|
+
Rendering private/show.html.erb within layouts/application
|
60809
|
+
Rendered private/show.html.erb within layouts/application (0.3ms)
|
60810
|
+
Completed 200 OK in 5ms (Views: 3.8ms)
|
60811
|
+
Started DELETE "/auth/sign_out" for 127.0.0.1 at 2016-11-18 14:59:11 -0700
|
60812
|
+
Processing by Omniauth::Rails::SessionsController#destroy as HTML
|
60813
|
+
Redirected to http://www.example.com/
|
60814
|
+
Completed 302 Found in 0ms
|
60815
|
+
Started GET "/private" for 127.0.0.1 at 2016-11-18 14:59:11 -0700
|
60816
|
+
Processing by PrivateController#show as HTML
|
60817
|
+
Redirected to http://www.example.com/auth/sign_in
|
60818
|
+
Filter chain halted as #<Proc:0x007f8325a7a3a0@/Users/danrabinowitz/code/omniauth-rails/app/controllers/omniauth/rails/authorization_concern.rb:13> rendered or redirected
|
60819
|
+
Completed 302 Found in 1ms
|
60820
|
+
Started DELETE "/auth/sign_out" for 127.0.0.1 at 2016-11-18 14:59:11 -0700
|
60821
|
+
Processing by Omniauth::Rails::SessionsController#destroy as HTML
|
60822
|
+
Rendering /Users/danrabinowitz/code/omniauth-rails/app/views/omniauth/rails/sessions/destroy.html.erb
|
60823
|
+
Rendered /Users/danrabinowitz/code/omniauth-rails/app/views/omniauth/rails/sessions/destroy.html.erb (0.5ms)
|
60824
|
+
Completed 200 OK in 2ms (Views: 2.2ms)
|
60825
|
+
Started GET "/auth/sign_in" for 127.0.0.1 at 2016-11-18 14:59:11 -0700
|
60826
|
+
Processing by Omniauth::Rails::SessionsController#new as HTML
|
60827
|
+
Redirected to http://www.example.com/auth/google_oauth2
|
60828
|
+
Completed 302 Found in 1ms
|
60829
|
+
Started GET "/auth/sign_in" for 127.0.0.1 at 2016-11-18 14:59:11 -0700
|
60830
|
+
Processing by Omniauth::Rails::SessionsController#new as HTML
|
60831
|
+
Redirected to http://www.example.com/
|
60832
|
+
Completed 302 Found in 0ms
|
60833
|
+
Started GET "/private" for 127.0.0.1 at 2016-11-18 14:59:11 -0700
|
60834
|
+
Processing by PrivateController#show as HTML
|
60835
|
+
Redirected to http://www.example.com/auth/sign_in
|
60836
|
+
Filter chain halted as #<Proc:0x007f8325a7a3a0@/Users/danrabinowitz/code/omniauth-rails/app/controllers/omniauth/rails/authorization_concern.rb:13> rendered or redirected
|
60837
|
+
Completed 302 Found in 1ms
|
60838
|
+
Started GET "/private" for 127.0.0.1 at 2016-11-18 14:59:11 -0700
|
60839
|
+
Processing by PrivateController#show as HTML
|
60840
|
+
Omniauth::Rails: dev_mode is enabled. Skipping 'require_authorization'
|
60841
|
+
Rendering private/show.html.erb within layouts/application
|
60842
|
+
Rendered private/show.html.erb within layouts/application (0.3ms)
|
60843
|
+
Completed 200 OK in 4ms (Views: 3.4ms)
|
60844
|
+
Started GET "/private" for 127.0.0.1 at 2016-11-18 14:59:11 -0700
|
60845
|
+
Processing by PrivateController#show as HTML
|
60846
|
+
Rendering /Users/danrabinowitz/code/omniauth-rails/app/views/omniauth/rails/forbidden.html
|
60847
|
+
Rendered /Users/danrabinowitz/code/omniauth-rails/app/views/omniauth/rails/forbidden.html (0.2ms)
|
60848
|
+
Filter chain halted as #<Proc:0x007f8325a7a3a0@/Users/danrabinowitz/code/omniauth-rails/app/controllers/omniauth/rails/authorization_concern.rb:13> rendered or redirected
|
60849
|
+
Completed 403 Forbidden in 13ms (Views: 12.4ms)
|
60850
|
+
Started GET "/private" for 127.0.0.1 at 2016-11-18 14:59:12 -0700
|
60851
|
+
Processing by PrivateController#show as HTML
|
60852
|
+
Rendering private/show.html.erb within layouts/application
|
60853
|
+
Rendered private/show.html.erb within layouts/application (0.3ms)
|
60854
|
+
Completed 200 OK in 5ms (Views: 4.3ms)
|
60855
|
+
Processing by AnonymousController#fake_action as HTML
|
60856
|
+
Redirected to http://test.host/auth/sign_in
|
60857
|
+
Filter chain halted as :require_authentication rendered or redirected
|
60858
|
+
Completed 302 Found in 0ms
|
60859
|
+
Processing by AnonymousController#fake_action as HTML
|
60860
|
+
Omniauth::Rails: dev_mode is enabled. Skipping 'require_authentication'
|
60861
|
+
Completed 200 OK in 0ms
|
60862
|
+
Omniauth::Rails::Configurator: Loading from default_config_file=/Users/danrabinowitz/code/omniauth-rails/spec/test_app/config/omniauth_rails.yml
|
60863
|
+
Mounting Omniauth::Rails::Engine in Rails.application.routes
|
60864
|
+
Autoloading Omniauth::Rails::ControllersConcern into ActionController::Base
|
60865
|
+
Processing by AnonymousController#fake_action as HTML
|
60866
|
+
Redirected to http://test.host/auth/sign_in
|
60867
|
+
Filter chain halted as #<Proc:0x007fae5a9999a8@/Users/danrabinowitz/code/omniauth-rails/app/controllers/omniauth/rails/authorization_concern.rb:13> rendered or redirected
|
60868
|
+
Completed 302 Found in 5ms
|
60869
|
+
Omniauth::Rails::Configurator: Loading from default_config_file=/Users/danrabinowitz/code/omniauth-rails/spec/test_app/config/omniauth_rails.yml
|
60870
|
+
Mounting Omniauth::Rails::Engine in Rails.application.routes
|
60871
|
+
Autoloading Omniauth::Rails::ControllersConcern into ActionController::Base
|
60872
|
+
Processing by AnonymousController#fake_action as HTML
|
60873
|
+
Redirected to http://test.host/auth/sign_in
|
60874
|
+
Filter chain halted as #<Proc:0x007fbd1b980f78@/Users/danrabinowitz/code/omniauth-rails/app/controllers/omniauth/rails/authorization_concern.rb:13> rendered or redirected
|
60875
|
+
Completed 302 Found in 5ms
|
60876
|
+
Omniauth::Rails::Configurator: Loading from default_config_file=/Users/danrabinowitz/code/omniauth-rails/spec/test_app/config/omniauth_rails.yml
|
60877
|
+
Mounting Omniauth::Rails::Engine in Rails.application.routes
|
60878
|
+
Autoloading Omniauth::Rails::ControllersConcern into ActionController::Base
|
60879
|
+
Processing by AnonymousController#fake_action as HTML
|
60880
|
+
Redirected to http://test.host/auth/sign_in
|
60881
|
+
Filter chain halted as #<Proc:0x007fee66191610@/Users/danrabinowitz/code/omniauth-rails/app/controllers/omniauth/rails/authorization_concern.rb:13> rendered or redirected
|
60882
|
+
Completed 302 Found in 5ms
|
60883
|
+
Omniauth::Rails::Configurator: Loading from default_config_file=/Users/danrabinowitz/code/omniauth-rails/spec/test_app/config/omniauth_rails.yml
|
60884
|
+
Mounting Omniauth::Rails::Engine in Rails.application.routes
|
60885
|
+
Autoloading Omniauth::Rails::ControllersConcern into ActionController::Base
|
60886
|
+
Processing by AnonymousController#fake_action as HTML
|
60887
|
+
Completed 500 Internal Server Error in 1ms
|
60888
|
+
Omniauth::Rails::Configurator: Loading from default_config_file=/Users/danrabinowitz/code/omniauth-rails/spec/test_app/config/omniauth_rails.yml
|
60889
|
+
Mounting Omniauth::Rails::Engine in Rails.application.routes
|
60890
|
+
Autoloading Omniauth::Rails::ControllersConcern into ActionController::Base
|
60891
|
+
Processing by AnonymousController#fake_action as HTML
|
60892
|
+
Completed 500 Internal Server Error in 259598ms
|
60893
|
+
Omniauth::Rails::Configurator: Loading from default_config_file=/Users/danrabinowitz/code/omniauth-rails/spec/test_app/config/omniauth_rails.yml
|
60894
|
+
Mounting Omniauth::Rails::Engine in Rails.application.routes
|
60895
|
+
Autoloading Omniauth::Rails::ControllersConcern into ActionController::Base
|
60896
|
+
Processing by AnonymousController#fake_action as HTML
|
60897
|
+
Completed 500 Internal Server Error in 17109ms
|
60898
|
+
Omniauth::Rails::Configurator: Loading from default_config_file=/Users/danrabinowitz/code/omniauth-rails/spec/test_app/config/omniauth_rails.yml
|
60899
|
+
Mounting Omniauth::Rails::Engine in Rails.application.routes
|
60900
|
+
Autoloading Omniauth::Rails::ControllersConcern into ActionController::Base
|
60901
|
+
Processing by AnonymousController#fake_action as HTML
|
60902
|
+
Completed 500 Internal Server Error in 39400ms
|
60903
|
+
Omniauth::Rails::Configurator: Loading from default_config_file=/Users/danrabinowitz/code/omniauth-rails/spec/test_app/config/omniauth_rails.yml
|
60904
|
+
Mounting Omniauth::Rails::Engine in Rails.application.routes
|
60905
|
+
Autoloading Omniauth::Rails::ControllersConcern into ActionController::Base
|
60906
|
+
Processing by AnonymousController#fake_action as HTML
|
60907
|
+
Completed 500 Internal Server Error in 13086ms
|
60908
|
+
Omniauth::Rails::Configurator: Loading from default_config_file=/Users/danrabinowitz/code/omniauth-rails/spec/test_app/config/omniauth_rails.yml
|
60909
|
+
Mounting Omniauth::Rails::Engine in Rails.application.routes
|
60910
|
+
Autoloading Omniauth::Rails::ControllersConcern into ActionController::Base
|
60911
|
+
Omniauth::Rails::Configurator: Loading from default_config_file=/Users/danrabinowitz/code/omniauth-rails/spec/test_app/config/omniauth_rails.yml
|
60912
|
+
Mounting Omniauth::Rails::Engine in Rails.application.routes
|
60913
|
+
Autoloading Omniauth::Rails::ControllersConcern into ActionController::Base
|
60914
|
+
Processing by AnonymousController#fake_action as HTML
|
60915
|
+
Completed 500 Internal Server Error in 27484ms
|
60916
|
+
Omniauth::Rails::Configurator: Loading from default_config_file=/Users/danrabinowitz/code/omniauth-rails/spec/test_app/config/omniauth_rails.yml
|
60917
|
+
Mounting Omniauth::Rails::Engine in Rails.application.routes
|
60918
|
+
Autoloading Omniauth::Rails::ControllersConcern into ActionController::Base
|
60919
|
+
Processing by AnonymousController#fake_action as HTML
|
60920
|
+
Completed 500 Internal Server Error in 115858ms
|
60921
|
+
Omniauth::Rails::Configurator: Loading from default_config_file=/Users/danrabinowitz/code/omniauth-rails/spec/test_app/config/omniauth_rails.yml
|
60922
|
+
Mounting Omniauth::Rails::Engine in Rails.application.routes
|
60923
|
+
Autoloading Omniauth::Rails::ControllersConcern into ActionController::Base
|
60924
|
+
Processing by AnonymousController#fake_action as HTML
|
60925
|
+
Completed 500 Internal Server Error in 128833ms
|
60926
|
+
Omniauth::Rails::Configurator: Loading from default_config_file=/Users/danrabinowitz/code/omniauth-rails/spec/test_app/config/omniauth_rails.yml
|
60927
|
+
Mounting Omniauth::Rails::Engine in Rails.application.routes
|
60928
|
+
Autoloading Omniauth::Rails::ControllersConcern into ActionController::Base
|
60929
|
+
Processing by AnonymousController#fake_action as HTML
|
60930
|
+
Completed 500 Internal Server Error in 70638ms
|
60931
|
+
Omniauth::Rails::Configurator: Loading from default_config_file=/Users/danrabinowitz/code/omniauth-rails/spec/test_app/config/omniauth_rails.yml
|
60932
|
+
Mounting Omniauth::Rails::Engine in Rails.application.routes
|
60933
|
+
Autoloading Omniauth::Rails::ControllersConcern into ActionController::Base
|
60934
|
+
Processing by AnonymousController#fake_action as HTML
|
60935
|
+
Completed 500 Internal Server Error in 21343ms
|
60936
|
+
Omniauth::Rails::Configurator: Loading from default_config_file=/Users/danrabinowitz/code/omniauth-rails/spec/test_app/config/omniauth_rails.yml
|
60937
|
+
Mounting Omniauth::Rails::Engine in Rails.application.routes
|
60938
|
+
Autoloading Omniauth::Rails::ControllersConcern into ActionController::Base
|
60939
|
+
Processing by AnonymousController#fake_action as HTML
|
60940
|
+
Completed 500 Internal Server Error in 103124ms
|
60941
|
+
Omniauth::Rails::Configurator: Loading from default_config_file=/Users/danrabinowitz/code/omniauth-rails/spec/test_app/config/omniauth_rails.yml
|
60942
|
+
Mounting Omniauth::Rails::Engine in Rails.application.routes
|
60943
|
+
Autoloading Omniauth::Rails::ControllersConcern into ActionController::Base
|
60944
|
+
Processing by AnonymousController#fake_action as HTML
|
60945
|
+
Completed 200 OK in 1ms
|
60946
|
+
Processing by AnonymousController#fake_action as HTML
|
60947
|
+
Completed 500 Internal Server Error in 0ms
|
60948
|
+
Omniauth::Rails::Configurator: Loading from default_config_file=/Users/danrabinowitz/code/omniauth-rails/spec/test_app/config/omniauth_rails.yml
|
60949
|
+
Mounting Omniauth::Rails::Engine in Rails.application.routes
|
60950
|
+
Autoloading Omniauth::Rails::ControllersConcern into ActionController::Base
|
60951
|
+
Omniauth::Rails: dev_mode is enabled. Authentication and authorization are disabled.
|
60952
|
+
Processing by AnonymousController#fake_action as HTML
|
60953
|
+
Redirected to http://test.host/auth/sign_in
|
60954
|
+
Filter chain halted as :require_authentication rendered or redirected
|
60955
|
+
Completed 302 Found in 4ms
|
60956
|
+
Processing by AnonymousController#fake_action as HTML
|
60957
|
+
Omniauth::Rails: dev_mode is enabled. Skipping 'require_authentication'
|
60958
|
+
Completed 200 OK in 0ms
|
60959
|
+
Processing by PrivateController#show as HTML
|
60960
|
+
Rendering private/show.html.erb within layouts/application
|
60961
|
+
Rendered private/show.html.erb within layouts/application (0.2ms)
|
60962
|
+
Completed 200 OK in 8ms (Views: 5.3ms)
|
60963
|
+
Started GET "/private" for 127.0.0.1 at 2016-11-18 15:24:02 -0700
|
60964
|
+
Processing by PrivateController#show as HTML
|
60965
|
+
Redirected to http://www.example.com/auth/sign_in
|
60966
|
+
Filter chain halted as #<Proc:0x007fbdfb83f3b8@/Users/danrabinowitz/code/omniauth-rails/app/controllers/omniauth/rails/authorization_concern.rb:13> rendered or redirected
|
60967
|
+
Completed 302 Found in 9ms
|
60968
|
+
Started GET "/private" for 127.0.0.1 at 2016-11-18 15:24:02 -0700
|
60969
|
+
Processing by PrivateController#show as HTML
|
60970
|
+
Omniauth::Rails: dev_mode is enabled. Skipping 'require_authorization'
|
60971
|
+
Rendering private/show.html.erb within layouts/application
|
60972
|
+
Rendered private/show.html.erb within layouts/application (1.4ms)
|
60973
|
+
Completed 200 OK in 169ms (Views: 168.3ms)
|
60974
|
+
Started GET "/private" for 127.0.0.1 at 2016-11-18 15:24:02 -0700
|
60975
|
+
Processing by PrivateController#show as HTML
|
60976
|
+
Rendering /Users/danrabinowitz/code/omniauth-rails/app/views/omniauth/rails/forbidden.html
|
60977
|
+
Rendered /Users/danrabinowitz/code/omniauth-rails/app/views/omniauth/rails/forbidden.html (0.3ms)
|
60978
|
+
Filter chain halted as #<Proc:0x007fbdfb83f3b8@/Users/danrabinowitz/code/omniauth-rails/app/controllers/omniauth/rails/authorization_concern.rb:13> rendered or redirected
|
60979
|
+
Completed 403 Forbidden in 15ms (Views: 15.1ms)
|
60980
|
+
Started GET "/private" for 127.0.0.1 at 2016-11-18 15:24:02 -0700
|
60981
|
+
Processing by PrivateController#show as HTML
|
60982
|
+
Rendering private/show.html.erb within layouts/application
|
60983
|
+
Rendered private/show.html.erb within layouts/application (0.3ms)
|
60984
|
+
Completed 200 OK in 7ms (Views: 5.2ms)
|
60985
|
+
Processing by AnonymousController#fake_action as HTML
|
60986
|
+
Completed 200 OK in 0ms
|
60987
|
+
Processing by AnonymousController#fake_action as HTML
|
60988
|
+
Completed 500 Internal Server Error in 0ms
|
60989
|
+
Started GET "/public" for 127.0.0.1 at 2016-11-18 15:24:02 -0700
|
60990
|
+
Processing by PublicController#show as HTML
|
60991
|
+
Rendering public/show.html.erb within layouts/application
|
60992
|
+
Rendered public/show.html.erb within layouts/application (0.3ms)
|
60993
|
+
Completed 200 OK in 5ms (Views: 4.0ms)
|
60994
|
+
Started GET "/private" for 127.0.0.1 at 2016-11-18 15:24:02 -0700
|
60995
|
+
Processing by PrivateController#show as HTML
|
60996
|
+
Rendering private/show.html.erb within layouts/application
|
60997
|
+
Rendered private/show.html.erb within layouts/application (0.3ms)
|
60998
|
+
Completed 200 OK in 5ms (Views: 4.2ms)
|
60999
|
+
Started DELETE "/auth/sign_out" for 127.0.0.1 at 2016-11-18 15:24:02 -0700
|
61000
|
+
Processing by Omniauth::Rails::SessionsController#destroy as HTML
|
61001
|
+
Redirected to http://www.example.com/
|
61002
|
+
Completed 302 Found in 0ms
|
61003
|
+
Started GET "/private" for 127.0.0.1 at 2016-11-18 15:24:02 -0700
|
61004
|
+
Processing by PrivateController#show as HTML
|
61005
|
+
Redirected to http://www.example.com/auth/sign_in
|
61006
|
+
Filter chain halted as #<Proc:0x007fbdfb83f3b8@/Users/danrabinowitz/code/omniauth-rails/app/controllers/omniauth/rails/authorization_concern.rb:13> rendered or redirected
|
61007
|
+
Completed 302 Found in 1ms
|
61008
|
+
Started DELETE "/auth/sign_out" for 127.0.0.1 at 2016-11-18 15:24:02 -0700
|
61009
|
+
Processing by Omniauth::Rails::SessionsController#destroy as HTML
|
61010
|
+
Rendering /Users/danrabinowitz/code/omniauth-rails/app/views/omniauth/rails/sessions/destroy.html.erb
|
61011
|
+
Rendered /Users/danrabinowitz/code/omniauth-rails/app/views/omniauth/rails/sessions/destroy.html.erb (0.6ms)
|
61012
|
+
Completed 200 OK in 2ms (Views: 2.3ms)
|
61013
|
+
Started GET "/auth/sign_in" for 127.0.0.1 at 2016-11-18 15:24:02 -0700
|
61014
|
+
Processing by Omniauth::Rails::SessionsController#new as HTML
|
61015
|
+
Redirected to http://www.example.com/auth/google_oauth2
|
61016
|
+
Completed 302 Found in 1ms
|
61017
|
+
Started GET "/auth/sign_in" for 127.0.0.1 at 2016-11-18 15:24:02 -0700
|
61018
|
+
Processing by Omniauth::Rails::SessionsController#new as HTML
|
61019
|
+
Redirected to http://www.example.com/
|
61020
|
+
Completed 302 Found in 0ms
|
61021
|
+
Started GET "/auth/google_oauth2/callback" for 127.0.0.1 at 2016-11-18 15:24:02 -0700
|
61022
|
+
(google_oauth2) Authentication failure! csrf_detected encountered.
|
61023
|
+
Started GET "/auth/google_oauth2/callback" for 127.0.0.1 at 2016-11-18 15:24:02 -0700
|
61024
|
+
Processing by Omniauth::Rails::SessionsController#create as HTML
|
61025
|
+
Parameters: {"provider"=>"google_oauth2"}
|
61026
|
+
Redirected to http://www.example.com/
|
61027
|
+
Completed 302 Found in 1ms
|
61028
|
+
Started GET "/auth/google_oauth2/callback" for 127.0.0.1 at 2016-11-18 15:24:02 -0700
|
61029
|
+
(google_oauth2) Authentication failure! invalid_credentials encountered.
|
61030
|
+
Omniauth::Rails::Configurator: Loading from default_config_file=/Users/danrabinowitz/code/omniauth-rails/spec/test_app/config/omniauth_rails.yml
|
61031
|
+
Mounting Omniauth::Rails::Engine in Rails.application.routes
|
61032
|
+
Autoloading Omniauth::Rails::ControllersConcern into ActionController::Base
|
61033
|
+
Processing by AnonymousController#fake_action as HTML
|
61034
|
+
Redirected to http://test.host/auth/sign_in
|
61035
|
+
Filter chain halted as :require_authentication rendered or redirected
|
61036
|
+
Completed 302 Found in 5ms
|
61037
|
+
Processing by AnonymousController#fake_action as HTML
|
61038
|
+
Omniauth::Rails: dev_mode is enabled. Skipping 'require_authentication'
|
61039
|
+
Completed 200 OK in 0ms
|
61040
|
+
Started GET "/public" for 127.0.0.1 at 2016-11-18 15:25:04 -0700
|
61041
|
+
Processing by PublicController#show as HTML
|
61042
|
+
Rendering public/show.html.erb within layouts/application
|
61043
|
+
Rendered public/show.html.erb within layouts/application (1.2ms)
|
61044
|
+
Completed 200 OK in 173ms (Views: 172.1ms)
|
61045
|
+
Processing by AnonymousController#fake_action as HTML
|
61046
|
+
Completed 500 Internal Server Error in 0ms
|
61047
|
+
Processing by AnonymousController#fake_action as HTML
|
61048
|
+
Completed 200 OK in 1ms
|
61049
|
+
Processing by PrivateController#show as HTML
|
61050
|
+
Rendering private/show.html.erb within layouts/application
|
61051
|
+
Rendered private/show.html.erb within layouts/application (0.3ms)
|
61052
|
+
Completed 200 OK in 8ms (Views: 4.7ms)
|
61053
|
+
Started GET "/private" for 127.0.0.1 at 2016-11-18 15:25:04 -0700
|
61054
|
+
Processing by PrivateController#show as HTML
|
61055
|
+
Redirected to http://www.example.com/auth/sign_in
|
61056
|
+
Filter chain halted as #<Proc:0x007fce1d8b20c0@/Users/danrabinowitz/code/omniauth-rails/app/controllers/omniauth/rails/authorization_concern.rb:13> rendered or redirected
|
61057
|
+
Completed 302 Found in 1ms
|
61058
|
+
Started GET "/private" for 127.0.0.1 at 2016-11-18 15:25:04 -0700
|
61059
|
+
Processing by PrivateController#show as HTML
|
61060
|
+
Omniauth::Rails: dev_mode is enabled. Skipping 'require_authorization'
|
61061
|
+
Rendering private/show.html.erb within layouts/application
|
61062
|
+
Rendered private/show.html.erb within layouts/application (0.3ms)
|
61063
|
+
Completed 200 OK in 5ms (Views: 4.0ms)
|
61064
|
+
Started GET "/private" for 127.0.0.1 at 2016-11-18 15:25:04 -0700
|
61065
|
+
Processing by PrivateController#show as HTML
|
61066
|
+
Rendering private/show.html.erb within layouts/application
|
61067
|
+
Rendered private/show.html.erb within layouts/application (0.3ms)
|
61068
|
+
Completed 200 OK in 5ms (Views: 3.9ms)
|
61069
|
+
Started GET "/private" for 127.0.0.1 at 2016-11-18 15:25:04 -0700
|
61070
|
+
Processing by PrivateController#show as HTML
|
61071
|
+
Rendering /Users/danrabinowitz/code/omniauth-rails/app/views/omniauth/rails/forbidden.html
|
61072
|
+
Rendered /Users/danrabinowitz/code/omniauth-rails/app/views/omniauth/rails/forbidden.html (0.3ms)
|
61073
|
+
Filter chain halted as #<Proc:0x007fce1d8b20c0@/Users/danrabinowitz/code/omniauth-rails/app/controllers/omniauth/rails/authorization_concern.rb:13> rendered or redirected
|
61074
|
+
Completed 403 Forbidden in 16ms (Views: 16.0ms)
|
61075
|
+
Omniauth::Rails: dev_mode is enabled. Authentication and authorization are disabled.
|
61076
|
+
Started GET "/auth/sign_in" for 127.0.0.1 at 2016-11-18 15:25:04 -0700
|
61077
|
+
Processing by Omniauth::Rails::SessionsController#new as HTML
|
61078
|
+
Redirected to http://www.example.com/auth/google_oauth2
|
61079
|
+
Completed 302 Found in 1ms
|
61080
|
+
Started GET "/auth/sign_in" for 127.0.0.1 at 2016-11-18 15:25:04 -0700
|
61081
|
+
Processing by Omniauth::Rails::SessionsController#new as HTML
|
61082
|
+
Redirected to http://www.example.com/
|
61083
|
+
Completed 302 Found in 0ms
|
61084
|
+
Started GET "/auth/google_oauth2/callback" for 127.0.0.1 at 2016-11-18 15:25:04 -0700
|
61085
|
+
(google_oauth2) Authentication failure! csrf_detected encountered.
|
61086
|
+
Started GET "/auth/google_oauth2/callback" for 127.0.0.1 at 2016-11-18 15:25:04 -0700
|
61087
|
+
(google_oauth2) Authentication failure! invalid_credentials encountered.
|
61088
|
+
Started GET "/auth/google_oauth2/callback" for 127.0.0.1 at 2016-11-18 15:25:04 -0700
|
61089
|
+
Processing by Omniauth::Rails::SessionsController#create as HTML
|
61090
|
+
Parameters: {"provider"=>"google_oauth2"}
|
61091
|
+
Redirected to http://www.example.com/
|
61092
|
+
Completed 302 Found in 1ms
|
61093
|
+
Started GET "/private" for 127.0.0.1 at 2016-11-18 15:25:04 -0700
|
61094
|
+
Processing by PrivateController#show as HTML
|
61095
|
+
Rendering private/show.html.erb within layouts/application
|
61096
|
+
Rendered private/show.html.erb within layouts/application (0.3ms)
|
61097
|
+
Completed 200 OK in 5ms (Views: 3.9ms)
|
61098
|
+
Started DELETE "/auth/sign_out" for 127.0.0.1 at 2016-11-18 15:25:04 -0700
|
61099
|
+
Processing by Omniauth::Rails::SessionsController#destroy as HTML
|
61100
|
+
Redirected to http://www.example.com/
|
61101
|
+
Completed 302 Found in 0ms
|
61102
|
+
Started GET "/private" for 127.0.0.1 at 2016-11-18 15:25:04 -0700
|
61103
|
+
Processing by PrivateController#show as HTML
|
61104
|
+
Redirected to http://www.example.com/auth/sign_in
|
61105
|
+
Filter chain halted as #<Proc:0x007fce1d8b20c0@/Users/danrabinowitz/code/omniauth-rails/app/controllers/omniauth/rails/authorization_concern.rb:13> rendered or redirected
|
61106
|
+
Completed 302 Found in 1ms
|
61107
|
+
Started DELETE "/auth/sign_out" for 127.0.0.1 at 2016-11-18 15:25:04 -0700
|
61108
|
+
Processing by Omniauth::Rails::SessionsController#destroy as HTML
|
61109
|
+
Rendering /Users/danrabinowitz/code/omniauth-rails/app/views/omniauth/rails/sessions/destroy.html.erb
|
61110
|
+
Rendered /Users/danrabinowitz/code/omniauth-rails/app/views/omniauth/rails/sessions/destroy.html.erb (0.7ms)
|
61111
|
+
Completed 200 OK in 3ms (Views: 2.7ms)
|
61112
|
+
Omniauth::Rails::Configurator: Loading from default_config_file=/Users/danrabinowitz/code/omniauth-rails/spec/test_app/config/omniauth_rails.yml
|
61113
|
+
Mounting Omniauth::Rails::Engine in Rails.application.routes
|
61114
|
+
Autoloading Omniauth::Rails::ControllersConcern into ActionController::Base
|
61115
|
+
Started GET "/public" for 127.0.0.1 at 2016-11-18 15:36:37 -0700
|
61116
|
+
Processing by PublicController#show as HTML
|
61117
|
+
Rendering public/show.html.erb within layouts/application
|
61118
|
+
Rendered public/show.html.erb within layouts/application (1.2ms)
|
61119
|
+
Completed 200 OK in 174ms (Views: 173.1ms)
|
61120
|
+
Processing by PrivateController#show as HTML
|
61121
|
+
Rendering private/show.html.erb within layouts/application
|
61122
|
+
Rendered private/show.html.erb within layouts/application (0.2ms)
|
61123
|
+
Completed 200 OK in 9ms (Views: 4.9ms)
|
61124
|
+
Processing by AnonymousController#fake_action as HTML
|
61125
|
+
Completed 500 Internal Server Error in 0ms
|
61126
|
+
Processing by AnonymousController#fake_action as HTML
|
61127
|
+
Completed 500 Internal Server Error in 0ms
|
61128
|
+
Processing by AnonymousController#fake_action as HTML
|
61129
|
+
Redirected to http://test.host/auth/sign_in
|
61130
|
+
Filter chain halted as :require_authentication rendered or redirected
|
61131
|
+
Completed 302 Found in 2ms
|
61132
|
+
Processing by AnonymousController#fake_action as HTML
|
61133
|
+
Omniauth::Rails: dev_mode is enabled. Skipping 'require_authentication'
|
61134
|
+
Completed 200 OK in 0ms
|
61135
|
+
Started GET "/private" for 127.0.0.1 at 2016-11-18 15:36:38 -0700
|
61136
|
+
Processing by PrivateController#show as HTML
|
61137
|
+
Redirected to http://www.example.com/auth/sign_in
|
61138
|
+
Filter chain halted as #<Proc:0x007ff072cb25b8@/Users/danrabinowitz/code/omniauth-rails/app/controllers/omniauth/rails/authorization_concern.rb:13> rendered or redirected
|
61139
|
+
Completed 302 Found in 1ms
|
61140
|
+
Started GET "/private" for 127.0.0.1 at 2016-11-18 15:36:38 -0700
|
61141
|
+
Processing by PrivateController#show as HTML
|
61142
|
+
Omniauth::Rails: dev_mode is enabled. Skipping 'require_authorization'
|
61143
|
+
Rendering private/show.html.erb within layouts/application
|
61144
|
+
Rendered private/show.html.erb within layouts/application (0.4ms)
|
61145
|
+
Completed 200 OK in 5ms (Views: 3.8ms)
|
61146
|
+
Started GET "/private" for 127.0.0.1 at 2016-11-18 15:36:38 -0700
|
61147
|
+
Processing by PrivateController#show as HTML
|
61148
|
+
Rendering /Users/danrabinowitz/code/omniauth-rails/app/views/omniauth/rails/forbidden.html
|
61149
|
+
Rendered /Users/danrabinowitz/code/omniauth-rails/app/views/omniauth/rails/forbidden.html (0.3ms)
|
61150
|
+
Filter chain halted as #<Proc:0x007ff072cb25b8@/Users/danrabinowitz/code/omniauth-rails/app/controllers/omniauth/rails/authorization_concern.rb:13> rendered or redirected
|
61151
|
+
Completed 403 Forbidden in 14ms (Views: 13.5ms)
|
61152
|
+
Started GET "/private" for 127.0.0.1 at 2016-11-18 15:36:38 -0700
|
61153
|
+
Processing by PrivateController#show as HTML
|
61154
|
+
Rendering private/show.html.erb within layouts/application
|
61155
|
+
Rendered private/show.html.erb within layouts/application (0.3ms)
|
61156
|
+
Completed 200 OK in 6ms (Views: 4.4ms)
|
61157
|
+
Started GET "/auth/google_oauth2/callback" for 127.0.0.1 at 2016-11-18 15:36:38 -0700
|
61158
|
+
(google_oauth2) Authentication failure! csrf_detected encountered.
|
61159
|
+
Started GET "/auth/google_oauth2/callback" for 127.0.0.1 at 2016-11-18 15:36:38 -0700
|
61160
|
+
(google_oauth2) Authentication failure! invalid_credentials encountered.
|
61161
|
+
Started GET "/auth/google_oauth2/callback" for 127.0.0.1 at 2016-11-18 15:36:38 -0700
|
61162
|
+
Processing by Omniauth::Rails::SessionsController#create as HTML
|
61163
|
+
Parameters: {"provider"=>"google_oauth2"}
|
61164
|
+
Redirected to http://www.example.com/private
|
61165
|
+
Completed 302 Found in 1ms
|
61166
|
+
Started GET "/auth/sign_in" for 127.0.0.1 at 2016-11-18 15:36:38 -0700
|
61167
|
+
Processing by Omniauth::Rails::SessionsController#new as HTML
|
61168
|
+
Redirected to http://www.example.com/auth/google_oauth2
|
61169
|
+
Completed 302 Found in 1ms
|
61170
|
+
Started GET "/auth/sign_in" for 127.0.0.1 at 2016-11-18 15:36:38 -0700
|
61171
|
+
Processing by Omniauth::Rails::SessionsController#new as HTML
|
61172
|
+
Redirected to http://www.example.com/private
|
61173
|
+
Completed 302 Found in 0ms
|
61174
|
+
Started GET "/private" for 127.0.0.1 at 2016-11-18 15:36:38 -0700
|
61175
|
+
Processing by PrivateController#show as HTML
|
61176
|
+
Rendering private/show.html.erb within layouts/application
|
61177
|
+
Rendered private/show.html.erb within layouts/application (0.3ms)
|
61178
|
+
Completed 200 OK in 5ms (Views: 4.0ms)
|
61179
|
+
Started DELETE "/auth/sign_out" for 127.0.0.1 at 2016-11-18 15:36:38 -0700
|
61180
|
+
Processing by Omniauth::Rails::SessionsController#destroy as HTML
|
61181
|
+
Redirected to http://www.example.com/public
|
61182
|
+
Completed 302 Found in 0ms
|
61183
|
+
Started GET "/private" for 127.0.0.1 at 2016-11-18 15:36:38 -0700
|
61184
|
+
Processing by PrivateController#show as HTML
|
61185
|
+
Redirected to http://www.example.com/auth/sign_in
|
61186
|
+
Filter chain halted as #<Proc:0x007ff072cb25b8@/Users/danrabinowitz/code/omniauth-rails/app/controllers/omniauth/rails/authorization_concern.rb:13> rendered or redirected
|
61187
|
+
Completed 302 Found in 1ms
|
61188
|
+
Started DELETE "/auth/sign_out" for 127.0.0.1 at 2016-11-18 15:36:38 -0700
|
61189
|
+
Processing by Omniauth::Rails::SessionsController#destroy as HTML
|
61190
|
+
Rendering /Users/danrabinowitz/code/omniauth-rails/app/views/omniauth/rails/sessions/destroy.html.erb
|
61191
|
+
Rendered /Users/danrabinowitz/code/omniauth-rails/app/views/omniauth/rails/sessions/destroy.html.erb (0.6ms)
|
61192
|
+
Completed 200 OK in 3ms (Views: 2.7ms)
|
61193
|
+
Omniauth::Rails: dev_mode is enabled. Authentication and authorization are disabled.
|
61194
|
+
Omniauth::Rails::Configurator: Loading from default_config_file=/Users/danrabinowitz/code/omniauth-rails/spec/test_app/config/omniauth_rails.yml
|
61195
|
+
Mounting Omniauth::Rails::Engine in Rails.application.routes
|
61196
|
+
Autoloading Omniauth::Rails::ControllersConcern into ActionController::Base
|
61197
|
+
Processing by AnonymousController#fake_action as HTML
|
61198
|
+
Completed 200 OK in 0ms
|
61199
|
+
Omniauth::Rails::Configurator: Loading from default_config_file=/Users/danrabinowitz/code/omniauth-rails/spec/test_app/config/omniauth_rails.yml
|
61200
|
+
Mounting Omniauth::Rails::Engine in Rails.application.routes
|
61201
|
+
Autoloading Omniauth::Rails::ControllersConcern into ActionController::Base
|
61202
|
+
Started GET "/private" for 127.0.0.1 at 2016-11-18 15:38:35 -0700
|
61203
|
+
Processing by PrivateController#show as HTML
|
61204
|
+
Redirected to http://www.example.com/auth/sign_in
|
61205
|
+
Filter chain halted as #<Proc:0x007fe22dd8a128@/Users/danrabinowitz/code/omniauth-rails/app/controllers/omniauth/rails/authorization_concern.rb:13> rendered or redirected
|
61206
|
+
Completed 302 Found in 14ms
|
61207
|
+
Started GET "/private" for 127.0.0.1 at 2016-11-18 15:38:35 -0700
|
61208
|
+
Processing by PrivateController#show as HTML
|
61209
|
+
Omniauth::Rails: dev_mode is enabled. Skipping 'require_authorization'
|
61210
|
+
Rendering private/show.html.erb within layouts/application
|
61211
|
+
Rendered private/show.html.erb within layouts/application (1.2ms)
|
61212
|
+
Completed 200 OK in 167ms (Views: 165.3ms)
|
61213
|
+
Started GET "/private" for 127.0.0.1 at 2016-11-18 15:38:35 -0700
|
61214
|
+
Processing by PrivateController#show as HTML
|
61215
|
+
Rendering private/show.html.erb within layouts/application
|
61216
|
+
Rendered private/show.html.erb within layouts/application (0.3ms)
|
61217
|
+
Completed 200 OK in 9ms (Views: 5.3ms)
|
61218
|
+
Started GET "/private" for 127.0.0.1 at 2016-11-18 15:38:35 -0700
|
61219
|
+
Processing by PrivateController#show as HTML
|
61220
|
+
Rendering /Users/danrabinowitz/code/omniauth-rails/app/views/omniauth/rails/forbidden.html
|
61221
|
+
Rendered /Users/danrabinowitz/code/omniauth-rails/app/views/omniauth/rails/forbidden.html (0.3ms)
|
61222
|
+
Filter chain halted as #<Proc:0x007fe22dd8a128@/Users/danrabinowitz/code/omniauth-rails/app/controllers/omniauth/rails/authorization_concern.rb:13> rendered or redirected
|
61223
|
+
Completed 403 Forbidden in 17ms (Views: 16.7ms)
|
61224
|
+
Omniauth::Rails: dev_mode is enabled. Authentication and authorization are disabled.
|
61225
|
+
Processing by AnonymousController#fake_action as HTML
|
61226
|
+
Redirected to http://test.host/auth/sign_in
|
61227
|
+
Filter chain halted as :require_authentication rendered or redirected
|
61228
|
+
Completed 302 Found in 1ms
|
61229
|
+
Processing by AnonymousController#fake_action as HTML
|
61230
|
+
Omniauth::Rails: dev_mode is enabled. Skipping 'require_authentication'
|
61231
|
+
Completed 200 OK in 0ms
|
61232
|
+
Started GET "/public" for 127.0.0.1 at 2016-11-18 15:38:35 -0700
|
61233
|
+
Processing by PublicController#show as HTML
|
61234
|
+
Rendering public/show.html.erb within layouts/application
|
61235
|
+
Rendered public/show.html.erb within layouts/application (0.3ms)
|
61236
|
+
Completed 200 OK in 6ms (Views: 4.2ms)
|
61237
|
+
Started GET "/private" for 127.0.0.1 at 2016-11-18 15:38:35 -0700
|
61238
|
+
Processing by PrivateController#show as HTML
|
61239
|
+
Rendering private/show.html.erb within layouts/application
|
61240
|
+
Rendered private/show.html.erb within layouts/application (0.3ms)
|
61241
|
+
Completed 200 OK in 5ms (Views: 4.0ms)
|
61242
|
+
Started DELETE "/auth/sign_out" for 127.0.0.1 at 2016-11-18 15:38:35 -0700
|
61243
|
+
Processing by Omniauth::Rails::SessionsController#destroy as HTML
|
61244
|
+
Redirected to http://www.example.com/
|
61245
|
+
Completed 302 Found in 0ms
|
61246
|
+
Started GET "/private" for 127.0.0.1 at 2016-11-18 15:38:35 -0700
|
61247
|
+
Processing by PrivateController#show as HTML
|
61248
|
+
Redirected to http://www.example.com/auth/sign_in
|
61249
|
+
Filter chain halted as #<Proc:0x007fe22dd8a128@/Users/danrabinowitz/code/omniauth-rails/app/controllers/omniauth/rails/authorization_concern.rb:13> rendered or redirected
|
61250
|
+
Completed 302 Found in 1ms
|
61251
|
+
Started DELETE "/auth/sign_out" for 127.0.0.1 at 2016-11-18 15:38:35 -0700
|
61252
|
+
Processing by Omniauth::Rails::SessionsController#destroy as HTML
|
61253
|
+
Rendering /Users/danrabinowitz/code/omniauth-rails/app/views/omniauth/rails/sessions/destroy.html.erb
|
61254
|
+
Rendered /Users/danrabinowitz/code/omniauth-rails/app/views/omniauth/rails/sessions/destroy.html.erb (0.7ms)
|
61255
|
+
Completed 200 OK in 4ms (Views: 3.5ms)
|
61256
|
+
Started GET "/auth/google_oauth2/callback" for 127.0.0.1 at 2016-11-18 15:38:35 -0700
|
61257
|
+
(google_oauth2) Authentication failure! csrf_detected encountered.
|
61258
|
+
Started GET "/auth/google_oauth2/callback" for 127.0.0.1 at 2016-11-18 15:38:35 -0700
|
61259
|
+
Processing by Omniauth::Rails::SessionsController#create as HTML
|
61260
|
+
Parameters: {"provider"=>"google_oauth2"}
|
61261
|
+
Redirected to http://www.example.com/
|
61262
|
+
Completed 302 Found in 1ms
|
61263
|
+
Started GET "/auth/google_oauth2/callback" for 127.0.0.1 at 2016-11-18 15:38:35 -0700
|
61264
|
+
(google_oauth2) Authentication failure! invalid_credentials encountered.
|
61265
|
+
Started GET "/auth/sign_in" for 127.0.0.1 at 2016-11-18 15:38:35 -0700
|
61266
|
+
Processing by Omniauth::Rails::SessionsController#new as HTML
|
61267
|
+
Redirected to http://www.example.com/auth/google_oauth2
|
61268
|
+
Completed 302 Found in 1ms
|
61269
|
+
Started GET "/auth/sign_in" for 127.0.0.1 at 2016-11-18 15:38:35 -0700
|
61270
|
+
Processing by Omniauth::Rails::SessionsController#new as HTML
|
61271
|
+
Redirected to http://www.example.com/
|
61272
|
+
Completed 302 Found in 0ms
|
61273
|
+
Processing by AnonymousController#fake_action as HTML
|
61274
|
+
Completed 200 OK in 0ms
|
61275
|
+
Processing by AnonymousController#fake_action as HTML
|
61276
|
+
Completed 500 Internal Server Error in 0ms
|
61277
|
+
Processing by PrivateController#show as HTML
|
61278
|
+
Rendering private/show.html.erb within layouts/application
|
61279
|
+
Rendered private/show.html.erb within layouts/application (0.2ms)
|
61280
|
+
Completed 200 OK in 6ms (Views: 3.9ms)
|
61281
|
+
Omniauth::Rails::Configurator: Loading from default_config_file=/Users/danrabinowitz/code/omniauth-rails/spec/test_app/config/omniauth_rails.yml
|
61282
|
+
Mounting Omniauth::Rails::Engine in Rails.application.routes
|
61283
|
+
Autoloading Omniauth::Rails::ControllersConcern into ActionController::Base
|
61284
|
+
Started GET "/auth/google_oauth2/callback" for 127.0.0.1 at 2016-11-18 15:41:41 -0700
|
61285
|
+
(google_oauth2) Authentication failure! csrf_detected encountered.
|
61286
|
+
Started GET "/auth/google_oauth2/callback" for 127.0.0.1 at 2016-11-18 15:41:41 -0700
|
61287
|
+
(google_oauth2) Authentication failure! invalid_credentials encountered.
|
61288
|
+
Started GET "/auth/google_oauth2/callback" for 127.0.0.1 at 2016-11-18 15:41:41 -0700
|
61289
|
+
Processing by Omniauth::Rails::SessionsController#create as HTML
|
61290
|
+
Parameters: {"provider"=>"google_oauth2"}
|
61291
|
+
Redirected to http://www.example.com/private
|
61292
|
+
Completed 302 Found in 4ms
|
61293
|
+
Started GET "/auth/sign_in" for 127.0.0.1 at 2016-11-18 15:41:41 -0700
|
61294
|
+
Processing by Omniauth::Rails::SessionsController#new as HTML
|
61295
|
+
Redirected to http://www.example.com/auth/google_oauth2
|
61296
|
+
Completed 302 Found in 1ms
|
61297
|
+
Started GET "/auth/sign_in" for 127.0.0.1 at 2016-11-18 15:41:41 -0700
|
61298
|
+
Processing by Omniauth::Rails::SessionsController#new as HTML
|
61299
|
+
Redirected to http://www.example.com/private
|
61300
|
+
Completed 302 Found in 0ms
|
61301
|
+
Started GET "/private" for 127.0.0.1 at 2016-11-18 15:41:41 -0700
|
61302
|
+
Processing by PrivateController#show as HTML
|
61303
|
+
Rendering private/show.html.erb within layouts/application
|
61304
|
+
Rendered private/show.html.erb within layouts/application (1.0ms)
|
61305
|
+
Completed 200 OK in 171ms (Views: 168.5ms)
|
61306
|
+
Started DELETE "/auth/sign_out" for 127.0.0.1 at 2016-11-18 15:41:41 -0700
|
61307
|
+
Processing by Omniauth::Rails::SessionsController#destroy as HTML
|
61308
|
+
Redirected to http://www.example.com/public
|
61309
|
+
Completed 302 Found in 0ms
|
61310
|
+
Started GET "/private" for 127.0.0.1 at 2016-11-18 15:41:41 -0700
|
61311
|
+
Processing by PrivateController#show as HTML
|
61312
|
+
Redirected to http://www.example.com/auth/sign_in
|
61313
|
+
Filter chain halted as #<Proc:0x007f9a8dc7b558@/Users/danrabinowitz/code/omniauth-rails/app/controllers/omniauth/rails/authorization_concern.rb:13> rendered or redirected
|
61314
|
+
Completed 302 Found in 1ms
|
61315
|
+
Started DELETE "/auth/sign_out" for 127.0.0.1 at 2016-11-18 15:41:41 -0700
|
61316
|
+
Processing by Omniauth::Rails::SessionsController#destroy as HTML
|
61317
|
+
Rendering /Users/danrabinowitz/code/omniauth-rails/app/views/omniauth/rails/sessions/destroy.html.erb
|
61318
|
+
Rendered /Users/danrabinowitz/code/omniauth-rails/app/views/omniauth/rails/sessions/destroy.html.erb (0.6ms)
|
61319
|
+
Completed 200 OK in 3ms (Views: 2.6ms)
|
61320
|
+
Processing by AnonymousController#fake_action as HTML
|
61321
|
+
Redirected to http://test.host/auth/sign_in
|
61322
|
+
Filter chain halted as :require_authentication rendered or redirected
|
61323
|
+
Completed 302 Found in 0ms
|
61324
|
+
Processing by AnonymousController#fake_action as HTML
|
61325
|
+
Omniauth::Rails: dev_mode is enabled. Skipping 'require_authentication'
|
61326
|
+
Completed 200 OK in 0ms
|
61327
|
+
Omniauth::Rails: dev_mode is enabled. Authentication and authorization are disabled.
|
61328
|
+
Started GET "/public" for 127.0.0.1 at 2016-11-18 15:41:41 -0700
|
61329
|
+
Processing by PublicController#show as HTML
|
61330
|
+
Rendering public/show.html.erb within layouts/application
|
61331
|
+
Rendered public/show.html.erb within layouts/application (0.3ms)
|
61332
|
+
Completed 200 OK in 5ms (Views: 3.6ms)
|
61333
|
+
Processing by AnonymousController#fake_action as HTML
|
61334
|
+
Completed 200 OK in 0ms
|
61335
|
+
Processing by AnonymousController#fake_action as HTML
|
61336
|
+
Completed 500 Internal Server Error in 0ms
|
61337
|
+
Started GET "/private" for 127.0.0.1 at 2016-11-18 15:41:41 -0700
|
61338
|
+
Processing by PrivateController#show as HTML
|
61339
|
+
Rendering /Users/danrabinowitz/code/omniauth-rails/app/views/omniauth/rails/forbidden.html
|
61340
|
+
Rendered /Users/danrabinowitz/code/omniauth-rails/app/views/omniauth/rails/forbidden.html (0.2ms)
|
61341
|
+
Filter chain halted as #<Proc:0x007f9a8dc7b558@/Users/danrabinowitz/code/omniauth-rails/app/controllers/omniauth/rails/authorization_concern.rb:13> rendered or redirected
|
61342
|
+
Completed 403 Forbidden in 13ms (Views: 12.4ms)
|
61343
|
+
Started GET "/private" for 127.0.0.1 at 2016-11-18 15:41:41 -0700
|
61344
|
+
Processing by PrivateController#show as HTML
|
61345
|
+
Rendering private/show.html.erb within layouts/application
|
61346
|
+
Rendered private/show.html.erb within layouts/application (0.3ms)
|
61347
|
+
Completed 200 OK in 5ms (Views: 3.9ms)
|
61348
|
+
Started GET "/private" for 127.0.0.1 at 2016-11-18 15:41:41 -0700
|
61349
|
+
Processing by PrivateController#show as HTML
|
61350
|
+
Redirected to http://www.example.com/auth/sign_in
|
61351
|
+
Filter chain halted as #<Proc:0x007f9a8dc7b558@/Users/danrabinowitz/code/omniauth-rails/app/controllers/omniauth/rails/authorization_concern.rb:13> rendered or redirected
|
61352
|
+
Completed 302 Found in 1ms
|
61353
|
+
Started GET "/private" for 127.0.0.1 at 2016-11-18 15:41:41 -0700
|
61354
|
+
Processing by PrivateController#show as HTML
|
61355
|
+
Omniauth::Rails: dev_mode is enabled. Skipping 'require_authorization'
|
61356
|
+
Rendering private/show.html.erb within layouts/application
|
61357
|
+
Rendered private/show.html.erb within layouts/application (0.3ms)
|
61358
|
+
Completed 200 OK in 5ms (Views: 4.3ms)
|
61359
|
+
Processing by PrivateController#show as HTML
|
61360
|
+
Rendering private/show.html.erb within layouts/application
|
61361
|
+
Rendered private/show.html.erb within layouts/application (0.1ms)
|
61362
|
+
Completed 200 OK in 5ms (Views: 3.8ms)
|
61363
|
+
Omniauth::Rails::Configurator: Loading from default_config_file=/Users/danrabinowitz/code/omniauth-rails/spec/test_app/config/omniauth_rails.yml
|
61364
|
+
Mounting Omniauth::Rails::Engine in Rails.application.routes
|
61365
|
+
Autoloading Omniauth::Rails::ControllersConcern into ActionController::Base
|
61366
|
+
Omniauth::Rails: dev_mode is enabled. Authentication and authorization are disabled.
|
61367
|
+
Started GET "/auth/sign_in" for 127.0.0.1 at 2016-11-18 17:23:46 -0700
|
61368
|
+
Processing by Omniauth::Rails::SessionsController#new as HTML
|
61369
|
+
Redirected to http://www.example.com/auth/google_oauth2
|
61370
|
+
Completed 302 Found in 16ms
|
61371
|
+
Started GET "/auth/sign_in" for 127.0.0.1 at 2016-11-18 17:23:46 -0700
|
61372
|
+
Processing by Omniauth::Rails::SessionsController#new as HTML
|
61373
|
+
Redirected to http://www.example.com/
|
61374
|
+
Completed 302 Found in 0ms
|
61375
|
+
Started GET "/auth/google_oauth2/callback" for 127.0.0.1 at 2016-11-18 17:23:46 -0700
|
61376
|
+
(google_oauth2) Authentication failure! csrf_detected encountered.
|
61377
|
+
Started GET "/auth/google_oauth2/callback" for 127.0.0.1 at 2016-11-18 17:23:46 -0700
|
61378
|
+
(google_oauth2) Authentication failure! invalid_credentials encountered.
|
61379
|
+
Started GET "/auth/google_oauth2/callback" for 127.0.0.1 at 2016-11-18 17:23:46 -0700
|
61380
|
+
Processing by Omniauth::Rails::SessionsController#create as HTML
|
61381
|
+
Parameters: {"provider"=>"google_oauth2"}
|
61382
|
+
Redirected to http://www.example.com/
|
61383
|
+
Completed 302 Found in 1ms
|
61384
|
+
Started GET "/private" for 127.0.0.1 at 2016-11-18 17:23:46 -0700
|
61385
|
+
Processing by PrivateController#show as HTML
|
61386
|
+
Rendering private/show.html.erb within layouts/application
|
61387
|
+
Rendered private/show.html.erb within layouts/application (1.1ms)
|
61388
|
+
Completed 200 OK in 169ms (Views: 166.1ms)
|
61389
|
+
Started DELETE "/auth/sign_out" for 127.0.0.1 at 2016-11-18 17:23:46 -0700
|
61390
|
+
Processing by Omniauth::Rails::SessionsController#destroy as HTML
|
61391
|
+
Redirected to http://www.example.com/
|
61392
|
+
Completed 302 Found in 0ms
|
61393
|
+
Started GET "/private" for 127.0.0.1 at 2016-11-18 17:23:46 -0700
|
61394
|
+
Processing by PrivateController#show as HTML
|
61395
|
+
Redirected to http://www.example.com/auth/sign_in
|
61396
|
+
Filter chain halted as #<Proc:0x007fefadca1d50@/Users/danrabinowitz/code/omniauth-rails/app/controllers/omniauth/rails/authorization_concern.rb:13> rendered or redirected
|
61397
|
+
Completed 302 Found in 1ms
|
61398
|
+
Started DELETE "/auth/sign_out" for 127.0.0.1 at 2016-11-18 17:23:46 -0700
|
61399
|
+
Processing by Omniauth::Rails::SessionsController#destroy as HTML
|
61400
|
+
Rendering /Users/danrabinowitz/code/omniauth-rails/app/views/omniauth/rails/sessions/destroy.html.erb
|
61401
|
+
Rendered /Users/danrabinowitz/code/omniauth-rails/app/views/omniauth/rails/sessions/destroy.html.erb (0.5ms)
|
61402
|
+
Completed 200 OK in 3ms (Views: 2.6ms)
|
61403
|
+
Processing by AnonymousController#fake_action as HTML
|
61404
|
+
Redirected to http://test.host/auth/sign_in
|
61405
|
+
Filter chain halted as :require_authentication rendered or redirected
|
61406
|
+
Completed 302 Found in 1ms
|
61407
|
+
Processing by AnonymousController#fake_action as HTML
|
61408
|
+
Omniauth::Rails: dev_mode is enabled. Skipping 'require_authentication'
|
61409
|
+
Completed 200 OK in 0ms
|
61410
|
+
Started GET "/public" for 127.0.0.1 at 2016-11-18 17:23:46 -0700
|
61411
|
+
Processing by PublicController#show as HTML
|
61412
|
+
Rendering public/show.html.erb within layouts/application
|
61413
|
+
Rendered public/show.html.erb within layouts/application (0.3ms)
|
61414
|
+
Completed 200 OK in 5ms (Views: 3.8ms)
|
61415
|
+
Processing by PrivateController#show as HTML
|
61416
|
+
Rendering private/show.html.erb within layouts/application
|
61417
|
+
Rendered private/show.html.erb within layouts/application (0.1ms)
|
61418
|
+
Completed 200 OK in 5ms (Views: 3.8ms)
|
61419
|
+
Started GET "/private" for 127.0.0.1 at 2016-11-18 17:23:46 -0700
|
61420
|
+
Processing by PrivateController#show as HTML
|
61421
|
+
Rendering private/show.html.erb within layouts/application
|
61422
|
+
Rendered private/show.html.erb within layouts/application (0.2ms)
|
61423
|
+
Completed 200 OK in 5ms (Views: 3.6ms)
|
61424
|
+
Started GET "/private" for 127.0.0.1 at 2016-11-18 17:23:46 -0700
|
61425
|
+
Processing by PrivateController#show as HTML
|
61426
|
+
Rendering /Users/danrabinowitz/code/omniauth-rails/app/views/omniauth/rails/forbidden.html
|
61427
|
+
Rendered /Users/danrabinowitz/code/omniauth-rails/app/views/omniauth/rails/forbidden.html (0.2ms)
|
61428
|
+
Filter chain halted as #<Proc:0x007fefadca1d50@/Users/danrabinowitz/code/omniauth-rails/app/controllers/omniauth/rails/authorization_concern.rb:13> rendered or redirected
|
61429
|
+
Completed 403 Forbidden in 13ms (Views: 12.9ms)
|
61430
|
+
Started GET "/private" for 127.0.0.1 at 2016-11-18 17:23:46 -0700
|
61431
|
+
Processing by PrivateController#show as HTML
|
61432
|
+
Redirected to http://www.example.com/auth/sign_in
|
61433
|
+
Filter chain halted as #<Proc:0x007fefadca1d50@/Users/danrabinowitz/code/omniauth-rails/app/controllers/omniauth/rails/authorization_concern.rb:13> rendered or redirected
|
61434
|
+
Completed 302 Found in 1ms
|
61435
|
+
Started GET "/private" for 127.0.0.1 at 2016-11-18 17:23:46 -0700
|
61436
|
+
Processing by PrivateController#show as HTML
|
61437
|
+
Omniauth::Rails: dev_mode is enabled. Skipping 'require_authorization'
|
61438
|
+
Rendering private/show.html.erb within layouts/application
|
61439
|
+
Rendered private/show.html.erb within layouts/application (0.2ms)
|
61440
|
+
Completed 200 OK in 4ms (Views: 3.4ms)
|
61441
|
+
Processing by AnonymousController#fake_action as HTML
|
61442
|
+
Completed 500 Internal Server Error in 0ms
|
61443
|
+
Processing by AnonymousController#fake_action as HTML
|
61444
|
+
Completed 200 OK in 0ms
|
61445
|
+
Omniauth::Rails::Configurator: Loading from default_config_file=/Users/danrabinowitz/code/omniauth-rails/spec/test_app/config/omniauth_rails.yml
|
61446
|
+
Mounting Omniauth::Rails::Engine in Rails.application.routes
|
61447
|
+
Autoloading Omniauth::Rails::ControllersConcern into ActionController::Base
|
61448
|
+
Processing by AnonymousController#fake_action as HTML
|
61449
|
+
Redirected to http://test.host/auth/sign_in
|
61450
|
+
Filter chain halted as :require_authentication rendered or redirected
|
61451
|
+
Completed 302 Found in 8ms
|
61452
|
+
Processing by AnonymousController#fake_action as HTML
|
61453
|
+
Omniauth::Rails: dev_mode is enabled. Skipping 'require_authentication'
|
61454
|
+
Completed 200 OK in 0ms
|
61455
|
+
Processing by AnonymousController#fake_action as HTML
|
61456
|
+
Completed 500 Internal Server Error in 0ms
|
61457
|
+
Processing by AnonymousController#fake_action as HTML
|
61458
|
+
Completed 200 OK in 0ms
|
61459
|
+
Omniauth::Rails: dev_mode is enabled. Authentication and authorization are disabled.
|
61460
|
+
Started GET "/auth/sign_in" for 127.0.0.1 at 2016-11-18 18:02:34 -0700
|
61461
|
+
Processing by Omniauth::Rails::SessionsController#new as HTML
|
61462
|
+
Redirected to http://www.example.com/auth/google_oauth2
|
61463
|
+
Completed 302 Found in 9ms
|
61464
|
+
Started GET "/auth/sign_in" for 127.0.0.1 at 2016-11-18 18:02:34 -0700
|
61465
|
+
Processing by Omniauth::Rails::SessionsController#new as HTML
|
61466
|
+
Redirected to http://www.example.com/
|
61467
|
+
Completed 302 Found in 0ms
|
61468
|
+
Started GET "/auth/google_oauth2/callback" for 127.0.0.1 at 2016-11-18 18:02:34 -0700
|
61469
|
+
(google_oauth2) Authentication failure! csrf_detected encountered.
|
61470
|
+
Started GET "/auth/google_oauth2/callback" for 127.0.0.1 at 2016-11-18 18:02:34 -0700
|
61471
|
+
Processing by Omniauth::Rails::SessionsController#create as HTML
|
61472
|
+
Parameters: {"provider"=>"google_oauth2"}
|
61473
|
+
Redirected to http://www.example.com/
|
61474
|
+
Completed 302 Found in 1ms
|
61475
|
+
Started GET "/auth/google_oauth2/callback" for 127.0.0.1 at 2016-11-18 18:02:34 -0700
|
61476
|
+
(google_oauth2) Authentication failure! invalid_credentials encountered.
|
61477
|
+
Started GET "/private" for 127.0.0.1 at 2016-11-18 18:02:34 -0700
|
61478
|
+
Processing by PrivateController#show as HTML
|
61479
|
+
Rendering private/show.html.erb within layouts/application
|
61480
|
+
Rendered private/show.html.erb within layouts/application (1.4ms)
|
61481
|
+
Completed 200 OK in 174ms (Views: 171.4ms)
|
61482
|
+
Started DELETE "/auth/sign_out" for 127.0.0.1 at 2016-11-18 18:02:34 -0700
|
61483
|
+
Processing by Omniauth::Rails::SessionsController#destroy as HTML
|
61484
|
+
Redirected to http://www.example.com/
|
61485
|
+
Completed 302 Found in 0ms
|
61486
|
+
Started GET "/private" for 127.0.0.1 at 2016-11-18 18:02:34 -0700
|
61487
|
+
Processing by PrivateController#show as HTML
|
61488
|
+
Redirected to http://www.example.com/auth/sign_in
|
61489
|
+
Filter chain halted as #<Proc:0x007fe6068aa680@/Users/danrabinowitz/code/omniauth-rails/app/controllers/omniauth/rails/authorization_concern.rb:13> rendered or redirected
|
61490
|
+
Completed 302 Found in 1ms
|
61491
|
+
Started DELETE "/auth/sign_out" for 127.0.0.1 at 2016-11-18 18:02:34 -0700
|
61492
|
+
Processing by Omniauth::Rails::SessionsController#destroy as HTML
|
61493
|
+
Rendering /Users/danrabinowitz/code/omniauth-rails/app/views/omniauth/rails/sessions/destroy.html.erb
|
61494
|
+
Rendered /Users/danrabinowitz/code/omniauth-rails/app/views/omniauth/rails/sessions/destroy.html.erb (0.6ms)
|
61495
|
+
Completed 200 OK in 3ms (Views: 2.7ms)
|
61496
|
+
Started GET "/public" for 127.0.0.1 at 2016-11-18 18:02:34 -0700
|
61497
|
+
Processing by PublicController#show as HTML
|
61498
|
+
Rendering public/show.html.erb within layouts/application
|
61499
|
+
Rendered public/show.html.erb within layouts/application (0.3ms)
|
61500
|
+
Completed 200 OK in 5ms (Views: 4.2ms)
|
61501
|
+
Started GET "/private" for 127.0.0.1 at 2016-11-18 18:02:34 -0700
|
61502
|
+
Processing by PrivateController#show as HTML
|
61503
|
+
Redirected to http://www.example.com/auth/sign_in
|
61504
|
+
Filter chain halted as #<Proc:0x007fe6068aa680@/Users/danrabinowitz/code/omniauth-rails/app/controllers/omniauth/rails/authorization_concern.rb:13> rendered or redirected
|
61505
|
+
Completed 302 Found in 1ms
|
61506
|
+
Started GET "/private" for 127.0.0.1 at 2016-11-18 18:02:34 -0700
|
61507
|
+
Processing by PrivateController#show as HTML
|
61508
|
+
Omniauth::Rails: dev_mode is enabled. Skipping 'require_authorization'
|
61509
|
+
Rendering private/show.html.erb within layouts/application
|
61510
|
+
Rendered private/show.html.erb within layouts/application (0.3ms)
|
61511
|
+
Completed 200 OK in 4ms (Views: 3.4ms)
|
61512
|
+
Started GET "/private" for 127.0.0.1 at 2016-11-18 18:02:34 -0700
|
61513
|
+
Processing by PrivateController#show as HTML
|
61514
|
+
Rendering /Users/danrabinowitz/code/omniauth-rails/app/views/omniauth/rails/forbidden.html
|
61515
|
+
Rendered /Users/danrabinowitz/code/omniauth-rails/app/views/omniauth/rails/forbidden.html (0.3ms)
|
61516
|
+
Filter chain halted as #<Proc:0x007fe6068aa680@/Users/danrabinowitz/code/omniauth-rails/app/controllers/omniauth/rails/authorization_concern.rb:13> rendered or redirected
|
61517
|
+
Completed 403 Forbidden in 15ms (Views: 15.2ms)
|
61518
|
+
Started GET "/private" for 127.0.0.1 at 2016-11-18 18:02:34 -0700
|
61519
|
+
Processing by PrivateController#show as HTML
|
61520
|
+
Rendering private/show.html.erb within layouts/application
|
61521
|
+
Rendered private/show.html.erb within layouts/application (0.5ms)
|
61522
|
+
Completed 200 OK in 7ms (Views: 5.9ms)
|
61523
|
+
Processing by PrivateController#show as HTML
|
61524
|
+
Rendering private/show.html.erb within layouts/application
|
61525
|
+
Rendered private/show.html.erb within layouts/application (0.3ms)
|
61526
|
+
Completed 200 OK in 7ms (Views: 4.8ms)
|
61527
|
+
Omniauth::Rails::Configurator: Loading from default_config_file=/Users/danrabinowitz/code/omniauth-rails/spec/test_app/config/omniauth_rails.yml
|
61528
|
+
Mounting Omniauth::Rails::Engine in Rails.application.routes
|
61529
|
+
Autoloading Omniauth::Rails::ControllersConcern into ActionController::Base
|
61530
|
+
Started GET "/public" for 127.0.0.1 at 2016-11-18 18:04:12 -0700
|
61531
|
+
Processing by PublicController#show as HTML
|
61532
|
+
Rendering public/show.html.erb within layouts/application
|
61533
|
+
Rendered public/show.html.erb within layouts/application (1.1ms)
|
61534
|
+
Completed 200 OK in 185ms (Views: 183.7ms)
|
61535
|
+
Omniauth::Rails: dev_mode is enabled. Authentication and authorization are disabled.
|
61536
|
+
Processing by AnonymousController#fake_action as HTML
|
61537
|
+
Completed 500 Internal Server Error in 0ms
|
61538
|
+
Processing by AnonymousController#fake_action as HTML
|
61539
|
+
Completed 200 OK in 0ms
|
61540
|
+
Processing by AnonymousController#fake_action as HTML
|
61541
|
+
Redirected to http://test.host/auth/sign_in
|
61542
|
+
Filter chain halted as :require_authentication rendered or redirected
|
61543
|
+
Completed 302 Found in 2ms
|
61544
|
+
Processing by AnonymousController#fake_action as HTML
|
61545
|
+
Omniauth::Rails: dev_mode is enabled. Skipping 'require_authentication'
|
61546
|
+
Completed 200 OK in 0ms
|
61547
|
+
Started GET "/private" for 127.0.0.1 at 2016-11-18 18:04:13 -0700
|
61548
|
+
Processing by PrivateController#show as HTML
|
61549
|
+
Redirected to http://www.example.com/auth/sign_in
|
61550
|
+
Filter chain halted as #<Proc:0x007ffa6fa81e40@/Users/danrabinowitz/code/omniauth-rails/app/controllers/omniauth/rails/authorization_concern.rb:13> rendered or redirected
|
61551
|
+
Completed 302 Found in 1ms
|
61552
|
+
Started GET "/private" for 127.0.0.1 at 2016-11-18 18:04:13 -0700
|
61553
|
+
Processing by PrivateController#show as HTML
|
61554
|
+
Omniauth::Rails: dev_mode is enabled. Skipping 'require_authorization'
|
61555
|
+
Rendering private/show.html.erb within layouts/application
|
61556
|
+
Rendered private/show.html.erb within layouts/application (0.3ms)
|
61557
|
+
Completed 200 OK in 5ms (Views: 3.7ms)
|
61558
|
+
Started GET "/private" for 127.0.0.1 at 2016-11-18 18:04:13 -0700
|
61559
|
+
Processing by PrivateController#show as HTML
|
61560
|
+
Rendering /Users/danrabinowitz/code/omniauth-rails/app/views/omniauth/rails/forbidden.html
|
61561
|
+
Rendered /Users/danrabinowitz/code/omniauth-rails/app/views/omniauth/rails/forbidden.html (0.3ms)
|
61562
|
+
Filter chain halted as #<Proc:0x007ffa6fa81e40@/Users/danrabinowitz/code/omniauth-rails/app/controllers/omniauth/rails/authorization_concern.rb:13> rendered or redirected
|
61563
|
+
Completed 403 Forbidden in 15ms (Views: 13.6ms)
|
61564
|
+
Started GET "/private" for 127.0.0.1 at 2016-11-18 18:04:13 -0700
|
61565
|
+
Processing by PrivateController#show as HTML
|
61566
|
+
Rendering private/show.html.erb within layouts/application
|
61567
|
+
Rendered private/show.html.erb within layouts/application (0.2ms)
|
61568
|
+
Completed 200 OK in 5ms (Views: 3.8ms)
|
61569
|
+
Started GET "/private" for 127.0.0.1 at 2016-11-18 18:04:13 -0700
|
61570
|
+
Processing by PrivateController#show as HTML
|
61571
|
+
Rendering private/show.html.erb within layouts/application
|
61572
|
+
Rendered private/show.html.erb within layouts/application (0.4ms)
|
61573
|
+
Completed 200 OK in 5ms (Views: 3.9ms)
|
61574
|
+
Started DELETE "/auth/sign_out" for 127.0.0.1 at 2016-11-18 18:04:13 -0700
|
61575
|
+
Processing by Omniauth::Rails::SessionsController#destroy as HTML
|
61576
|
+
Redirected to http://www.example.com/
|
61577
|
+
Completed 302 Found in 0ms
|
61578
|
+
Started GET "/private" for 127.0.0.1 at 2016-11-18 18:04:13 -0700
|
61579
|
+
Processing by PrivateController#show as HTML
|
61580
|
+
Redirected to http://www.example.com/auth/sign_in
|
61581
|
+
Filter chain halted as #<Proc:0x007ffa6fa81e40@/Users/danrabinowitz/code/omniauth-rails/app/controllers/omniauth/rails/authorization_concern.rb:13> rendered or redirected
|
61582
|
+
Completed 302 Found in 1ms
|
61583
|
+
Started DELETE "/auth/sign_out" for 127.0.0.1 at 2016-11-18 18:04:13 -0700
|
61584
|
+
Processing by Omniauth::Rails::SessionsController#destroy as HTML
|
61585
|
+
Rendering /Users/danrabinowitz/code/omniauth-rails/app/views/omniauth/rails/sessions/destroy.html.erb
|
61586
|
+
Rendered /Users/danrabinowitz/code/omniauth-rails/app/views/omniauth/rails/sessions/destroy.html.erb (0.6ms)
|
61587
|
+
Completed 200 OK in 3ms (Views: 3.0ms)
|
61588
|
+
Started GET "/auth/google_oauth2/callback" for 127.0.0.1 at 2016-11-18 18:04:13 -0700
|
61589
|
+
Processing by Omniauth::Rails::SessionsController#create as HTML
|
61590
|
+
Parameters: {"provider"=>"google_oauth2"}
|
61591
|
+
Redirected to http://www.example.com/
|
61592
|
+
Completed 302 Found in 1ms
|
61593
|
+
Started GET "/auth/google_oauth2/callback" for 127.0.0.1 at 2016-11-18 18:04:13 -0700
|
61594
|
+
(google_oauth2) Authentication failure! csrf_detected encountered.
|
61595
|
+
Started GET "/auth/google_oauth2/callback" for 127.0.0.1 at 2016-11-18 18:04:13 -0700
|
61596
|
+
(google_oauth2) Authentication failure! invalid_credentials encountered.
|
61597
|
+
Started GET "/auth/sign_in" for 127.0.0.1 at 2016-11-18 18:04:13 -0700
|
61598
|
+
Processing by Omniauth::Rails::SessionsController#new as HTML
|
61599
|
+
Redirected to http://www.example.com/auth/google_oauth2
|
61600
|
+
Completed 302 Found in 1ms
|
61601
|
+
Started GET "/auth/sign_in" for 127.0.0.1 at 2016-11-18 18:04:13 -0700
|
61602
|
+
Processing by Omniauth::Rails::SessionsController#new as HTML
|
61603
|
+
Redirected to http://www.example.com/
|
61604
|
+
Completed 302 Found in 0ms
|
61605
|
+
Processing by PrivateController#show as HTML
|
61606
|
+
Rendering private/show.html.erb within layouts/application
|
61607
|
+
Rendered private/show.html.erb within layouts/application (0.2ms)
|
61608
|
+
Completed 200 OK in 6ms (Views: 4.0ms)
|
61609
|
+
Omniauth::Rails::Configurator: Loading from default_config_file=/Users/danrabinowitz/code/omniauth-rails/spec/test_app/config/omniauth_rails.yml
|
61610
|
+
Mounting Omniauth::Rails::Engine in Rails.application.routes
|
61611
|
+
Autoloading Omniauth::Rails::ControllersConcern into ActionController::Base
|
61612
|
+
Omniauth::Rails: dev_mode is enabled. Authentication and authorization are disabled.
|
61613
|
+
Processing by AnonymousController#fake_action as HTML
|
61614
|
+
Completed 200 OK in 0ms
|
61615
|
+
Processing by AnonymousController#fake_action as HTML
|
61616
|
+
Completed 500 Internal Server Error in 0ms
|
61617
|
+
Started GET "/auth/google_oauth2/callback" for 127.0.0.1 at 2016-11-18 18:04:39 -0700
|
61618
|
+
(google_oauth2) Authentication failure! csrf_detected encountered.
|
61619
|
+
Started GET "/auth/google_oauth2/callback" for 127.0.0.1 at 2016-11-18 18:04:39 -0700
|
61620
|
+
Processing by Omniauth::Rails::SessionsController#create as HTML
|
61621
|
+
Parameters: {"provider"=>"google_oauth2"}
|
61622
|
+
Redirected to http://www.example.com/
|
61623
|
+
Completed 302 Found in 4ms
|
61624
|
+
Started GET "/auth/google_oauth2/callback" for 127.0.0.1 at 2016-11-18 18:04:39 -0700
|
61625
|
+
(google_oauth2) Authentication failure! invalid_credentials encountered.
|
61626
|
+
Started GET "/private" for 127.0.0.1 at 2016-11-18 18:04:39 -0700
|
61627
|
+
Processing by PrivateController#show as HTML
|
61628
|
+
Rendering private/show.html.erb within layouts/application
|
61629
|
+
Rendered private/show.html.erb within layouts/application (1.0ms)
|
61630
|
+
Completed 200 OK in 163ms (Views: 160.4ms)
|
61631
|
+
Started DELETE "/auth/sign_out" for 127.0.0.1 at 2016-11-18 18:04:39 -0700
|
61632
|
+
Processing by Omniauth::Rails::SessionsController#destroy as HTML
|
61633
|
+
Redirected to http://www.example.com/
|
61634
|
+
Completed 302 Found in 0ms
|
61635
|
+
Started GET "/private" for 127.0.0.1 at 2016-11-18 18:04:39 -0700
|
61636
|
+
Processing by PrivateController#show as HTML
|
61637
|
+
Redirected to http://www.example.com/auth/sign_in
|
61638
|
+
Filter chain halted as #<Proc:0x007fdf23b82e00@/Users/danrabinowitz/code/omniauth-rails/app/controllers/omniauth/rails/authorization_concern.rb:13> rendered or redirected
|
61639
|
+
Completed 302 Found in 1ms
|
61640
|
+
Started DELETE "/auth/sign_out" for 127.0.0.1 at 2016-11-18 18:04:39 -0700
|
61641
|
+
Processing by Omniauth::Rails::SessionsController#destroy as HTML
|
61642
|
+
Rendering /Users/danrabinowitz/code/omniauth-rails/app/views/omniauth/rails/sessions/destroy.html.erb
|
61643
|
+
Rendered /Users/danrabinowitz/code/omniauth-rails/app/views/omniauth/rails/sessions/destroy.html.erb (0.6ms)
|
61644
|
+
Completed 200 OK in 3ms (Views: 2.5ms)
|
61645
|
+
Started GET "/auth/sign_in" for 127.0.0.1 at 2016-11-18 18:04:39 -0700
|
61646
|
+
Processing by Omniauth::Rails::SessionsController#new as HTML
|
61647
|
+
Redirected to http://www.example.com/auth/google_oauth2
|
61648
|
+
Completed 302 Found in 1ms
|
61649
|
+
Started GET "/auth/sign_in" for 127.0.0.1 at 2016-11-18 18:04:39 -0700
|
61650
|
+
Processing by Omniauth::Rails::SessionsController#new as HTML
|
61651
|
+
Redirected to http://www.example.com/
|
61652
|
+
Completed 302 Found in 0ms
|
61653
|
+
Processing by AnonymousController#fake_action as HTML
|
61654
|
+
Redirected to http://test.host/auth/sign_in
|
61655
|
+
Filter chain halted as :require_authentication rendered or redirected
|
61656
|
+
Completed 302 Found in 1ms
|
61657
|
+
Processing by AnonymousController#fake_action as HTML
|
61658
|
+
Omniauth::Rails: dev_mode is enabled. Skipping 'require_authentication'
|
61659
|
+
Completed 200 OK in 0ms
|
61660
|
+
Processing by PrivateController#show as HTML
|
61661
|
+
Rendering private/show.html.erb within layouts/application
|
61662
|
+
Rendered private/show.html.erb within layouts/application (0.2ms)
|
61663
|
+
Completed 200 OK in 6ms (Views: 4.0ms)
|
61664
|
+
Started GET "/public" for 127.0.0.1 at 2016-11-18 18:04:39 -0700
|
61665
|
+
Processing by PublicController#show as HTML
|
61666
|
+
Rendering public/show.html.erb within layouts/application
|
61667
|
+
Rendered public/show.html.erb within layouts/application (0.3ms)
|
61668
|
+
Completed 200 OK in 5ms (Views: 4.0ms)
|
61669
|
+
Started GET "/private" for 127.0.0.1 at 2016-11-18 18:04:39 -0700
|
61670
|
+
Processing by PrivateController#show as HTML
|
61671
|
+
Rendering private/show.html.erb within layouts/application
|
61672
|
+
Rendered private/show.html.erb within layouts/application (0.2ms)
|
61673
|
+
Completed 200 OK in 5ms (Views: 3.8ms)
|
61674
|
+
Started GET "/private" for 127.0.0.1 at 2016-11-18 18:04:39 -0700
|
61675
|
+
Processing by PrivateController#show as HTML
|
61676
|
+
Rendering /Users/danrabinowitz/code/omniauth-rails/app/views/omniauth/rails/forbidden.html
|
61677
|
+
Rendered /Users/danrabinowitz/code/omniauth-rails/app/views/omniauth/rails/forbidden.html (0.3ms)
|
61678
|
+
Filter chain halted as #<Proc:0x007fdf23b82e00@/Users/danrabinowitz/code/omniauth-rails/app/controllers/omniauth/rails/authorization_concern.rb:13> rendered or redirected
|
61679
|
+
Completed 403 Forbidden in 13ms (Views: 13.1ms)
|
61680
|
+
Started GET "/private" for 127.0.0.1 at 2016-11-18 18:04:39 -0700
|
61681
|
+
Processing by PrivateController#show as HTML
|
61682
|
+
Redirected to http://www.example.com/auth/sign_in
|
61683
|
+
Filter chain halted as #<Proc:0x007fdf23b82e00@/Users/danrabinowitz/code/omniauth-rails/app/controllers/omniauth/rails/authorization_concern.rb:13> rendered or redirected
|
61684
|
+
Completed 302 Found in 1ms
|
61685
|
+
Started GET "/private" for 127.0.0.1 at 2016-11-18 18:04:39 -0700
|
61686
|
+
Processing by PrivateController#show as HTML
|
61687
|
+
Omniauth::Rails: dev_mode is enabled. Skipping 'require_authorization'
|
61688
|
+
Rendering private/show.html.erb within layouts/application
|
61689
|
+
Rendered private/show.html.erb within layouts/application (0.3ms)
|
61690
|
+
Completed 200 OK in 5ms (Views: 4.0ms)
|
61691
|
+
Omniauth::Rails::Configurator: Loading from default_config_file=/Users/danrabinowitz/code/omniauth-rails/spec/test_app/config/omniauth_rails.yml
|
61692
|
+
Mounting Omniauth::Rails::Engine in Rails.application.routes
|
61693
|
+
Autoloading Omniauth::Rails::ControllersConcern into ActionController::Base
|
61694
|
+
Processing by AnonymousController#fake_action as HTML
|
61695
|
+
Completed 200 OK in 1ms
|
61696
|
+
Processing by AnonymousController#fake_action as HTML
|
61697
|
+
Completed 500 Internal Server Error in 0ms
|
61698
|
+
Started GET "/private" for 127.0.0.1 at 2016-11-18 18:32:37 -0700
|
61699
|
+
Processing by PrivateController#show as HTML
|
61700
|
+
Rendering private/show.html.erb within layouts/application
|
61701
|
+
Rendered private/show.html.erb within layouts/application (1.5ms)
|
61702
|
+
Completed 200 OK in 181ms (Views: 171.9ms)
|
61703
|
+
Started GET "/private" for 127.0.0.1 at 2016-11-18 18:32:37 -0700
|
61704
|
+
Processing by PrivateController#show as HTML
|
61705
|
+
Rendering /Users/danrabinowitz/code/omniauth-rails/app/views/omniauth/rails/forbidden.html
|
61706
|
+
Rendered /Users/danrabinowitz/code/omniauth-rails/app/views/omniauth/rails/forbidden.html (0.3ms)
|
61707
|
+
Filter chain halted as #<Proc:0x007fba26b49578@/Users/danrabinowitz/code/omniauth-rails/app/controllers/omniauth/rails/authorization_concern.rb:13> rendered or redirected
|
61708
|
+
Completed 403 Forbidden in 13ms (Views: 13.1ms)
|
61709
|
+
Started GET "/private" for 127.0.0.1 at 2016-11-18 18:32:37 -0700
|
61710
|
+
Processing by PrivateController#show as HTML
|
61711
|
+
Redirected to http://www.example.com/auth/sign_in
|
61712
|
+
Filter chain halted as #<Proc:0x007fba26b49578@/Users/danrabinowitz/code/omniauth-rails/app/controllers/omniauth/rails/authorization_concern.rb:13> rendered or redirected
|
61713
|
+
Completed 302 Found in 12ms
|
61714
|
+
Started GET "/private" for 127.0.0.1 at 2016-11-18 18:32:37 -0700
|
61715
|
+
Processing by PrivateController#show as HTML
|
61716
|
+
Omniauth::Rails: dev_mode is enabled. Skipping 'require_authorization'
|
61717
|
+
Rendering private/show.html.erb within layouts/application
|
61718
|
+
Rendered private/show.html.erb within layouts/application (0.3ms)
|
61719
|
+
Completed 200 OK in 5ms (Views: 4.0ms)
|
61720
|
+
Processing by AnonymousController#fake_action as HTML
|
61721
|
+
Redirected to http://test.host/auth/sign_in
|
61722
|
+
Filter chain halted as :require_authentication rendered or redirected
|
61723
|
+
Completed 302 Found in 1ms
|
61724
|
+
Processing by AnonymousController#fake_action as HTML
|
61725
|
+
Omniauth::Rails: dev_mode is enabled. Skipping 'require_authentication'
|
61726
|
+
Completed 200 OK in 0ms
|
61727
|
+
Omniauth::Rails: dev_mode is enabled. Authentication and authorization are disabled.
|
61728
|
+
Processing by PrivateController#show as HTML
|
61729
|
+
Rendering private/show.html.erb within layouts/application
|
61730
|
+
Rendered private/show.html.erb within layouts/application (0.2ms)
|
61731
|
+
Completed 200 OK in 5ms (Views: 3.9ms)
|
61732
|
+
Started GET "/public" for 127.0.0.1 at 2016-11-18 18:32:37 -0700
|
61733
|
+
Processing by PublicController#show as HTML
|
61734
|
+
Rendering public/show.html.erb within layouts/application
|
61735
|
+
Rendered public/show.html.erb within layouts/application (0.3ms)
|
61736
|
+
Completed 200 OK in 7ms (Views: 5.8ms)
|
61737
|
+
Started GET "/auth/sign_in" for 127.0.0.1 at 2016-11-18 18:32:37 -0700
|
61738
|
+
Processing by Omniauth::Rails::SessionsController#new as HTML
|
61739
|
+
Redirected to http://www.example.com/auth/google_oauth2
|
61740
|
+
Completed 302 Found in 1ms
|
61741
|
+
Started GET "/auth/sign_in" for 127.0.0.1 at 2016-11-18 18:32:37 -0700
|
61742
|
+
Processing by Omniauth::Rails::SessionsController#new as HTML
|
61743
|
+
Redirected to http://www.example.com/
|
61744
|
+
Completed 302 Found in 0ms
|
61745
|
+
Started GET "/auth/google_oauth2/callback" for 127.0.0.1 at 2016-11-18 18:32:37 -0700
|
61746
|
+
(google_oauth2) Authentication failure! invalid_credentials encountered.
|
61747
|
+
Started GET "/auth/google_oauth2/callback" for 127.0.0.1 at 2016-11-18 18:32:37 -0700
|
61748
|
+
(google_oauth2) Authentication failure! csrf_detected encountered.
|
61749
|
+
Started GET "/auth/google_oauth2/callback" for 127.0.0.1 at 2016-11-18 18:32:37 -0700
|
61750
|
+
Processing by Omniauth::Rails::SessionsController#create as HTML
|
61751
|
+
Parameters: {"provider"=>"google_oauth2"}
|
61752
|
+
Redirected to http://www.example.com/
|
61753
|
+
Completed 302 Found in 1ms
|
61754
|
+
Started GET "/private" for 127.0.0.1 at 2016-11-18 18:32:37 -0700
|
61755
|
+
Processing by PrivateController#show as HTML
|
61756
|
+
Rendering private/show.html.erb within layouts/application
|
61757
|
+
Rendered private/show.html.erb within layouts/application (0.3ms)
|
61758
|
+
Completed 200 OK in 5ms (Views: 3.9ms)
|
61759
|
+
Started DELETE "/auth/sign_out" for 127.0.0.1 at 2016-11-18 18:32:37 -0700
|
61760
|
+
Processing by Omniauth::Rails::SessionsController#destroy as HTML
|
61761
|
+
Redirected to http://www.example.com/
|
61762
|
+
Completed 302 Found in 0ms
|
61763
|
+
Started GET "/private" for 127.0.0.1 at 2016-11-18 18:32:37 -0700
|
61764
|
+
Processing by PrivateController#show as HTML
|
61765
|
+
Redirected to http://www.example.com/auth/sign_in
|
61766
|
+
Filter chain halted as #<Proc:0x007fba26b49578@/Users/danrabinowitz/code/omniauth-rails/app/controllers/omniauth/rails/authorization_concern.rb:13> rendered or redirected
|
61767
|
+
Completed 302 Found in 1ms
|
61768
|
+
Started DELETE "/auth/sign_out" for 127.0.0.1 at 2016-11-18 18:32:37 -0700
|
61769
|
+
Processing by Omniauth::Rails::SessionsController#destroy as HTML
|
61770
|
+
Rendering /Users/danrabinowitz/code/omniauth-rails/app/views/omniauth/rails/sessions/destroy.html.erb
|
61771
|
+
Rendered /Users/danrabinowitz/code/omniauth-rails/app/views/omniauth/rails/sessions/destroy.html.erb (0.5ms)
|
61772
|
+
Completed 200 OK in 2ms (Views: 2.4ms)
|