omniauth-dnsimple 0.1.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 ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 161b5f083454c753efba2d266b22af6947bb17bdb31761f89993fd492f75e0e9
4
+ data.tar.gz: 75aa71c0b063f1a57454b5bc68678c1f4f9c3d39a9989d5fd67295a9345fb48f
5
+ SHA512:
6
+ metadata.gz: d96bc47aef3330b29bae7bfa3d765ab4c3c4a7858356e9851bb34b9607bf8001660c188e0e60575058e5b56fd978312e1df73d53986e1ea040fa946a78b7e8cb
7
+ data.tar.gz: 521f4a3f60795da60d6ec1bc9ee35cb769b70d08f104656ceb9f7ecf2f4c0a72a668a24a4465ec337f62119a9e24e2ea712b890bf2ddc8f4316293600e00c8ca
data/CHANGELOG.md ADDED
@@ -0,0 +1,13 @@
1
+ # Changelog
2
+
3
+ All notable changes to this project will be documented in this file.
4
+
5
+ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
+ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
+
8
+ ## [0.1.0] - 2024-03-29
9
+
10
+ ### Added
11
+ - Initial release
12
+ - Basic OmniAuth strategy for DNSimple OAuth2 authentication
13
+ - Support for fetching account information through the DNSimple API
data/LICENSE.txt ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2024 Jonathan Siegel
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,93 @@
1
+ # OmniAuth DNSimple
2
+
3
+ This is an UNOFFICIAL OmniAuth strategy for authenticating to DNSimple. To use it, you'll need to sign up for an OAuth2 Application ID and Secret on the [DNSimple website](https://dnsimple.com).
4
+
5
+ ## Installation
6
+
7
+ Add this line to your application's Gemfile:
8
+
9
+ ```ruby
10
+ gem 'omniauth-dnsimple'
11
+ ```
12
+
13
+ And then execute:
14
+
15
+ ```
16
+ $ bundle install
17
+ ```
18
+
19
+ Or install it yourself as:
20
+
21
+ ```
22
+ $ gem install omniauth-dnsimple
23
+ ```
24
+
25
+ ## Usage
26
+
27
+ ```ruby
28
+ use OmniAuth::Builder do
29
+ provider :dnsimple, ENV['DNSIMPLE_CLIENT_ID'], ENV['DNSIMPLE_CLIENT_SECRET']
30
+ end
31
+ ```
32
+
33
+ ### Configuring
34
+
35
+ You can configure several options, which you pass in to the `provider` method via a hash:
36
+
37
+ * `fetch_info`: When set to `true`, the strategy will make an additional API call to get the account information. Defaults to `true`.
38
+
39
+ For example:
40
+
41
+ ```ruby
42
+ use OmniAuth::Builder do
43
+ provider :dnsimple, ENV['DNSIMPLE_CLIENT_ID'], ENV['DNSIMPLE_CLIENT_SECRET'],
44
+ fetch_info: false
45
+ end
46
+ ```
47
+
48
+ ### Authentication Hash
49
+
50
+ An example auth hash available in `request.env['omniauth.auth']`:
51
+
52
+ ```ruby
53
+ {
54
+ "provider" => "dnsimple",
55
+ "uid" => "123456",
56
+ "info" => {
57
+ "name" => "user@example.com",
58
+ "email" => "user@example.com"
59
+ },
60
+ "credentials" => {
61
+ "token" => "a1b2c3d4e5f6g7h8i9j0", # The OAuth 2.0 access token
62
+ "refresh_token" => "1a2b3c4d5e6f7g8h9i0j", # The OAuth 2.0 refresh token
63
+ "expires_at" => 1496120719, # The time the token expires as a unix timestamp
64
+ "expires" => true # A boolean for whether the token expires
65
+ },
66
+ "extra" => {
67
+ "raw_info" => {
68
+ "data" => {
69
+ "user" => {
70
+ "id" => 1234,
71
+ "email" => "user@example.com"
72
+ },
73
+ "account" => {
74
+ "id" => 123456,
75
+ "email" => "user@example.com"
76
+ }
77
+ }
78
+ }
79
+ }
80
+ }
81
+ ```
82
+
83
+ ## Development
84
+
85
+ After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests.
86
+
87
+ ## Contributing
88
+
89
+ Bug reports and pull requests are welcome on GitHub at https://github.com/usiegj00/omniauth-dnsimple.
90
+
91
+ ## License
92
+
93
+ The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
@@ -0,0 +1,7 @@
1
+ # frozen_string_literal: true
2
+
3
+ module OmniAuth
4
+ module DNSimple
5
+ VERSION = "0.1.0"
6
+ end
7
+ end
@@ -0,0 +1,86 @@
1
+ # frozen_string_literal: true
2
+
3
+ require "omniauth-oauth2"
4
+
5
+ module OmniAuth
6
+ module Strategies
7
+ class DNSimple < OmniAuth::Strategies::OAuth2
8
+ option :name, :dnsimple
9
+
10
+ # This allows overriding the OAuth endpoints via environment variables
11
+ AUTH_URL = ENV.fetch("DNSIMPLE_AUTH_URL", "https://dnsimple.com")
12
+ API_URL = ENV.fetch("DNSIMPLE_API_URL", "https://api.dnsimple.com")
13
+
14
+ private_constant :AUTH_URL, :API_URL
15
+
16
+ option :client_options, {
17
+ site: API_URL,
18
+ authorize_url: "#{AUTH_URL}/oauth/authorize",
19
+ token_url: "#{API_URL}/v2/oauth/access_token"
20
+ }
21
+
22
+ option :token_method, :post
23
+ option :auth_scheme, :request_body
24
+ option :client_params_in_body, true
25
+
26
+ # Configure whether we make another API call to DNSimple to fetch
27
+ # additional account info
28
+ option :fetch_info, true
29
+
30
+ uid do
31
+ access_token.params["account_id"] || (raw_info["data"]["account"]["id"].to_s if raw_info.dig("data", "account"))
32
+ end
33
+
34
+ info do
35
+ if options.fetch_info && raw_info.dig("data", "account")
36
+ {
37
+ name: raw_info["data"]["account"]["email"],
38
+ email: raw_info["data"]["account"]["email"]
39
+ }
40
+ else
41
+ { name: "DNSimple user" } # only mandatory field
42
+ end
43
+ end
44
+
45
+ extra do
46
+ if options.fetch_info
47
+ { raw_info: raw_info }
48
+ else
49
+ {}
50
+ end
51
+ end
52
+
53
+ def callback_url
54
+ options[:redirect_uri] || (full_host + callback_path)
55
+ end
56
+
57
+ # override method in OmniAuth::Strategies::OAuth2 to error
58
+ # when we don't have a client_id or secret:
59
+ def request_phase
60
+ if missing_client_id?
61
+ fail!(:missing_client_id)
62
+ elsif missing_client_secret?
63
+ fail!(:missing_client_secret)
64
+ else
65
+ super
66
+ end
67
+ end
68
+
69
+ private
70
+
71
+ def raw_info
72
+ @raw_info ||= access_token.get('v2/whoami').parsed
73
+ rescue StandardError
74
+ {}
75
+ end
76
+
77
+ def missing_client_id?
78
+ [nil, ""].include?(options.client_id)
79
+ end
80
+
81
+ def missing_client_secret?
82
+ [nil, ""].include?(options.client_secret)
83
+ end
84
+ end
85
+ end
86
+ end
@@ -0,0 +1,3 @@
1
+ # frozen_string_literal: true
2
+
3
+ require "omniauth/strategies/dnsimple"
metadata ADDED
@@ -0,0 +1,122 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: omniauth-dnsimple
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Jonathan Siegel
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2025-03-29 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: omniauth-oauth2
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '1.7'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '1.7'
27
+ - !ruby/object:Gem::Dependency
28
+ name: bundler
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '2.0'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '2.0'
41
+ - !ruby/object:Gem::Dependency
42
+ name: rake
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '13.0'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '13.0'
55
+ - !ruby/object:Gem::Dependency
56
+ name: rspec
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - "~>"
60
+ - !ruby/object:Gem::Version
61
+ version: '3.0'
62
+ type: :development
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - "~>"
67
+ - !ruby/object:Gem::Version
68
+ version: '3.0'
69
+ - !ruby/object:Gem::Dependency
70
+ name: webmock
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - "~>"
74
+ - !ruby/object:Gem::Version
75
+ version: '3.0'
76
+ type: :development
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - "~>"
81
+ - !ruby/object:Gem::Version
82
+ version: '3.0'
83
+ description: OmniAuth strategy for authenticating with DNSimple via OAuth2
84
+ email:
85
+ - usiegj00@no-spam-please.com
86
+ executables: []
87
+ extensions: []
88
+ extra_rdoc_files: []
89
+ files:
90
+ - CHANGELOG.md
91
+ - LICENSE.txt
92
+ - README.md
93
+ - lib/omniauth-dnsimple.rb
94
+ - lib/omniauth/dnsimple/version.rb
95
+ - lib/omniauth/strategies/dnsimple.rb
96
+ homepage: https://github.com/usiegj00/omniauth-dnsimple
97
+ licenses:
98
+ - MIT
99
+ metadata:
100
+ homepage_uri: https://github.com/usiegj00/omniauth-dnsimple
101
+ source_code_uri: https://github.com/usiegj00/omniauth-dnsimple
102
+ changelog_uri: https://github.com/usiegj00/omniauth-dnsimple/blob/main/CHANGELOG.md
103
+ post_install_message:
104
+ rdoc_options: []
105
+ require_paths:
106
+ - lib
107
+ required_ruby_version: !ruby/object:Gem::Requirement
108
+ requirements:
109
+ - - ">="
110
+ - !ruby/object:Gem::Version
111
+ version: 2.6.0
112
+ required_rubygems_version: !ruby/object:Gem::Requirement
113
+ requirements:
114
+ - - ">="
115
+ - !ruby/object:Gem::Version
116
+ version: '0'
117
+ requirements: []
118
+ rubygems_version: 3.5.16
119
+ signing_key:
120
+ specification_version: 4
121
+ summary: OmniAuth strategy for DNSimple
122
+ test_files: []