ruby_auth_metamask 0.2.1 → 0.2.2

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: cb5e4bf73f7fdda470104808479940ea4e819fe158b128b0942ad45d1a4be3ca
4
- data.tar.gz: 3d58e18914600f5f0e047636c9bba4b6e23cd1fd88dc367ebb86fc0fe965b501
3
+ metadata.gz: 7e2cc3b6a68a74762666a04252d3d5a23d281e801d80c223a177b6a938cd11aa
4
+ data.tar.gz: e64cde1c81ab86992ecc32b8d036df869f803c8326d8998b4f7498e128a99d3f
5
5
  SHA512:
6
- metadata.gz: ed3527440701177de6bd46563b950de79b35529d7a6e154c83c064a52193d3bca642ff9261063cc969579b283d1ac98100f7f8fd5bfa6282b09dcc0d47db045b
7
- data.tar.gz: e4bfa9c34243717186d3ab590c816419dc71c284b8f344f7b4e07ab0b690c684ebe27a2fd1c642526fcaf283956e53799c898028546af02239b6f52a81e71dd8
6
+ metadata.gz: d100ac935ab0e6d1cfbe8b3bd5f18492976e2ec6eb5b3c35dbf79a4be92bbb0de2a32551942826debb7f9cdd18955c16426f93d2dea3ef3f27d28a8d791f00ff
7
+ data.tar.gz: debb6362a788d145225c6df49ba5c58003c0b68fdced97b963b604604ceb9442f8d69464f0cb9200338e1f1f27a047ea3948457de660543baa2f3992438dec37
@@ -44,11 +44,11 @@ module RubyAuthMetamask
44
44
  end
45
45
 
46
46
  valid = ECDSA.valid_signature?(public_key, hash, my_signature.sig_obj) rescue false
47
- if valid
48
- redirect_to main_app.root_path, notice: 'User authenticated successfully'
49
- else
50
- redirect_to main_app.root_path, notice: 'User authentication failed'
51
- end
47
+ redirect_to main_app.root_path, notice: 'User authentication failed' unless valid
48
+
49
+ user = User.find_by_address(address) || User.create(address: address)
50
+ session[:user_id] = user.id
51
+ redirect_to main_app.root_path, notice: 'User authentication succeeded' unless valid
52
52
  end
53
53
 
54
54
  private
@@ -1,3 +1,3 @@
1
1
  module RubyAuthMetamask
2
- VERSION = "0.2.1"
2
+ VERSION = "0.2.2"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ruby_auth_metamask
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.1
4
+ version: 0.2.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ethan Zhang
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-12-17 00:00:00.000000000 Z
11
+ date: 2023-12-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails