yol_sso 0.0.1 → 0.0.5

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: 061fba38ddccfb3737e87608089ff75e37b7b0288e0b34b150b6011b2dfbbf40
4
- data.tar.gz: 36924d8292b0d51261fb5d71800c3a1fc4790f57f65f297e85c0ac4274337ee6
3
+ metadata.gz: 26e95f47359ecdda76ad7f20dfc4c134ca27c2b852a8bd6f8cbceeb0309facdc
4
+ data.tar.gz: 286172be2d32056ec339fd997cfc6e7d6503effbb159063cb364cf07973e2e84
5
5
  SHA512:
6
- metadata.gz: 4aa0e69e03cf2a4951b73b5019234ea9f3cf455879582ef4f122c6c87f30e2860b7143f3fa9e3e49ebf6aefaaafafc0f12dd3e69d157d2c0a2a4d26630ff02d7
7
- data.tar.gz: 9f5bf41f3f012d059af1c7dc64f19de2a56fc9fcaef5ac4c612478781140514a46f797953ccc90afb27bfd241289f0315cefa154bc4634e92dd3bc01f397f8f9
6
+ metadata.gz: b695124fa047a2003df9e53e5c4c810b616c8b457307e00642ce471004c517107e7399f05561636a0d7841d88c175b91f3859dd990689998fad68b416164d445
7
+ data.tar.gz: 12bf5d2ce0c9baa518ec5b5624098938376af85f66765580d4051a6c0df34ada68c020224f518d8354e8a828d79ddc4c0ffae312e313d7155719351e04b193e7
data/.gitignore ADDED
@@ -0,0 +1,68 @@
1
+ .idea
2
+ *.gem
3
+ *.rbc
4
+ *.DS_Store
5
+ *.swp
6
+ Gemfile.lock
7
+ GemfileLocal
8
+ GemfileLocal.lock
9
+
10
+ # Ignore all logfiles and tempfiles.
11
+ /log/*
12
+ /tmp/*
13
+ !/log/.keep
14
+ !/tmp/.keep
15
+
16
+ # TODO Comment out this rule if you are OK with secrets being uploaded to the repo
17
+ config/initializers/secret_token.rb
18
+ config/master.key
19
+
20
+ # Only include if you have production secrets in this file, which is no longer a Rails default
21
+ # config/secrets.yml
22
+
23
+ # dotenv
24
+ # TODO Comment out this rule if environment variables can be committed
25
+ .env
26
+
27
+ ## Environment normalization:
28
+ /.bundle
29
+ /vendor/bundle
30
+
31
+ # these should all be checked in to normalize the environment:
32
+ # Gemfile.lock, .ruby-version, .ruby-gemset
33
+
34
+ # unless supporting rvm < 1.11.0 or doing something fancy, ignore this:
35
+ .rvmrc
36
+
37
+ # if using bower-rails ignore default bower_components path bower.json files
38
+ /vendor/assets/bower_components
39
+ *.bowerrc
40
+ bower.json
41
+
42
+ # Ignore pow environment settings
43
+ .powenv
44
+
45
+ # Ignore Byebug command history file.
46
+ .byebug_history
47
+
48
+ # Ignore node_modules
49
+ node_modules/
50
+
51
+ # Ignore precompiled javascript packs
52
+ /public/packs
53
+ /public/packs-test
54
+ /public/assets
55
+
56
+ # Ignore yarn files
57
+ /yarn-error.log
58
+ yarn-debug.log*
59
+ .yarn-integrity
60
+
61
+ # Ignore uploaded files in development
62
+ /storage/*
63
+ !/storage/.keep
64
+
65
+
66
+
67
+
68
+
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- yol_sso (0.0.1)
4
+ yol_sso (0.0.5)
5
5
  multi_xml
6
6
  nokogiri
7
7
  roxml
@@ -20,7 +20,7 @@ GEM
20
20
  concurrent-ruby (~> 1.0)
21
21
  minitest (5.14.4)
22
22
  multi_xml (0.6.0)
23
- nokogiri (1.11.7-x86_64-darwin)
23
+ nokogiri (1.12.4-x86_64-darwin)
24
24
  racc (~> 1.4)
25
25
  racc (1.5.2)
26
26
  rake (13.0.1)
@@ -1,19 +1,19 @@
1
1
  require "monitor"
2
2
  require "redis"
3
3
  require 'digest/md5'
4
- module YolSso
4
+ module YolSso
5
5
  class Client
6
6
 
7
7
  include Connection::Base
8
8
  include Connection::Message
9
+ include Connection::User
9
10
 
10
- attr_accessor :host
11
-
12
- attr_accessor :agentid
11
+ attr_accessor :host, :agentid, :redis
13
12
 
14
13
  def initialize(options = {})
15
- @host = options[:host] || Sso.configuration.host
16
- @agentid = options[:agentid] || Sso.configuration.agentid
14
+ @host = options[:host] || YolSso.configuration.host
15
+ @agentid = options[:agentid] || YolSso.configuration.agentid
16
+ @redis = options[:redis] || YolSso.configuration.redis
17
17
  end
18
18
  end
19
- end
19
+ end
@@ -5,11 +5,19 @@ module YolSso
5
5
  http_post(send_url, body.merge("agentid": agentid))
6
6
  end
7
7
 
8
+ def deal_message(body)
9
+ http_post(deal_url, body.merge("agentid": agentid))
10
+ end
11
+
8
12
  private
9
13
 
10
14
  def send_url
11
15
  "#{host}messages"
12
16
  end
17
+
18
+ def deal_url
19
+ "#{host}messages/deal"
20
+ end
13
21
  end
14
22
  end
15
23
  end
@@ -0,0 +1,23 @@
1
+ module YolSso
2
+ module Connection
3
+ module User
4
+ def get_user(userid)
5
+ JSON.parse(redis.get("userinfo_#{userid}")) rescue nil
6
+ end
7
+
8
+ def get_menus(userid)
9
+ JSON.parse(redis.get("menus_#{agentid}_#{userid}")) rescue nil
10
+ end
11
+
12
+ def get_apli_list(userid)
13
+ JSON.parse(redis.get("accesses_#{agentid}_#{userid}")) rescue nil
14
+ end
15
+
16
+ private
17
+
18
+ def send_url
19
+ "#{host}messages"
20
+ end
21
+ end
22
+ end
23
+ end
@@ -1,11 +1,13 @@
1
1
  module YolSso
2
2
  class Configuration
3
3
 
4
- OPTIONS = [:host, :agentid].freeze
4
+ OPTIONS = [:host, :agentid, :redis].freeze
5
5
 
6
6
  attr_accessor :host
7
7
 
8
8
  attr_accessor :agentid
9
9
 
10
+ attr_accessor :redis
11
+
10
12
  end
11
13
  end
@@ -1,3 +1,3 @@
1
1
  module YolSso
2
- VERSION = "0.0.1"
2
+ VERSION = "0.0.5"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: yol_sso
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.0.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - luojie
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-06-28 00:00:00.000000000 Z
11
+ date: 2021-09-09 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -88,6 +88,7 @@ extensions: []
88
88
  extra_rdoc_files: []
89
89
  files:
90
90
  - ".DS_Store"
91
+ - ".gitignore"
91
92
  - Gemfile
92
93
  - Gemfile.lock
93
94
  - LICENSE.txt
@@ -98,6 +99,7 @@ files:
98
99
  - lib/yol_sso/connection.rb
99
100
  - lib/yol_sso/connections/base.rb
100
101
  - lib/yol_sso/connections/message.rb
102
+ - lib/yol_sso/connections/user.rb
101
103
  - lib/yol_sso/helpers/pkcs7_encoder.rb
102
104
  - lib/yol_sso/helpers/prpcrypt.rb
103
105
  - lib/yol_sso/models/configuration.rb