uc3-dmp-rds 0.0.13 → 0.0.14
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/uc3-dmp-rds/authenticator.rb +0 -11
- data/lib/uc3-dmp-rds/version.rb +1 -1
- data/lib/uc3-dmp-rds.rb +1 -0
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2c9f10b6b78954c6bdeef8a1bc50443c634c8c571bdfe9aac7bc4d923f00c508
|
4
|
+
data.tar.gz: eee363480691189deca29ce254a2e0df7fbb6221d93c1de3d66f99e993bc8c52
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e51984f58f45f27f50313f48c3a055ea45eb9259d9928bc8d362b0823f4e290d3c64e136a8aff913c1c68788eb4787e96886fc5760fd896d9be0a5bacc554060
|
7
|
+
data.tar.gz: 0ee0de19a875ef4e317d817e9dbf14ade1e3be187297de10caa315d9d3059e3d6e7bd00d710329621f16e204933bc7ae9a5aa216d07e04a61eb4974fbbcc9aaa
|
@@ -14,17 +14,6 @@ module Uc3DmpRds
|
|
14
14
|
MSG_INACTIVE_USER = 'User is inactive'
|
15
15
|
|
16
16
|
class << self
|
17
|
-
# Retrieves the User API token from the headers
|
18
|
-
def token_from_headers(headers: {})
|
19
|
-
return nil unless headers.is_a?(Hash) && headers.keys.any?
|
20
|
-
|
21
|
-
authorization = json.select { |k, _v| k.downcase.strip == 'authorization' }
|
22
|
-
parts = authorization.split(' ')
|
23
|
-
return nil unless parts.first.downcase == 'token' && parts.length == 2
|
24
|
-
|
25
|
-
parts.last.strip
|
26
|
-
end
|
27
|
-
|
28
17
|
# Look up the user based on the API token. Will fail if Uc3DmpRds::Adapter does not
|
29
18
|
# have an established connection!
|
30
19
|
def authenticate(token:)
|
data/lib/uc3-dmp-rds/version.rb
CHANGED
data/lib/uc3-dmp-rds.rb
CHANGED