omniauth-dnsimple 0.1.0 → 0.1.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/CHANGELOG.md +6 -0
- data/lib/omniauth/dnsimple/version.rb +1 -1
- data/lib/omniauth/strategies/dnsimple.rb +35 -2
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 6d8cbf3129f4fe5f435bdd5d65806f02e5b48120a0d7d46295605c953bbfbc81
|
4
|
+
data.tar.gz: 844becef40978d7b123b1306f0ea5826bb203eddfa1d79988e4179415e15a247
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c1a83e2fb16a0b7f15552a4ed4ca517c4719bb42cade903536f11bb14c951d8471f9fc9248c3d5f7c0648f665f9d63cf293ac31c7b9c2b0c5535ff57c69ae2d3
|
7
|
+
data.tar.gz: 42c348bcaf35dd0e75c1c0650bfdf6fb2f1047bce86991453418e9e0f3aa9efadc92c025c305702f90607c309f2613b1f36aba1d0a4ae44d9e30652c3278fa9c
|
data/CHANGELOG.md
CHANGED
@@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
7
7
|
|
8
|
+
## [0.1.1] - 2024-03-29
|
9
|
+
|
10
|
+
### Fixed
|
11
|
+
- Added custom `build_access_token` method to properly handle DNSimple's OAuth2 token endpoint requirements
|
12
|
+
- Fixed compatibility with DNSimple's OAuth2 implementation
|
13
|
+
|
8
14
|
## [0.1.0] - 2024-03-29
|
9
15
|
|
10
16
|
### Added
|
@@ -1,6 +1,8 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
3
|
require "omniauth-oauth2"
|
4
|
+
require "net/http"
|
5
|
+
require "json"
|
4
6
|
|
5
7
|
module OmniAuth
|
6
8
|
module Strategies
|
@@ -54,8 +56,8 @@ module OmniAuth
|
|
54
56
|
options[:redirect_uri] || (full_host + callback_path)
|
55
57
|
end
|
56
58
|
|
57
|
-
#
|
58
|
-
# when we don't have a client_id or secret
|
59
|
+
# Override method in OmniAuth::Strategies::OAuth2 to error
|
60
|
+
# when we don't have a client_id or secret
|
59
61
|
def request_phase
|
60
62
|
if missing_client_id?
|
61
63
|
fail!(:missing_client_id)
|
@@ -65,6 +67,37 @@ module OmniAuth
|
|
65
67
|
super
|
66
68
|
end
|
67
69
|
end
|
70
|
+
|
71
|
+
# Override the build_access_token method to manually handle the token request
|
72
|
+
def build_access_token
|
73
|
+
code = request.params['code']
|
74
|
+
state = request.params['state']
|
75
|
+
|
76
|
+
# Create the token request manually
|
77
|
+
uri = URI.parse(options.client_options.token_url)
|
78
|
+
http = Net::HTTP.new(uri.host, uri.port)
|
79
|
+
http.use_ssl = true
|
80
|
+
|
81
|
+
request = Net::HTTP::Post.new(uri.path)
|
82
|
+
request.set_form_data({
|
83
|
+
'grant_type' => 'authorization_code',
|
84
|
+
'client_id' => options.client_id,
|
85
|
+
'client_secret' => options.client_secret,
|
86
|
+
'code' => code,
|
87
|
+
'redirect_uri' => callback_url,
|
88
|
+
'state' => state
|
89
|
+
})
|
90
|
+
|
91
|
+
response = http.request(request)
|
92
|
+
|
93
|
+
if response.code.to_i == 200
|
94
|
+
data = JSON.parse(response.body)
|
95
|
+
::OAuth2::AccessToken.from_hash(client, data)
|
96
|
+
else
|
97
|
+
error_msg = "Failed to get access token: #{response.code} - #{response.body}"
|
98
|
+
raise ::OAuth2::Error.new(OpenStruct.new(status: response.code, body: response.body))
|
99
|
+
end
|
100
|
+
end
|
68
101
|
|
69
102
|
private
|
70
103
|
|