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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 161b5f083454c753efba2d266b22af6947bb17bdb31761f89993fd492f75e0e9
4
- data.tar.gz: 75aa71c0b063f1a57454b5bc68678c1f4f9c3d39a9989d5fd67295a9345fb48f
3
+ metadata.gz: 6d8cbf3129f4fe5f435bdd5d65806f02e5b48120a0d7d46295605c953bbfbc81
4
+ data.tar.gz: 844becef40978d7b123b1306f0ea5826bb203eddfa1d79988e4179415e15a247
5
5
  SHA512:
6
- metadata.gz: d96bc47aef3330b29bae7bfa3d765ab4c3c4a7858356e9851bb34b9607bf8001660c188e0e60575058e5b56fd978312e1df73d53986e1ea040fa946a78b7e8cb
7
- data.tar.gz: 521f4a3f60795da60d6ec1bc9ee35cb769b70d08f104656ceb9f7ecf2f4c0a72a668a24a4465ec337f62119a9e24e2ea712b890bf2ddc8f4316293600e00c8ca
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
@@ -2,6 +2,6 @@
2
2
 
3
3
  module OmniAuth
4
4
  module DNSimple
5
- VERSION = "0.1.0"
5
+ VERSION = "0.1.1"
6
6
  end
7
7
  end
@@ -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
- # override method in OmniAuth::Strategies::OAuth2 to error
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
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: omniauth-dnsimple
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jonathan Siegel