card-mod-api_key 0.11.6 → 0.13.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/lib/card/auth/api_key.rb +5 -5
- data/lib/card_controller/api_key.rb +12 -0
- metadata +8 -8
- data/config/initializers/api_key.rb +0 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a0e3b0ab4b54b222a7dc8622dd8ad53913c38628b7380a80c3ae9c4df619d893
|
4
|
+
data.tar.gz: af7b2172397d7b3b9587af970476f83436c5b5e49b091eac3c70d119a4be8fb7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9e610c8a2fc29a2fb4c0abf5116bcb84179bb66ae7165deb89ca169d8b384692b8ca2b846970a83390e02f25db965a8c1d53e709da72b70cfe6fa886a8682d56
|
7
|
+
data.tar.gz: 8028eca001724402fd1db6ba2936e5ec75d0f01c5650d002dc0d6d7088838e3b477b2c29c893e6065baa52b033b989fbea1964d2cb0e418de57daffab7f9c4a0
|
data/lib/card/auth/api_key.rb
CHANGED
@@ -4,11 +4,11 @@ class Card
|
|
4
4
|
module Auth
|
5
5
|
# methods for setting current account
|
6
6
|
module ApiKey
|
7
|
-
def signin_with
|
8
|
-
if
|
9
|
-
signin_with_token
|
10
|
-
elsif
|
11
|
-
signin_with_api_key
|
7
|
+
def signin_with token: nil, api_key: nil
|
8
|
+
if token
|
9
|
+
signin_with_token token
|
10
|
+
elsif api_key
|
11
|
+
signin_with_api_key api_key
|
12
12
|
else
|
13
13
|
signin_with_session
|
14
14
|
end
|
@@ -0,0 +1,12 @@
|
|
1
|
+
class CardController
|
2
|
+
# add support for passing api key through header using X-API-Key
|
3
|
+
module ApiKey
|
4
|
+
def authenticators
|
5
|
+
super.merge api_key: api_key_from_header || params[:api_key]
|
6
|
+
end
|
7
|
+
|
8
|
+
def api_key_from_header
|
9
|
+
request.headers["X-API-Key"]
|
10
|
+
end
|
11
|
+
end
|
12
|
+
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: card-mod-api_key
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.13.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Ethan McCutchen
|
@@ -10,7 +10,7 @@ authors:
|
|
10
10
|
autorequire:
|
11
11
|
bindir: bin
|
12
12
|
cert_chain: []
|
13
|
-
date: 2021-
|
13
|
+
date: 2021-08-06 00:00:00.000000000 Z
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: card
|
@@ -18,28 +18,28 @@ dependencies:
|
|
18
18
|
requirements:
|
19
19
|
- - '='
|
20
20
|
- !ruby/object:Gem::Version
|
21
|
-
version: 1.
|
21
|
+
version: 1.103.1
|
22
22
|
type: :runtime
|
23
23
|
prerelease: false
|
24
24
|
version_requirements: !ruby/object:Gem::Requirement
|
25
25
|
requirements:
|
26
26
|
- - '='
|
27
27
|
- !ruby/object:Gem::Version
|
28
|
-
version: 1.
|
28
|
+
version: 1.103.1
|
29
29
|
- !ruby/object:Gem::Dependency
|
30
30
|
name: card-mod-account
|
31
31
|
requirement: !ruby/object:Gem::Requirement
|
32
32
|
requirements:
|
33
33
|
- - '='
|
34
34
|
- !ruby/object:Gem::Version
|
35
|
-
version: 0.
|
35
|
+
version: 0.13.1
|
36
36
|
type: :runtime
|
37
37
|
prerelease: false
|
38
38
|
version_requirements: !ruby/object:Gem::Requirement
|
39
39
|
requirements:
|
40
40
|
- - '='
|
41
41
|
- !ruby/object:Gem::Version
|
42
|
-
version: 0.
|
42
|
+
version: 0.13.1
|
43
43
|
description: ''
|
44
44
|
email:
|
45
45
|
- info@decko.org
|
@@ -48,8 +48,8 @@ extensions: []
|
|
48
48
|
extra_rdoc_files: []
|
49
49
|
files:
|
50
50
|
- README.md
|
51
|
-
- config/initializers/api_key.rb
|
52
51
|
- lib/card/auth/api_key.rb
|
52
|
+
- lib/card_controller/api_key.rb
|
53
53
|
- set/right/account.rb
|
54
54
|
- set/right/api_key.rb
|
55
55
|
- set/right/api_key/core.haml
|
@@ -78,7 +78,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
78
78
|
- !ruby/object:Gem::Version
|
79
79
|
version: '0'
|
80
80
|
requirements: []
|
81
|
-
rubygems_version: 3.1.
|
81
|
+
rubygems_version: 3.1.6
|
82
82
|
signing_key:
|
83
83
|
specification_version: 4
|
84
84
|
summary: API Keys and JWT Tokens for Decko
|