action_auth 1.4.2 → 1.5.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: bd82e71b203279a24d5a44196f1e9df519ef646f611f4b1ff3ad7e6b8bc043a9
4
- data.tar.gz: d4df3340ffdcaa481b49f5e8518a2720b7bec664d2daf47a3c3d594e8a06215a
3
+ metadata.gz: beb1aed113f8cce08b4e352b8d5d7f652b89a10cbf7ef7470c871da89b9346fc
4
+ data.tar.gz: f1ec6c10834bde54f5edbd1b473b72c55a8929cd9e8674c1f416bc1d70213a6d
5
5
  SHA512:
6
- metadata.gz: 4c02bbf9ea57e5361291a20c6c36a1ad994dfec332eecb50c562380041388f74923b2bb7f227ed835e03e5317e7668485c4229349cb752d94b7585830341ac1e
7
- data.tar.gz: a6cce71017754f203e43c231a3e604836c904475d899f8a02347a347dcd77b1f3ee27de50a78b1f5c8f6c19eb8bbc54f62e83fab3beb5c596318dfb88fd9d0b6
6
+ metadata.gz: 53abcdf203341654f8a1c63decdd54d6e06b1457b2de13e0a11f9c8e3243900a14cc04a661b727c6dedda4a81c61bbf4dd10efdea70d259be40be844cd4e5c36
7
+ data.tar.gz: 0d5ddeea817b8daeb0392c956aa3bd4e05c645d5b58333353b7854a9751f1a64913e0f7c3f29a32d8f14c9d449f4c325c3be4db8bd18e0089dd158782ffdbe75
data/README.md CHANGED
@@ -103,8 +103,9 @@ ActionAuth.configure do |config|
103
103
  config.default_from_email = "from@example.com"
104
104
  config.magic_link_enabled = true
105
105
  config.passkey_only = true # Allows sign in with only a passkey
106
+ config.pwned_enabled = true # defined?(Pwned)
106
107
  config.verify_email_on_sign_in = true
107
- config.webauthn_enabled = true
108
+ config.webauthn_enabled = true # defined?(WebAuthn)
108
109
  config.webauthn_origin = "http://localhost:3000" # or "https://example.com"
109
110
  config.webauthn_rp_name = Rails.application.class.to_s.deconstantize
110
111
  end
@@ -38,7 +38,8 @@ class ActionAuth::WebauthnCredentialsController < ApplicationController
38
38
  external_id: webauthn_credential.id,
39
39
  nickname: params[:credential_nickname],
40
40
  public_key: webauthn_credential.public_key,
41
- sign_count: webauthn_credential.sign_count
41
+ sign_count: webauthn_credential.sign_count,
42
+ key_type: key_type
42
43
  )
43
44
 
44
45
  if credential.save
@@ -57,4 +58,27 @@ class ActionAuth::WebauthnCredentialsController < ApplicationController
57
58
 
58
59
  redirect_to sessions_path
59
60
  end
61
+
62
+ private
63
+
64
+ def key_type
65
+ transports = params.dig(:response, :transports)
66
+ return :unknown unless transports.present?
67
+
68
+ transport_types = {
69
+ ["internal", "hybrid"] => :passkey,
70
+ ["usb", "nfc"] => :hardware,
71
+ ["bluetooth", "wireless"] => :wireless,
72
+ }.freeze
73
+
74
+ transport_types.each do |keys, type|
75
+ if transports.is_a?(String)
76
+ return type if keys.include?(transports)
77
+ elsif transports.is_a?(Array)
78
+ return type if (keys & transports).any?
79
+ end
80
+ end
81
+
82
+ :unknown
83
+ end
60
84
  end
@@ -10,5 +10,12 @@ module ActionAuth
10
10
  greater_than_or_equal_to: 0,
11
11
  less_than_or_equal_to: 2**32 - 1
12
12
  }
13
+
14
+ enum :key_type, {
15
+ unknown: 0,
16
+ passkey: 1,
17
+ hardware: 2,
18
+ wireless: 3
19
+ }
13
20
  end
14
21
  end
@@ -36,6 +36,7 @@
36
36
  <thead>
37
37
  <tr>
38
38
  <th>Key</th>
39
+ <th>Type</th>
39
40
  <th nowrap>Registered On</th>
40
41
  <th nowrap></th>
41
42
  </tr>
@@ -44,6 +45,7 @@
44
45
  <% current_user.webauthn_credentials.each do |credential| %>
45
46
  <%= content_tag :tr, id: dom_id(credential) do %>
46
47
  <td><%= credential.nickname %></td>
48
+ <td><%= credential.key_type %></td>
47
49
  <td nowrap><%= credential.created_at.strftime('%B %d, %Y') %></td>
48
50
  <td nowrap><%= button_to "Delete", credential, method: :delete, class: "btn btn-primary" %></td>
49
51
  <% end %>
@@ -10,7 +10,7 @@
10
10
  class: "action-auth--text-center" do %>
11
11
 
12
12
  <div class="mb-3 action-auth--text-center">
13
- Insert a USB key, if necessary, and tap it.
13
+ You must use a passkey, not a hardware key, to sign in.
14
14
  An account with a matching passkey is required.
15
15
  </div>
16
16
  <% end %>
@@ -0,0 +1,5 @@
1
+ class AddTypeToWebauthnCredentials < ActiveRecord::Migration[7.2]
2
+ def change
3
+ add_column :webauthn_credentials, :key_type, :integer, default: 0, limit: 2
4
+ end
5
+ end
@@ -4,6 +4,8 @@ module ActionAuth
4
4
  attr_accessor :allow_user_deletion
5
5
  attr_accessor :default_from_email
6
6
  attr_accessor :magic_link_enabled
7
+ attr_accessor :passkey_only
8
+ attr_accessor :pwned_enabled
7
9
  attr_accessor :verify_email_on_sign_in
8
10
  attr_accessor :webauthn_enabled
9
11
  attr_accessor :webauthn_origin
@@ -1,3 +1,3 @@
1
1
  module ActionAuth
2
- VERSION = "1.4.2"
2
+ VERSION = "1.5.0"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: action_auth
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.4.2
4
+ version: 1.5.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Dave Kimura
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-08-16 00:00:00.000000000 Z
11
+ date: 2024-08-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails
@@ -98,6 +98,7 @@ files:
98
98
  - db/migrate/20231107170349_create_action_auth_sessions.rb
99
99
  - db/migrate/20240111125859_add_webauthn_credentials.rb
100
100
  - db/migrate/20240111142545_add_webauthn_id_to_users.rb
101
+ - db/migrate/20240818032321_add_type_to_webauthn_credentials.rb
101
102
  - lib/action_auth.rb
102
103
  - lib/action_auth/configuration.rb
103
104
  - lib/action_auth/controllers/helpers.rb