thelazyfox-role-authz 0.0.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.
data/LICENSE ADDED
@@ -0,0 +1,20 @@
1
+ Copyright (c) 2009 Jorge Villatoro
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining
4
+ a copy of this software and associated documentation files (the
5
+ "Software"), to deal in the Software without restriction, including
6
+ without limitation the rights to use, copy, modify, merge, publish,
7
+ distribute, sublicense, and/or sell copies of the Software, and to
8
+ permit persons to whom the Software is furnished to do so, subject to
9
+ the following conditions:
10
+
11
+ The above copyright notice and this permission notice shall be
12
+ included in all copies or substantial portions of the Software.
13
+
14
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
17
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
18
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
19
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
20
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/README ADDED
@@ -0,0 +1,4 @@
1
+ role-authz
2
+ ==========
3
+
4
+ A plugin for the Merb framework that provides ...
@@ -0,0 +1,51 @@
1
+ require 'rubygems'
2
+ require 'rake/gempackagetask'
3
+
4
+ require 'merb-core'
5
+ require 'merb-core/tasks/merb'
6
+
7
+ GEM_NAME = "role-authz"
8
+ GEM_VERSION = "0.0.1"
9
+ AUTHOR = "Jorge Villatoro"
10
+ EMAIL = "programmerjorge@gmail.com"
11
+ HOMEPAGE = ""
12
+ SUMMARY = "Merb plugin that provides a very simple role-based authorization system"
13
+
14
+ spec = Gem::Specification.new do |s|
15
+ s.rubyforge_project = 'merb'
16
+ s.name = GEM_NAME
17
+ s.version = GEM_VERSION
18
+ s.platform = Gem::Platform::RUBY
19
+ s.has_rdoc = true
20
+ s.extra_rdoc_files = ["README", "LICENSE", 'TODO']
21
+ s.summary = SUMMARY
22
+ s.description = s.summary
23
+ s.author = AUTHOR
24
+ s.email = EMAIL
25
+ s.homepage = HOMEPAGE
26
+ s.add_dependency('merb', '>= 1.0.9')
27
+ s.require_path = 'lib'
28
+ s.files = %w(LICENSE README Rakefile TODO) + Dir.glob("{lib,spec}/**/*")
29
+
30
+ end
31
+
32
+ Rake::GemPackageTask.new(spec) do |pkg|
33
+ pkg.gem_spec = spec
34
+ end
35
+
36
+ desc "install the plugin as a gem"
37
+ task :install do
38
+ Merb::RakeHelper.install(GEM_NAME, :version => GEM_VERSION)
39
+ end
40
+
41
+ desc "Uninstall the gem"
42
+ task :uninstall do
43
+ Merb::RakeHelper.uninstall(GEM_NAME, :version => GEM_VERSION)
44
+ end
45
+
46
+ desc "Create a gemspec file"
47
+ task :gemspec do
48
+ File.open("#{GEM_NAME}.gemspec", "w") do |file|
49
+ file.puts spec.to_ruby
50
+ end
51
+ end
data/TODO ADDED
@@ -0,0 +1,5 @@
1
+ TODO:
2
+ Fix LICENSE with your name
3
+ Fix Rakefile with your name and contact info
4
+ Add your code to lib/role-authz.rb
5
+ Add your Merb rake tasks to lib/role-authz/merbtasks.rb
@@ -0,0 +1,17 @@
1
+ # make sure we're running inside Merb
2
+ if defined?(Merb::Plugins)
3
+
4
+ require 'merb-auth-core'
5
+ path = File.dirname(__FILE__)
6
+ Dir[path / "role-authz" / "authorization" / "**/*.rb"].each do |f|
7
+ require f
8
+ end
9
+
10
+ Merb::BootLoader.before_app_loads do
11
+ # require code that must be loaded before the application
12
+ end
13
+
14
+ Merb::BootLoader.after_app_loads do
15
+ # code that can be required after the application loads
16
+ end
17
+ end
@@ -0,0 +1,17 @@
1
+ module Authorization
2
+ @roles = {}
3
+
4
+ def self.roles_for(operator, target)
5
+ list = []
6
+ @roles.each do |name, proc|
7
+ if proc.call(operator, target)
8
+ list += [name]
9
+ end
10
+ end
11
+ list
12
+ end
13
+
14
+ def self.add_role(name, &block)
15
+ @roles[name] = block
16
+ end
17
+ end
@@ -0,0 +1,34 @@
1
+ module Authorization
2
+ class OpenForRoleStatement < Exception; end
3
+ class NoCurrentForRoleStatement < Exception; end
4
+
5
+ class ControllerHelper
6
+ def initialize
7
+ @working_roles = []
8
+ @permissions_list = {}
9
+ end
10
+
11
+ def for_roles(*the_roles)
12
+ raise OpenForRoleStatement unless @working_roles.empty?
13
+ @working_roles += the_roles
14
+ self
15
+ end
16
+ alias_method :for_role, :for_roles
17
+
18
+ def allow(*the_actions)
19
+ raise NoCurrentForRoleStatement unless !@working_roles.empty?
20
+ @working_roles.each do |current_role|
21
+ if !@permissions_list.include?(current_role)
22
+ @permissions_list[current_role] = []
23
+ end
24
+ @permissions_list[current_role] += the_actions
25
+ end
26
+ @working_roles.clear
27
+ self
28
+ end
29
+
30
+ def actions_for(role)
31
+ @permissions_list[role] || []
32
+ end
33
+ end
34
+ end
@@ -0,0 +1,41 @@
1
+ class Merb::Controller
2
+ class Unauthorized < Merb::Controller::Forbidden; end
3
+ class_inheritable_accessor :_authorization
4
+ class_inheritable_accessor :_authorization_target
5
+
6
+ def self.role(name, &block)
7
+ Authorization.add_role(name, &block)
8
+ end
9
+
10
+ def self.authorize(klass, &block)
11
+ klass._authorization_proxy = self
12
+ self._authorization_target = klass
13
+ self._authorization ||= Authorization::ControllerHelper.new
14
+ self._authorization.instance_eval(&block) if block_given?
15
+ before :ensure_authorized
16
+ self._authorization
17
+ end
18
+
19
+ def authorization_target
20
+ if _authorization_target.respond_to?(:get)
21
+ _authorization_target.get(params[:id])
22
+ else
23
+ nil
24
+ end
25
+ end
26
+
27
+ def ensure_authorized
28
+ operator = nil
29
+ operator = session.user if session.authenticated?
30
+ roles = Authorization.roles_for(operator, authorization_target)
31
+ roles.each do |role|
32
+ actions = self.class._authorization.actions_for(role)
33
+ return true if actions.include?(params[:action].to_sym) || actions.include?(:all)
34
+ end
35
+ if session.authenticated?
36
+ raise Unauthorized
37
+ else
38
+ raise Unauthenticated
39
+ end
40
+ end
41
+ end
@@ -0,0 +1,8 @@
1
+ class Object
2
+ class_inheritable_accessor :_authorization_proxy
3
+
4
+ def self.authorizable!
5
+ include Authorization::OperatorMixin
6
+ end
7
+
8
+ end
@@ -0,0 +1,18 @@
1
+ module Authorization::OperatorMixin
2
+
3
+ def authorized?(args = {})
4
+ @roles ||= Authorization.roles_for(self, args[:target])
5
+ if args[:action].nil?
6
+ @roles.include?(args[:role])
7
+ else
8
+ target = args[:target]._authorization_proxy unless args[:target]._authorization_proxy.nil?
9
+
10
+ @roles.each do |role|
11
+ actions = target._authorization.actions_for(role)
12
+ return true if actions.include?(args[:action]) || actions.include?(:all)
13
+ end
14
+ false
15
+ end
16
+ end
17
+
18
+ end
@@ -0,0 +1,7 @@
1
+ require File.dirname(__FILE__) + '/spec_helper'
2
+
3
+ describe "role-authz" do
4
+ it "should do nothing" do
5
+ true.should == true
6
+ end
7
+ end
@@ -0,0 +1 @@
1
+ $:.push File.join(File.dirname(__FILE__), '..', 'lib')
metadata ADDED
@@ -0,0 +1,77 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: thelazyfox-role-authz
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Jorge Villatoro
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+
12
+ date: 2009-02-18 00:00:00 -08:00
13
+ default_executable:
14
+ dependencies:
15
+ - !ruby/object:Gem::Dependency
16
+ name: merb
17
+ type: :runtime
18
+ version_requirement:
19
+ version_requirements: !ruby/object:Gem::Requirement
20
+ requirements:
21
+ - - ">="
22
+ - !ruby/object:Gem::Version
23
+ version: 1.0.9
24
+ version:
25
+ description: Merb plugin that provides a very simple role-based authorization system
26
+ email: programmerjorge@gmail.com
27
+ executables: []
28
+
29
+ extensions: []
30
+
31
+ extra_rdoc_files:
32
+ - README
33
+ - LICENSE
34
+ - TODO
35
+ files:
36
+ - LICENSE
37
+ - README
38
+ - Rakefile
39
+ - TODO
40
+ - lib/role-authz
41
+ - lib/role-authz/authorization
42
+ - lib/role-authz/authorization/authorization.rb
43
+ - lib/role-authz/authorization/controller_helper.rb
44
+ - lib/role-authz/authorization/controller_mixin.rb
45
+ - lib/role-authz/authorization/object_mixin.rb
46
+ - lib/role-authz/authorization/operator_mixin.rb
47
+ - lib/role-authz.rb
48
+ - spec/role-authz_spec.rb
49
+ - spec/spec_helper.rb
50
+ has_rdoc: true
51
+ homepage: ""
52
+ post_install_message:
53
+ rdoc_options: []
54
+
55
+ require_paths:
56
+ - lib
57
+ required_ruby_version: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - ">="
60
+ - !ruby/object:Gem::Version
61
+ version: "0"
62
+ version:
63
+ required_rubygems_version: !ruby/object:Gem::Requirement
64
+ requirements:
65
+ - - ">="
66
+ - !ruby/object:Gem::Version
67
+ version: "0"
68
+ version:
69
+ requirements: []
70
+
71
+ rubyforge_project: merb
72
+ rubygems_version: 1.2.0
73
+ signing_key:
74
+ specification_version: 2
75
+ summary: Merb plugin that provides a very simple role-based authorization system
76
+ test_files: []
77
+