user_access_manager 0.1.0

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.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: da0bfe068f33d7ac47665128eb8ba9de9c8b3076
4
+ data.tar.gz: 6d72cf6bf45756521a8c4c12bbb160a693ffdd5b
5
+ SHA512:
6
+ metadata.gz: 506a70a2fc35f194eb7f9310655df6b1ef78dd0300067be67474b49bda4dc55294729fff5884f2eab9106c0b5c39a3df334a985868aec4250ca0645c54e17334
7
+ data.tar.gz: 412978e8c6612d2319ee92c623464a9789dfac4ea8f786dcf53506388abc84003ec7478b592a2cc4bb22aeab378dae4b46be46f74d158ee6284d3ebb05f5edd9
@@ -0,0 +1,11 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /_yardoc/
4
+ /coverage/
5
+ /doc/
6
+ /pkg/
7
+ /spec/reports/
8
+ /tmp/
9
+
10
+ # rspec failure tracking
11
+ .rspec_status
data/.rspec ADDED
@@ -0,0 +1,3 @@
1
+ --format documentation
2
+ --color
3
+ --require spec_helper
@@ -0,0 +1,6 @@
1
+ ---
2
+ language: ruby
3
+ cache: bundler
4
+ rvm:
5
+ - 2.3.4
6
+ before_install: gem install bundler -v 2.1.4
@@ -0,0 +1,74 @@
1
+ # Contributor Covenant Code of Conduct
2
+
3
+ ## Our Pledge
4
+
5
+ In the interest of fostering an open and welcoming environment, we as
6
+ contributors and maintainers pledge to making participation in our project and
7
+ our community a harassment-free experience for everyone, regardless of age, body
8
+ size, disability, ethnicity, gender identity and expression, level of experience,
9
+ nationality, personal appearance, race, religion, or sexual identity and
10
+ orientation.
11
+
12
+ ## Our Standards
13
+
14
+ Examples of behavior that contributes to creating a positive environment
15
+ include:
16
+
17
+ * Using welcoming and inclusive language
18
+ * Being respectful of differing viewpoints and experiences
19
+ * Gracefully accepting constructive criticism
20
+ * Focusing on what is best for the community
21
+ * Showing empathy towards other community members
22
+
23
+ Examples of unacceptable behavior by participants include:
24
+
25
+ * The use of sexualized language or imagery and unwelcome sexual attention or
26
+ advances
27
+ * Trolling, insulting/derogatory comments, and personal or political attacks
28
+ * Public or private harassment
29
+ * Publishing others' private information, such as a physical or electronic
30
+ address, without explicit permission
31
+ * Other conduct which could reasonably be considered inappropriate in a
32
+ professional setting
33
+
34
+ ## Our Responsibilities
35
+
36
+ Project maintainers are responsible for clarifying the standards of acceptable
37
+ behavior and are expected to take appropriate and fair corrective action in
38
+ response to any instances of unacceptable behavior.
39
+
40
+ Project maintainers have the right and responsibility to remove, edit, or
41
+ reject comments, commits, code, wiki edits, issues, and other contributions
42
+ that are not aligned to this Code of Conduct, or to ban temporarily or
43
+ permanently any contributor for other behaviors that they deem inappropriate,
44
+ threatening, offensive, or harmful.
45
+
46
+ ## Scope
47
+
48
+ This Code of Conduct applies both within project spaces and in public spaces
49
+ when an individual is representing the project or its community. Examples of
50
+ representing a project or community include using an official project e-mail
51
+ address, posting via an official social media account, or acting as an appointed
52
+ representative at an online or offline event. Representation of a project may be
53
+ further defined and clarified by project maintainers.
54
+
55
+ ## Enforcement
56
+
57
+ Instances of abusive, harassing, or otherwise unacceptable behavior may be
58
+ reported by contacting the project team at sk.mijanur.rahaman@mettletech.in. All
59
+ complaints will be reviewed and investigated and will result in a response that
60
+ is deemed necessary and appropriate to the circumstances. The project team is
61
+ obligated to maintain confidentiality with regard to the reporter of an incident.
62
+ Further details of specific enforcement policies may be posted separately.
63
+
64
+ Project maintainers who do not follow or enforce the Code of Conduct in good
65
+ faith may face temporary or permanent repercussions as determined by other
66
+ members of the project's leadership.
67
+
68
+ ## Attribution
69
+
70
+ This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4,
71
+ available at [https://contributor-covenant.org/version/1/4][version]
72
+
73
+ [homepage]: https://contributor-covenant.org
74
+ [version]: https://contributor-covenant.org/version/1/4/
data/Gemfile ADDED
@@ -0,0 +1,7 @@
1
+ source "https://rubygems.org"
2
+
3
+ # Specify your gem's dependencies in user_access_manager.gemspec
4
+ gemspec
5
+
6
+ gem "rake", "~> 12.0"
7
+ gem "rspec", "~> 3.0"
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2020 MijanurR
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
@@ -0,0 +1,54 @@
1
+ # UserAccessManager
2
+
3
+ Some time clients wants to restrict user from accessing the sensitive module/url of an application based on their roles. This gem serve this purpose very efficiently with minimal implementation.it mainly deals with the url pattern.
4
+
5
+ ## Installation
6
+
7
+ Add this line to your application's Gemfile:
8
+
9
+ ```ruby
10
+ gem 'user_access_manager'
11
+ ```
12
+
13
+ And then execute:
14
+
15
+ $ bundle install
16
+
17
+ Or install it yourself as:
18
+
19
+ $ gem install user_access_manager
20
+
21
+ ## Usage
22
+
23
+ In the Application controller add AccessPolicy module
24
+ ```include AccessPolicy```
25
+ define a yml under config and named it as ``access_policies.yml``. (you can download sample file here)
26
+ define a custom method in Application controller.
27
+ ```
28
+ def authorize_user_access
29
+ user_role = <get user role from current user>
30
+ authorize_access(user_role)
31
+ end
32
+
33
+ ```
34
+
35
+ apply before_action on the action that you are going to restrict
36
+ ``` before_action :authorize_user_access ```
37
+
38
+
39
+
40
+
41
+
42
+
43
+ ## Contributing
44
+
45
+ Bug reports and pull requests are welcome on GitHub at https://github.com/MijanurR/user_access_manager. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [code of conduct](https://github.com/MijanurR/user_access_manager/blob/master/CODE_OF_CONDUCT.md).
46
+
47
+
48
+ ## License
49
+
50
+ The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
51
+
52
+ ## Code of Conduct
53
+
54
+ Everyone interacting in the UserAccessManager project's codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/MijanurR/user_access_manager/blob/master/CODE_OF_CONDUCT.md).
@@ -0,0 +1,6 @@
1
+ require "bundler/gem_tasks"
2
+ require "rspec/core/rake_task"
3
+
4
+ RSpec::Core::RakeTask.new(:spec)
5
+
6
+ task :default => :spec
@@ -0,0 +1,14 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require "bundler/setup"
4
+ require "user_access_manager"
5
+
6
+ # You can add fixtures and/or initialization code here to make experimenting
7
+ # with your gem easier. You can also use a different console, if you like.
8
+
9
+ # (If you use this, don't forget to add pry to your Gemfile!)
10
+ # require "pry"
11
+ # Pry.start
12
+
13
+ require "irb"
14
+ IRB.start(__FILE__)
@@ -0,0 +1,8 @@
1
+ #!/usr/bin/env bash
2
+ set -euo pipefail
3
+ IFS=$'\n\t'
4
+ set -vx
5
+
6
+ bundle install
7
+
8
+ # Do any other automated setup that you need to do here
@@ -0,0 +1,109 @@
1
+ module AccessPolicy
2
+ require 'jsonpath'
3
+ def authorize_access(user_role)
4
+ user_role = 'default' if user_role.nil?
5
+ request_url = request.path
6
+ http_method = request.method_symbol.downcase.to_s
7
+ eligible_rules = get_rules(user_role,request_url)
8
+ eligible_inherited_rules = get_inherited_rules(user_role,request_url) #array of arrays
9
+ matched_rule = get_matched_rule(eligible_rules,http_method)
10
+ if matched_rule.length.zero?
11
+ eligible_inherited_rules.each do |rules_arr|
12
+ matched_rule = get_matched_rule(rules_arr,http_method)
13
+ break if !matched_rule.length.zero?
14
+ end
15
+ end
16
+
17
+ #decison maker
18
+ action_type = ''
19
+ action_type = policy_data()[user_role]['default-action'] if matched_rule.length.zero?
20
+ action_type = matched_rule.first['action'] if !matched_rule.length.zero?
21
+
22
+ if( action_type =='deny')
23
+ res_json = generate_message_response_json('Access to the requested resource is not allowed')
24
+ render json: res_json, status: 403
25
+ end
26
+ end
27
+ def get_rules(parent_key,request_url)
28
+ policy_master = policy_data()
29
+ eligible_rules = []
30
+ policy_master[parent_key]["rules"].each do |rule|
31
+ pattern ='absolute' #default
32
+ pattern = rule['url']['pattern'] if rule['url'].key?('pattern')
33
+ eligible_rules << rule if pattern == 'absolute' && request_url == rule['url']['value']
34
+ eligible_rules << rule if pattern == 'regex' && matched_url?(request_url,rule['url']['value'])
35
+ end
36
+ return eligible_rules
37
+ end
38
+
39
+ def policy_data()
40
+ return Rails.configuration.AccessPolicyMaster
41
+ end
42
+
43
+ def get_inherited_rules(parent_key,request_url)
44
+ inherited_roles_arr =[]
45
+ inherited_rules_arr =[]
46
+ policy_master = policy_data()
47
+ inherited_role = policy_master[parent_key]["inherits"]
48
+ if !(inherited_role.nil?)
49
+ while(!inherited_role.nil?) do
50
+ inherited_roles_arr << inherited_role
51
+ inherited_rules_arr << get_rules(inherited_role,request_url)
52
+ inherited_role = policy_master[inherited_role]["inherits"]
53
+ end
54
+ end
55
+ return inherited_rules_arr
56
+ end
57
+
58
+ def matched_url?(url,regex_str)
59
+ !!(url =~ Regexp.new(regex_str ))
60
+ end
61
+
62
+ def get_matched_rule(eligible_rules,http_method)
63
+ matched_rules =[]
64
+ prioriy_arr =[]
65
+ eligible_rules.each do |rule|
66
+ match_found= true
67
+ methods_present = rule.key?('methods')
68
+ params_present = rule.key?('params')
69
+ if(methods_present)
70
+ match_found = false if !(rule['methods'].map(&:downcase).include?(http_method.downcase))
71
+ end
72
+ if(params_present)
73
+ eligible_http_params = rule['params'].select{|x| x['method'].downcase == http_method.downcase} #array
74
+
75
+ if !eligible_http_params.length.zero?
76
+ eligible_http_param = eligible_http_params.first
77
+ param_location ='url' #default
78
+ param_location = eligible_http_param['param-location'] if eligible_http_param.key?('param-location')
79
+ param_path = eligible_http_param['param-path'] #string
80
+ permitted_values = [] #array
81
+ permitted_values = eligible_http_param['values'] if eligible_http_param.key?('values')
82
+ incoming_params_val=nil
83
+ if(param_location =='url' ||param_location =='body' )
84
+ incoming_params_val = params[param_path.to_sym]
85
+ elsif
86
+ raw_post = JSON.parse(request.raw_post)
87
+ incoming_params_val = JsonPath.on(raw_post, param_path).first
88
+ end
89
+ match_found = false if !(permitted_values.include?(incoming_params_val))
90
+ end
91
+ end
92
+
93
+ if match_found
94
+ matched_rules<< rule
95
+ prioriy_arr<< rule['priority']
96
+ end
97
+ end #eligible rules end
98
+ if !(matched_rules.length.zero?)
99
+ max_priority = prioriy_arr.map(&:to_i).max
100
+ # select only highest priority rule
101
+ matched_rules = matched_rules.select{|x| x['priority'] == max_priority}
102
+
103
+ end
104
+ return matched_rules
105
+ end
106
+
107
+
108
+ end
109
+
@@ -0,0 +1,6 @@
1
+ require "user_access_manager/version"
2
+
3
+ module UserAccessManager
4
+ class Error < StandardError; end
5
+ # Your code goes here...
6
+ end
@@ -0,0 +1,3 @@
1
+ module UserAccessManager
2
+ VERSION = "0.1.0"
3
+ end
@@ -0,0 +1,24 @@
1
+ require_relative 'lib/user_access_manager/version'
2
+
3
+ Gem::Specification.new do |spec|
4
+ spec.name = "user_access_manager"
5
+ spec.version = UserAccessManager::VERSION
6
+ spec.authors = ["MijanurR"]
7
+ spec.email = ["sk.mijanur.rahaman@mettletech.in"]
8
+
9
+ spec.summary = %q{Manage resource based on their roles}
10
+ spec.homepage = "https://github.com/MijanurR/user_access_manager"
11
+ spec.license = "MIT"
12
+ spec.required_ruby_version = Gem::Requirement.new(">= 2.3.0")
13
+
14
+
15
+ # Specify which files should be added to the gem when it is released.
16
+ # The `git ls-files -z` loads the files in the RubyGem that have been added into git.
17
+ spec.files = Dir.chdir(File.expand_path('..', __FILE__)) do
18
+ `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
19
+ end
20
+ spec.bindir = "exe"
21
+ spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
22
+ spec.require_paths = ["lib"]
23
+ spec.add_development_dependency 'jsonpath', '~> 1.0', '>= 1.0.6'
24
+ end
metadata ADDED
@@ -0,0 +1,78 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: user_access_manager
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - MijanurR
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2020-12-14 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: jsonpath
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '1.0'
20
+ - - ">="
21
+ - !ruby/object:Gem::Version
22
+ version: 1.0.6
23
+ type: :development
24
+ prerelease: false
25
+ version_requirements: !ruby/object:Gem::Requirement
26
+ requirements:
27
+ - - "~>"
28
+ - !ruby/object:Gem::Version
29
+ version: '1.0'
30
+ - - ">="
31
+ - !ruby/object:Gem::Version
32
+ version: 1.0.6
33
+ description:
34
+ email:
35
+ - sk.mijanur.rahaman@mettletech.in
36
+ executables: []
37
+ extensions: []
38
+ extra_rdoc_files: []
39
+ files:
40
+ - ".gitignore"
41
+ - ".rspec"
42
+ - ".travis.yml"
43
+ - CODE_OF_CONDUCT.md
44
+ - Gemfile
45
+ - LICENSE.txt
46
+ - README.md
47
+ - Rakefile
48
+ - bin/console
49
+ - bin/setup
50
+ - lib/access_policy.rb
51
+ - lib/user_access_manager.rb
52
+ - lib/user_access_manager/version.rb
53
+ - user_access_manager.gemspec
54
+ homepage: https://github.com/MijanurR/user_access_manager
55
+ licenses:
56
+ - MIT
57
+ metadata: {}
58
+ post_install_message:
59
+ rdoc_options: []
60
+ require_paths:
61
+ - lib
62
+ required_ruby_version: !ruby/object:Gem::Requirement
63
+ requirements:
64
+ - - ">="
65
+ - !ruby/object:Gem::Version
66
+ version: 2.3.0
67
+ required_rubygems_version: !ruby/object:Gem::Requirement
68
+ requirements:
69
+ - - ">="
70
+ - !ruby/object:Gem::Version
71
+ version: '0'
72
+ requirements: []
73
+ rubyforge_project:
74
+ rubygems_version: 2.6.11
75
+ signing_key:
76
+ specification_version: 4
77
+ summary: Manage resource based on their roles
78
+ test_files: []