rodauth-oauth 0.9.0 → 0.9.1
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/doc/release_notes/0_9_1.md +9 -0
- data/lib/rodauth/features/oauth_base.rb +11 -4
- data/lib/rodauth/features/oauth_jwt.rb +1 -2
- data/lib/rodauth/features/oidc.rb +2 -3
- data/lib/rodauth/oauth/version.rb +1 -1
- metadata +4 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 8d0412f0fc70f27a32d2517afbc688eae79304a52fd074298ecac3176edf2ee8
|
4
|
+
data.tar.gz: 2bed00e6896786192f3a4b93b145e8b75b0813741b323213586d736745323617
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d04277337c21a48a9b0504eaadac11342bd69a0892e1ee7bd7114880b35fe1cdf4e086044d8fa6198c82da3b8f49b6e12be58b98316f592ed980733d2c2cdaa7
|
7
|
+
data.tar.gz: f3b8ebe3574ff7559c827a42b76ad698b3a33ba93593fe09695a833af92709ca39b33a9e3be0d1c57c6300666de97850810f37e629a29e59bddd0b8746f63f10
|
@@ -0,0 +1,9 @@
|
|
1
|
+
### 0.9.1 (08/05/2022)
|
2
|
+
|
3
|
+
#### Improvements
|
4
|
+
|
5
|
+
Using `return_response`, introduced in `rodauth` v2.23, which accomplishes better integration with rails response logging mechanism when used under `rodauth-rails`.
|
6
|
+
|
7
|
+
#### Bugfixes
|
8
|
+
|
9
|
+
* Fixing namespacing issue which required anyone to have to `require "rodauth-oauth"` before loading it (no need to anymore).
|
@@ -4,6 +4,8 @@ require "time"
|
|
4
4
|
require "base64"
|
5
5
|
require "securerandom"
|
6
6
|
require "net/http"
|
7
|
+
require "rodauth/version"
|
8
|
+
require "rodauth/oauth/version"
|
7
9
|
require "rodauth/oauth/ttl_store"
|
8
10
|
require "rodauth/oauth/database_extensions"
|
9
11
|
require "rodauth/oauth/refinements"
|
@@ -687,8 +689,7 @@ module Rodauth
|
|
687
689
|
response["Pragma"] = "no-cache"
|
688
690
|
end
|
689
691
|
json_payload = _json_response_body(body)
|
690
|
-
|
691
|
-
request.halt
|
692
|
+
return_response(json_payload)
|
692
693
|
end
|
693
694
|
|
694
695
|
def throw_json_response_error(status, error_code, message = nil)
|
@@ -703,8 +704,7 @@ module Rodauth
|
|
703
704
|
json_payload = _json_response_body(payload)
|
704
705
|
response["Content-Type"] ||= json_response_content_type
|
705
706
|
response["WWW-Authenticate"] = oauth_token_type.upcase if status == 401
|
706
|
-
|
707
|
-
request.halt
|
707
|
+
return_response(json_payload)
|
708
708
|
end
|
709
709
|
|
710
710
|
unless method_defined?(:_json_response_body)
|
@@ -717,6 +717,13 @@ module Rodauth
|
|
717
717
|
end
|
718
718
|
end
|
719
719
|
|
720
|
+
if Gem::Version.new(Rodauth.version) < Gem::Version.new("2.23")
|
721
|
+
def return_response(body = nil)
|
722
|
+
response.write(body) if body
|
723
|
+
request.halt
|
724
|
+
end
|
725
|
+
end
|
726
|
+
|
720
727
|
def authorization_required
|
721
728
|
if accepts_json?
|
722
729
|
throw_json_response_error(authorization_required_error_status, "invalid_client")
|
@@ -234,8 +234,7 @@ module Rodauth
|
|
234
234
|
href: authorization_server_url
|
235
235
|
}]
|
236
236
|
})
|
237
|
-
|
238
|
-
request.halt
|
237
|
+
return_response(json_payload)
|
239
238
|
end
|
240
239
|
end
|
241
240
|
end
|
@@ -533,7 +532,7 @@ module Rodauth
|
|
533
532
|
response["Access-Control-Allow-Methods"] = "GET, OPTIONS"
|
534
533
|
response["Access-Control-Max-Age"] = "3600"
|
535
534
|
response.status = 200
|
536
|
-
|
535
|
+
return_response
|
537
536
|
end
|
538
537
|
end
|
539
538
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rodauth-oauth
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.9.
|
4
|
+
version: 0.9.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tiago Cardoso
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-
|
11
|
+
date: 2022-05-08 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rodauth
|
@@ -57,6 +57,7 @@ extra_rdoc_files:
|
|
57
57
|
- doc/release_notes/0_7_4.md
|
58
58
|
- doc/release_notes/0_8_0.md
|
59
59
|
- doc/release_notes/0_9_0.md
|
60
|
+
- doc/release_notes/0_9_1.md
|
60
61
|
files:
|
61
62
|
- CHANGELOG.md
|
62
63
|
- LICENSE.txt
|
@@ -85,6 +86,7 @@ files:
|
|
85
86
|
- doc/release_notes/0_7_4.md
|
86
87
|
- doc/release_notes/0_8_0.md
|
87
88
|
- doc/release_notes/0_9_0.md
|
89
|
+
- doc/release_notes/0_9_1.md
|
88
90
|
- lib/generators/rodauth/oauth/install_generator.rb
|
89
91
|
- lib/generators/rodauth/oauth/templates/app/models/oauth_application.rb
|
90
92
|
- lib/generators/rodauth/oauth/templates/app/models/oauth_grant.rb
|